/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
H A D | x509_vfy.h | 631 const unsigned char* bytes, 724 const unsigned char *bytes, int len,
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/ |
H A D | x509_vfy.h | 631 const unsigned char* bytes, 724 const unsigned char *bytes, int len,
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ |
H A D | bio.h | 95 # define BIO_CTRL_WPENDING 13/* opt - number of bytes still to write */ 718 int BIO_dump(BIO *b, const void *bytes, int len); 719 int BIO_dump_indent(BIO *b, const void *bytes, int len, int indent);
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/ |
H A D | x509_vfy.h | 631 const unsigned char* bytes, 724 const unsigned char *bytes, int len,
|
/third_party/python/Lib/ |
H A D | ssl.py | 545 b = bytes(protocol, 'ascii') 569 b = bytes(protocol, 'ascii') 674 Raw, decrypted message content as bytes 913 """Read up to 'len' bytes from the SSL object and return them. 916 bytes read. 925 """Write 'data' to the SSL object and return the number of bytes 974 """Return the number of bytes that can be read immediately.""" 987 if the requested `cb_type` is not supported. Return bytes of the data 1155 """Read up to LEN bytes and return them. 1177 number of bytes o [all...] |
H A D | shutil.py | 714 # While the unsafe rmtree works fine on bytes, the fd based does not. 715 if isinstance(path, bytes): 1330 _ntuple_diskusage.total.__doc__ = 'Total space in bytes' 1331 _ntuple_diskusage.used.__doc__ = 'Used space in bytes' 1332 _ntuple_diskusage.free.__doc__ = 'Free space in bytes' 1338 'free', which are the amount of total, used and free space, in bytes. 1355 'free', which are the amount of total, used and free space, in bytes. 1466 use_bytes = isinstance(cmd, bytes)
|
/third_party/python/Lib/http/ |
H A D | client.py | 227 email Parser wants to see strings rather than bytes. 228 But a TextIOWrapper around self.rfile would buffer too many bytes 229 from the stream, bytes which we later need to read as bytes. 230 So we read the correct bytes here, as bytes, for email Parser 243 # The bytes from the socket object are iso-8859-1 strings. 251 # specified number of bytes. If it does, it will block until 274 self.chunk_left = _UNKNOWN # bytes left to read in current chunk 275 self.length = _UNKNOWN # number of bytes lef [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 147 if not isinstance(authkey, bytes): 149 "Authkey {0!r} is type {1!s}, not bytes".format( 1282 # The address of Linux abstract namespaces can be bytes 1283 if isinstance(address, bytes): 1361 bytes, to be tracked by the manager."""
|
/third_party/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 551 # stack pointer upon entry to a subroutine is 8 bytes off from CFA. 1214 if ((ref($asm) eq 'CODE') && scalar(my @bytes=&$asm($line))) { 1215 print $gas?".byte\t":"DB\t",join(',',@bytes),"\n"; 1301 # 128 bytes above %rsp constitute a "red zone" which is not touched 1305 # In Win64 terms N*8 bytes on top of stack is argument transfer area, 1309 # as that 32 bytes from 8(%rsp) can always be used as temporal
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | TracePerfTest.cpp | 1650 const GLubyte *bytes = glGetString(GL_SERIALIZED_CONTEXT_STRING_ANGLE); in validateSerializedState() local 1651 const char *actualReplayedSerializedState = reinterpret_cast<const char *>(bytes); in validateSerializedState()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | webpinfo.c | 176 webp_data->bytes = data; in ReadFileToWebPData() 185 mem->buf_ = webp_data->bytes; in InitMemBuffer()
|
/third_party/skia/src/svg/ |
H A D | SkSVGDevice.cpp | 467 bool is_png(const void* bytes, size_t length) { 469 return length >= sizeof(kPngSig) && !memcmp(bytes, kPngSig, sizeof(kPngSig)); 473 // Returns data uri from bytes.
|
/third_party/python/Lib/test/ |
H A D | test_ntpath.py | 47 if isinstance(path, (bytes, str, os.PathLike)): 61 # then with bytes 867 # unicode and bytes (UTF-8) paths 891 self.assertIsInstance(b_final_path, bytes)
|
H A D | test_exception_group.py | 488 raise TypeError(bytes) 514 [[TypeError(bytes)], ValueError(1)])
|
H A D | test_plistlib.py | 270 ('too large bytes size', 277 ('extremally large bytes size (32-bit)', 284 ('extremally large bytes size (64-bit)', 291 ('integer overflow in bytes size', 498 self.assertIsInstance(pl2, bytes) 957 self.decode(bytes([token]) + b'\x00'*16)
|
/third_party/python/Modules/ |
H A D | overlapped.c | 98 // A (number of bytes read, (host, port)) tuple 285 bytes as NumberOfBytes: DWORD 711 DWORD bytes; in Overlapped_dealloc() local 724 &bytes, wait); in Overlapped_dealloc() 958 // The result is a two item tuple: (number of bytes read, address) in _overlapped_Overlapped_getresult_impl() 965 // first item: number of bytes read in _overlapped_Overlapped_getresult_impl()
|
/third_party/python/Lib/unittest/ |
H A D | case.py | 1341 if isinstance(expected_regex, (str, bytes)): 1353 if isinstance(unexpected_regex, (str, bytes)):
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
H A D | hash.h | 90 // Appends the given range of bytes to the sequence to be hashed, which may 192 // guaranteed to have the same bytes in their underlying storage. In other 296 // Long double has the property that it might have extra unused bytes in it. 596 // for vector<bool> (see std::vector above): It does not expose the raw bytes, 605 // hashing the entire range of bytes. 609 const auto* bytes = reinterpret_cast<const unsigned char*>(data); in hash_range_or_bytes() local 610 return H::combine_contiguous(std::move(hash_state), bytes, sizeof(T) * size); in hash_range_or_bytes() 742 // Fundamental base case for hash recursion: mixes the given range of bytes 785 // mix the bytes into the state. 807 // Reads 9 to 16 bytes fro [all...] |
/third_party/rust/crates/nom/src/number/ |
H A D | streaming.rs | 4 use crate::bytes::streaming::tag; 44 /// Recognizes a big endian unsigned 2 bytes integer. 110 /// Recognizes a big endian unsigned 4 bytes integer. 143 /// Recognizes a big endian unsigned 8 bytes integer. 176 /// Recognizes a big endian unsigned 16 bytes integer. 228 /// Recognizes a big endian signed 2 bytes integer. 248 /// Recognizes a big endian signed 3 bytes integer. 277 /// Recognizes a big endian signed 4 bytes integer. 297 /// Recognizes a big endian signed 8 bytes integer. 318 /// Recognizes a big endian signed 16 bytes intege [all...] |
H A D | complete.rs | 4 use crate::bytes::complete::tag; 46 /// Recognizes a big endian unsigned 2 bytes integer. 112 /// Recognizes a big endian unsigned 4 bytes integer. 145 /// Recognizes a big endian unsigned 8 bytes integer. 178 /// Recognizes a big endian unsigned 16 bytes integer. 234 /// Recognizes a big endian signed 2 bytes integer. 257 /// Recognizes a big endian signed 3 bytes integer. 289 /// Recognizes a big endian signed 4 bytes integer. 312 /// Recognizes a big endian signed 8 bytes integer. 335 /// Recognizes a big endian signed 16 bytes intege [all...] |
/third_party/elfutils/src/ |
H A D | readelf.c | 1144 ehdr->e_phoff, _("(bytes into file)")); in print_ehdr() 1147 ehdr->e_shoff, _("(bytes into file)")); in print_ehdr() 1153 ehdr->e_ehsize, _("(bytes)")); in print_ehdr() 1156 ehdr->e_phentsize, _("(bytes)")); in print_ehdr() 1173 ehdr->e_shentsize, _("(bytes)")); in print_ehdr() 1956 printf (_("%" PRId64 " (bytes)\n"), dyn->d_un.d_val); in handle_dynamic() 3524 Bitmask Size: %zu bytes %" PRIuFAST32 "%% bits set 2nd hash shift: %u\n"), in handle_gnu_hash() 3683 " bytes at offset %#0" PRIx64 ":\n"), in print_attributes() 4401 print_bytes (size_t n, const unsigned char *bytes) in print_bytes() argument 4405 printf ("%02x", *bytes in print_bytes() 7165 die_type_sign_bytes(Dwarf_Die *die, bool *is_signed, int *bytes) die_type_sign_bytes() argument 7626 int bytes = 0; attr_callback() local 7809 int bytes; attr_callback() local 12259 const uint8_t *bytes = desc; handle_core_register() local [all...] |
/third_party/ffmpeg/libswscale/x86/ |
H A D | input.asm | 800 ; movd m0, [srcRq + xq + 0]; overeads by 2 bytes 801 ; punpcklbw m0, m9 ; interleave bytes with zero 1059 punpcklbw m0, m9 ; interleave bytes with zero
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/ |
H A D | TimeZoneTest.java | 1175 byte[] bytes = baos.toByteArray(); in TestSimpleTimeZoneSerialization() 1176 logln("id: " + stz.getID() + " length: " + bytes.length); in TestSimpleTimeZoneSerialization() 1178 ByteArrayInputStream bais = new ByteArrayInputStream(bytes); in TestSimpleTimeZoneSerialization()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateFormatRegressionTest.java | 469 byte[] bytes; in Test4100302() 475 bytes = baos.toByteArray(); in Test4100302() 476 ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(bytes)); in Test4100302()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
H A D | TimeZoneTest.java | 1147 byte[] bytes = baos.toByteArray(); in TestSimpleTimeZoneSerialization() 1148 logln("id: " + stz.getID() + " length: " + bytes.length); in TestSimpleTimeZoneSerialization() 1150 ByteArrayInputStream bais = new ByteArrayInputStream(bytes); in TestSimpleTimeZoneSerialization()
|