Home
last modified time | relevance | path

Searched defs:pp (Results 1 – 25 of 1167) sorted by relevance

12345678910>>...47

/aosp_15_r20/prebuilts/go/linux-x86/src/fmt/
Dprint.go120 type pp struct { struct
121 buf buffer
124 arg any
127 value reflect.Value
130 fmt fmt
133 reordered bool
135 goodArgNum bool
137 panicking bool
139 erroring bool
141 wrapErrs bool
[all …]
/aosp_15_r20/external/threetenbp/src/test/java/org/threeten/bp/format/
H A DTestTextParser.java66 public void test_parse_error(TextPrinterParser pp, String text, int pos, Class<?> expected) { in test_parse_error()
78 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_parse_midStr() local
85 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.SHORT, PROVIDER); in test_parse_remainderIgnored() local
93 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_parse_noMatch1() local
101 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_parse_noMatch2() local
109 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_parse_noMatch_atEnd() local
161 TextPrinterParser pp = new TextPrinterParser(field, style, PROVIDER); in test_parseText() local
169 TextPrinterParser pp = new TextPrinterParser(field, style, PROVIDER); in test_parseNumber() local
179 TextPrinterParser pp = new TextPrinterParser(field, style, PROVIDER); in test_parse_strict_caseSensitive_parseUpper() local
189 TextPrinterParser pp = new TextPrinterParser(field, style, PROVIDER); in test_parse_strict_caseInsensitive_parseUpper() local
[all …]
H A DTestZoneOffsetParser.java60 … public void test_parse_error(OffsetIdPrinterParser pp, String text, int pos, Class<?> expected) { in test_parse_error()
72 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("Z", "+HH:MM:ss"); in test_parse_exactMatch_UTC() local
79 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("Z", "+HH:MM:ss"); in test_parse_startStringMatch_UTC() local
86 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("Z", "+HH:MM:ss"); in test_parse_midStringMatch_UTC() local
93 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("Z", "+HH:MM:ss"); in test_parse_endStringMatch_UTC() local
101 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("", "+HH:MM:ss"); in test_parse_exactMatch_UTC_EmptyUTC() local
108 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("", "+HH:MM:ss"); in test_parse_startStringMatch_UTC_EmptyUTC() local
115 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("", "+HH:MM:ss"); in test_parse_midStringMatch_UTC_EmptyUTC() local
122 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("", "+HH:MM:ss"); in test_parse_endStringMatch_UTC_EmptyUTC() local
206 OffsetIdPrinterParser pp = new OffsetIdPrinterParser("Z", pattern); in test_parse_exactMatch() local
[all …]
H A DTestZoneIdParser.java67 public void test_parse_error(ZoneIdPrinterParser pp, String text, int pos, Class<?> expected) { in test_parse_error()
78 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_exactMatch_Denver() local
85 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_startStringMatch_Denver() local
92 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_midStringMatch_Denver() local
99 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_endStringMatch_Denver() local
106 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_partialMatch() local
126 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_exactMatch() local
134 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_lowerCase() local
143 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_endStringMatch_utc() local
150 ZoneIdPrinterParser pp = new ZoneIdPrinterParser(TemporalQueries.zoneId(), null); in test_parse_endStringMatch_utc_plus1() local
[all …]
H A DTestFractionPrinterParser.java58 FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, 0, 9, true); in test_print_emptyCalendrical() local
64 FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, 0, 9, true); in test_print_append() local
150 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, true); in test_print_nanos() local
161 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, false); in test_print_nanos_noDecimalPoint() local
196 … FractionPrinterParser pp = new FractionPrinterParser(SECOND_OF_MINUTE, minWidth, maxWidth, true); in test_print_seconds() local
207 … FractionPrinterParser pp = new FractionPrinterParser(SECOND_OF_MINUTE, minWidth, maxWidth, false); in test_print_seconds_noDecimalPoint() local
220 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, true); in test_reverseParse() local
229 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, false); in test_reverseParse_noDecimalPoint() local
238 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, true); in test_reverseParse_followedByNonDigit() local
256 … FractionPrinterParser pp = new FractionPrinterParser(NANO_OF_SECOND, minWidth, maxWidth, true); in test_reverseParse_preceededByNonDigit() local
[all …]
H A DTestSettingsParser.java47 SettingsParser pp = SettingsParser.SENSITIVE; in test_print_sensitive() local
54 SettingsParser pp = SettingsParser.STRICT; in test_print_strict() local
61 SettingsParser pp = SettingsParser.SENSITIVE; in test_print_nulls() local
67 SettingsParser pp = SettingsParser.SENSITIVE; in test_parse_changeStyle_sensitive() local
74 SettingsParser pp = SettingsParser.INSENSITIVE; in test_parse_changeStyle_insensitive() local
81 SettingsParser pp = SettingsParser.STRICT; in test_parse_changeStyle_strict() local
88 SettingsParser pp = SettingsParser.LENIENT; in test_parse_changeStyle_lenient() local
96 SettingsParser pp = SettingsParser.SENSITIVE; in test_toString_sensitive() local
101 SettingsParser pp = SettingsParser.INSENSITIVE; in test_toString_insensitive() local
106 SettingsParser pp = SettingsParser.STRICT; in test_toString_strict() local
[all …]
H A DTestPadPrinterDecorator.java51 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 3,… in test_print_emptyCalendrical() local
58 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 3,… in test_print_fullDateTime() local
65 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 3,… in test_print_append() local
72 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 1,… in test_print_noPadRequiredSingle() local
78 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 5,… in test_print_padRequiredSingle() local
84 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new StringLiteralPrinterParser("WXYZ"… in test_print_noPadRequiredMultiple() local
90 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new StringLiteralPrinterParser("WXYZ"… in test_print_padRequiredMultiple() local
97 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new StringLiteralPrinterParser("WXYZ"… in test_print_overPad() local
104 PadPrinterParserDecorator pp = new PadPrinterParserDecorator(wrapped, 5, ' '); in test_toString1() local
110 PadPrinterParserDecorator pp = new PadPrinterParserDecorator(wrapped, 5, '-'); in test_toString2() local
H A DTestTextPrinter.java60 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_print_emptyCalendrical() local
66 TextPrinterParser pp = new TextPrinterParser(DAY_OF_WEEK, TextStyle.FULL, PROVIDER); in test_print_append() local
119 TextPrinterParser pp = new TextPrinterParser(field, style, PROVIDER); in test_print() local
128 TextPrinterParser pp = new TextPrinterParser(MONTH_OF_YEAR, TextStyle.FULL, PROVIDER); in test_print_french_long() local
136 TextPrinterParser pp = new TextPrinterParser(MONTH_OF_YEAR, TextStyle.SHORT, PROVIDER); in test_print_french_short() local
143 TextPrinterParser pp = new TextPrinterParser(MONTH_OF_YEAR, TextStyle.FULL, PROVIDER); in test_toString1() local
148 TextPrinterParser pp = new TextPrinterParser(MONTH_OF_YEAR, TextStyle.SHORT, PROVIDER); in test_toString2() local
H A DTestPadParserDecorator.java52 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 3,… in test_parse_negativePosition() local
58 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new CharLiteralPrinterParser('Z'), 3,… in test_parse_offEndPosition() local
64 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new NumberPrinterParser(MONTH_OF_YEAR… in test_parse() local
71 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new NumberPrinterParser(MONTH_OF_YEAR… in test_parse_noReadBeyond() local
78 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new NumberPrinterParser(MONTH_OF_YEAR… in test_parse_textLessThanPadWidth() local
84 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new NumberPrinterParser(MONTH_OF_YEAR… in test_parse_decoratedErrorPassedBack() local
90 …PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new NumberPrinterParser(MONTH_OF_YEAR… in test_parse_decoratedDidNotParseToPadWidth() local
/aosp_15_r20/packages/modules/Bluetooth/system/stack/hcic/
Dhcicmds.cc477 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_disconnect() local
492 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_add_SCO_conn() local
508 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_create_conn_cancel() local
523 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_reject_conn() local
539 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_link_key_req_reply() local
555 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_link_key_neg_reply() local
571 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_pin_code_req_reply() local
596 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_pin_code_neg_reply() local
611 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_change_conn_type() local
627 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_auth_request() local
[all …]
Dhciblecmds.cc118 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_write_adv_params() local
139 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_read_adv_chnl_tx_power() local
152 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_set_adv_data() local
176 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_set_adv_enable() local
191 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_set_scan_params() local
210 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_set_scan_enable() local
226 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_read_remote_feat() local
254 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_start_enc() local
272 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_ltk_req_reply() local
288 uint8_t* pp = (uint8_t*)(p + 1); in btsnd_hcic_ble_ltk_req_neg_reply() local
[all …]
/aosp_15_r20/system/nfc/src/nfc/nci/
H A Dnci_hmsgs.cc49 uint8_t* pp; in nci_snd_tlv_parameter_generic_cmd() local
97 uint8_t* pp; in nci_snd_core_reset() local
128 uint8_t* pp; in nci_snd_core_init() local
162 uint8_t* pp; in nci_snd_core_get_config() local
194 uint8_t* pp; in nci_snd_core_set_config() local
243 uint8_t* pp; in nci_snd_core_conn_create() local
280 uint8_t* pp; in nci_snd_core_conn_close() local
314 uint8_t* pp; in nci_snd_nfcee_discover() local
348 uint8_t* pp; in nci_snd_nfcee_mode_set() local
382 uint8_t* pp; in nci_snd_iso_dep_nak_presence_check_cmd() local
[all …]
H A Dnci_hrcv.cc51 uint8_t *pp, len, op_code; in nci_proc_core_rsp() local
110 uint8_t *pp, len, op_code; in nci_proc_core_ntf() local
165 uint8_t *pp, op_code; in nci_proc_rf_management_rsp() local
238 uint8_t *pp, len, op_code; in nci_proc_rf_management_ntf() local
327 uint8_t *pp, len, op_code; in nci_proc_ee_management_rsp() local
405 uint8_t *pp, len, op_code; in nci_proc_ee_management_ntf() local
525 uint8_t *pp, op_code; in nci_proc_prop_rsp() local
580 uint8_t *pp, op_code; in nci_proc_prop_ntf() local
/aosp_15_r20/external/harfbuzz_ng/src/
H A Dtest-number.cc35 const char *pp = str; in main() local
48 const char *pp = str; in main() local
61 const char *pp = str; in main() local
74 const char *pp = str; in main() local
88 const char *pp = str; in main() local
101 const char *pp = str; in main() local
114 const char *pp = str; in main() local
127 const char *pp = str; in main() local
140 const char *pp = str; in main() local
152 const char *pp = str; in main() local
[all …]
H A Dhb-common.cc722 parse_space (const char **pp, const char *end) in parse_space()
730 parse_char (const char **pp, const char *end, char c) in parse_char()
742 parse_uint (const char **pp, const char *end, unsigned int *pv) in parse_uint()
754 parse_uint32 (const char **pp, const char *end, uint32_t *pv) in parse_uint32()
766 parse_bool (const char **pp, const char *end, uint32_t *pv) in parse_bool()
793 parse_feature_value_prefix (const char **pp, const char *end, hb_feature_t *feature) in parse_feature_value_prefix()
806 parse_tag (const char **pp, const char *end, hb_tag_t *tag) in parse_tag()
842 parse_feature_indices (const char **pp, const char *end, hb_feature_t *feature) in parse_feature_indices()
867 parse_feature_value_postfix (const char **pp, const char *end, hb_feature_t *feature) in parse_feature_value_postfix()
879 parse_one_feature (const char **pp, const char *end, hb_feature_t *feature) in parse_one_feature()
[all …]
/aosp_15_r20/external/angle/src/compiler/translator/msl/
H A DProgramPrelude.cpp2860 putBuiltIn("texelFetch", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2883 putBuiltIn("texelFetchOffset", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2902 putBuiltIn("texture", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2932 putBuiltIn("texture2D", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2946 putBuiltIn("texture2DProj", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2960 putBuiltIn("texture3D", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2972 putBuiltIn("texture3DProj", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2984 putBuiltIn("textureCube", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
2998 putBuiltIn("textureGrad", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
3027 putBuiltIn("textureGradOffset", [](ProgramPrelude &pp, const TFunction &func) { in BuildFuncToEmitter()
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/include/lib/libc/
Dendian.h86 be16dec(const void *pp) in be16dec()
94 be32dec(const void *pp) in be32dec()
102 be64dec(const void *pp) in be64dec()
110 le16dec(const void *pp) in le16dec()
118 le32dec(const void *pp) in le32dec()
126 le64dec(const void *pp) in le64dec()
134 be16enc(void *pp, uint16_t u) in be16enc()
143 be32enc(void *pp, uint32_t u) in be32enc()
154 be64enc(void *pp, uint64_t u) in be64enc()
163 le16enc(void *pp, uint16_t u) in le16enc()
[all …]
/aosp_15_r20/external/arm-trusted-firmware/include/lib/libc/
H A Dendian.h86 be16dec(const void *pp) in be16dec()
94 be32dec(const void *pp) in be32dec()
102 be64dec(const void *pp) in be64dec()
110 le16dec(const void *pp) in le16dec()
118 le32dec(const void *pp) in le32dec()
126 le64dec(const void *pp) in le64dec()
134 be16enc(void *pp, uint16_t u) in be16enc()
143 be32enc(void *pp, uint32_t u) in be32enc()
154 be64enc(void *pp, uint64_t u) in be64enc()
163 le16enc(void *pp, uint16_t u) in le16enc()
[all …]
/aosp_15_r20/external/curl/lib/
H A Dpingpong.c51 struct pingpong *pp, bool disconnecting) in Curl_pp_state_timeout()
84 struct pingpong *pp, bool block, in Curl_pp_statemach()
143 void Curl_pp_init(struct pingpong *pp) in Curl_pp_init()
163 struct pingpong *pp, in Curl_pp_vsendf()
243 CURLcode Curl_pp_sendf(struct Curl_easy *data, struct pingpong *pp, in Curl_pp_sendf()
283 struct pingpong *pp, in Curl_pp_readresp()
389 struct pingpong *pp, curl_socket_t *socks) in Curl_pp_getsock()
404 struct pingpong *pp) in Curl_pp_needs_flush()
411 struct pingpong *pp) in Curl_pp_flushsend()
442 CURLcode Curl_pp_disconnect(struct pingpong *pp) in Curl_pp_disconnect()
[all …]
/aosp_15_r20/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
H A DTestDefaultPrettyPrinter.java15 PrettyPrinter pp = new DefaultPrettyPrinter(); in testSystemLinefeed() local
27 PrettyPrinter pp = new DefaultPrettyPrinter() in testWithLineFeed() local
39 PrettyPrinter pp = new DefaultPrettyPrinter() in testWithIndent() local
51 PrettyPrinter pp = new DefaultPrettyPrinter() in testUnixLinefeed() local
63 PrettyPrinter pp = new DefaultPrettyPrinter() in testWindowsLinefeed() local
75 PrettyPrinter pp = new DefaultPrettyPrinter() in testTabIndent() local
87 DefaultPrettyPrinter pp = new DefaultPrettyPrinter() in testRootSeparator() local
133 private String _printTestData(PrettyPrinter pp, boolean useBytes) throws IOException in _printTestData()
166 DefaultPrettyPrinter pp = new MyPrettyPrinter(); in testInvalidSubClass() local
/aosp_15_r20/external/python/cpython2/Objects/
Ddescrobject.c701 proxy_len(proxyobject *pp) in proxy_len()
707 proxy_getitem(proxyobject *pp, PyObject *key) in proxy_getitem()
719 proxy_contains(proxyobject *pp, PyObject *key) in proxy_contains()
738 proxy_has_key(proxyobject *pp, PyObject *key) in proxy_has_key()
747 proxy_get(proxyobject *pp, PyObject *args) in proxy_get()
757 proxy_keys(proxyobject *pp) in proxy_keys()
763 proxy_values(proxyobject *pp) in proxy_values()
769 proxy_items(proxyobject *pp) in proxy_items()
775 proxy_iterkeys(proxyobject *pp) in proxy_iterkeys()
781 proxy_itervalues(proxyobject *pp) in proxy_itervalues()
[all …]
/aosp_15_r20/external/libpng/contrib/libtests/
H A Dpngvalid.c1011 store_message(png_store *ps, png_const_structp pp, char *buffer, size_t bufsize, in store_message()
1051 store_verbose(png_store *ps, png_const_structp pp, png_const_charp prefix, in store_verbose()
1066 store_log(png_store* ps, png_const_structp pp, png_const_charp message, in store_log()
1100 png_const_structp pp = ppIn; in store_error() local
1116 png_const_structp pp = ppIn; in store_warning() local
1130 store_image_row(const png_store* ps, png_const_structp pp, int nImage, in store_image_row()
1145 store_image_free(png_store *ps, png_const_structp pp) in store_image_free()
1167 store_ensure_image(png_store *ps, png_const_structp pp, int nImages, in store_ensure_image()
1234 store_image_check(const png_store* ps, png_const_structp pp, int iImage) in store_image_check()
1288 png_const_structp pp = ppIn; in store_write() local
[all …]
/aosp_15_r20/external/scrypt/lib/util/
H A Dsysendian.h48 be32dec(const void *pp) in be32dec()
57 be32enc(void *pp, uint32_t x) in be32enc()
68 be64dec(const void *pp) in be64dec()
79 be64enc(void *pp, uint64_t x) in be64enc()
94 le32dec(const void *pp) in le32dec()
103 le32enc(void *pp, uint32_t x) in le32enc()
114 le64dec(const void *pp) in le64dec()
125 le64enc(void *pp, uint64_t x) in le64enc()
/aosp_15_r20/external/coreboot/payloads/libpayload/include/
H A Dendian.h84 static inline uint16_t be16dec(const void *pp) in be16dec()
91 static inline uint32_t be32dec(const void *pp) in be32dec()
99 static inline uint64_t be64dec(const void *pp) in be64dec()
109 static inline uint16_t le16dec(const void *pp) in le16dec()
116 static inline uint32_t le32dec(const void *pp) in le32dec()
124 static inline uint64_t le64dec(const void *pp) in le64dec()
134 static inline void bebitenc(void *pp, uint32_t u, uint8_t b) in bebitenc()
143 static inline void be16enc(void *pp, uint16_t u) in be16enc()
148 static inline void be32enc(void *pp, uint32_t u) in be32enc()
153 static inline void be64enc(void *pp, uint32_t u) in be64enc()
[all …]
/aosp_15_r20/external/lzma/CPP/7zip/Common/
H A DCWrappers.cpp64 static SRes CompressProgress(ICompressProgressPtr pp, UInt64 inSize, UInt64 outSize) throw() in CompressProgress()
80 static SRes MyRead(ISeqInStreamPtr pp, void *data, size_t *size) throw() in MyRead()
92 static size_t MyWrite(ISeqOutStreamPtr pp, const void *data, size_t size) throw() in MyWrite()
125 static SRes InStreamWrap_Read(ISeekInStreamPtr pp, void *data, size_t *size) throw() in InStreamWrap_Read()
134 static SRes InStreamWrap_Seek(ISeekInStreamPtr pp, Int64 *offset, ESzSeek origin) throw() in InStreamWrap_Seek()
200 static Byte Wrap_ReadByte(IByteInPtr pp) throw() in Wrap_ReadByte()
294 static void Wrap_WriteByte(IByteOutPtr pp, Byte b) throw() in Wrap_WriteByte()

12345678910>>...47