/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/modes/ |
H A D | ghashv8-armx.S | 198 bhs .Loop_mod2x_v8 @ there was at least 32 more bytes
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/modes/ |
H A D | ghashv8-armx.S | 198 bhs .Loop_mod2x_v8 @ there was at least 32 more bytes
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha256-c64xplus.pl | 75 || [A0] AND B0,SP,SP ; align stack at 64 bytes
|
/third_party/node/deps/openssl/openssl/crypto/cmp/ |
H A D | cmp_local.h | 751 const unsigned char *bytes, int len);
|
/third_party/python/Lib/ |
H A D | codecs.py | 286 buffered_input must be a bytes object containing bytes that 456 chars indicates the number of decoded code points or bytes to 461 bytes or code points to read for decoding. The decoder 499 # decode bytes (those remaining from the last call included) 514 # keep undecoded bytes until the next call 564 (isinstance(data, bytes) and data.endswith(b"\r")):
|
/third_party/openssl/crypto/cmp/ |
H A D | cmp_local.h | 751 const unsigned char *bytes, int len);
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha256-c64xplus.pl | 75 || [A0] AND B0,SP,SP ; align stack at 64 bytes
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/gradle/wrapper/ |
H A D | gradle-wrapper.jar | ... lang.String)
java.security.MessageDigest messageDigest
byte[] bytes
Exception e
String string
private java.lang.String ... |
/third_party/skia/third_party/externals/oboe/samples/gradle/wrapper/ |
H A D | gradle-wrapper.jar | ... lang.String)
java.security.MessageDigest messageDigest
byte[] bytes
Exception e
String string
private java.lang.String ... |
/third_party/skia/tests/ |
H A D | EncodeTest.cpp | 261 // Each chunk is of the form length (4 bytes), chunk type (tEXt), data, in testPngComments() 262 // checksum (4 bytes). Make sure we find all of them in the encoded in testPngComments() 366 auto status = WebPGetFeatures(data->bytes(), data->size(), &features); in DEF_TEST()
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | psaux.h | 261 FT_Byte size; /* size of field in bytes */ 396 FT_Byte* bytes,
|
/third_party/skia/third_party/externals/freetype/src/cff/ |
H A D | cffgload.c | 484 glyph->root.control_data = csindex->bytes + in FT_LOCAL_DEF()
|
/third_party/python/Lib/test/ |
H A D | test_gdb.py | 347 'Verify the pretty-printing of bytes' 358 self.assertGdbRepr(bytes([b for b in range(255)]))
|
H A D | test_difflib.py | 341 # that it's bytes and we don't crash 346 line, bytes, 347 "all lines of diff should be bytes, but got: %r" % line) 351 a = [b'hello', b'andr\xe9'] # iso-8859-1 bytes 352 b = [b'hello', b'andr\xc3\xa9'] # utf-8 bytes 361 # now with filenames (content and filenames are all bytes!) 431 # type of input content must be consistent: all str or all bytes 438 expect = "lines to compare must be str, not bytes (b'hello')" 444 expect = "all arguments must be bytes, not str ('hello')" 451 # cannot pass filenames as bytes i [all...] |
H A D | test_pickle.py | 68 return bytes(f.read())
|
H A D | _test_multiprocessing.py | 256 self.assertIsInstance(authkey, bytes) 266 sys.executable.encode(), # bytes 319 q.put(bytes(current.authkey)) 4016 self.assertEqual(bytes(sms.buf[0:6]), b'pickle') 4017 self.assertEqual(bytes(sms2.buf[0:6]), b'pickle') 4021 self.assertEqual(bytes(sms.buf[0:6]), b'newval') 4022 self.assertEqual(bytes(sms2.buf[0:6]), b'newval') 4025 self.assertEqual(bytes(sms.buf[0:6]), b'oldval') 4026 self.assertEqual(bytes(sms2.buf[0:6]), b'oldval') 4057 self.assertEqual(bytes(sm [all...] |
/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_types.py | 132 if isinstance(_val, bytes): 133 # sqlite3 always calls __init__ with a bytes created from a
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringRef.h | 113 iterator_range<const unsigned char *> bytes() const { in bytes() function in llvm::StringRef
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | StringRef.h | 132 iterator_range<const unsigned char *> bytes() const { in bytes() function in llvm::StringRef
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | json_stream_parser.cc | 104 // Move past valid bytes + one invalid byte. in ReplaceInvalidCodePoints() 375 // We're about to handle an escape, copy all bytes from last to data. in ParseStringHelper()
|
/third_party/skia/platform_tools/android/apps/gradle/wrapper/ |
H A D | gradle-wrapper.jar | ... lang.String)
java.security.MessageDigest messageDigest
byte[] bytes
Exception e
String string
private java.lang.String ... |
/third_party/rust/crates/nom/src/bytes/ |
H A D | complete.rs | 1 //! Parsers recognizing bytes streams, complete input version 22 /// use nom::bytes::complete::tag; 62 /// use nom::bytes::complete::tag_no_case; 106 /// use nom::bytes::complete::is_not; 139 /// use nom::bytes::complete::is_a; 171 /// use nom::bytes::complete::take_while; 202 /// use nom::bytes::complete::take_while1; 236 /// use nom::bytes::complete::take_while_m_n; 319 /// use nom::bytes::complete::take_till; 350 /// use nom::bytes [all...] |
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 393 PyErr_SetString(PyExc_ValueError, "Argument must be a bytes object"); in pycompilestring() 1678 PyObject *bytes; in getargs_s_star() local 1681 bytes = PyBytes_FromStringAndSize(buffer.buf, buffer.len); in getargs_s_star() 1683 return bytes; in getargs_s_star() 1712 PyObject *bytes; in getargs_z_star() local 1716 bytes = PyBytes_FromStringAndSize(buffer.buf, buffer.len); in getargs_z_star() 1719 bytes = Py_None; in getargs_z_star() 1722 return bytes; in getargs_z_star() 1751 PyObject *bytes; in getargs_y_star() local 1754 bytes in getargs_y_star() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiExternalMemoryTests.cpp | 1950 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testSemaphoreFdSendOverSocket() local 1952 if (bytes < 0) in testSemaphoreFdSendOverSocket() 1958 else if (bytes != (ssize_t)sendData.length()) in testSemaphoreFdSendOverSocket() 1960 TCU_FAIL("recvmsg() returned unpexpected number of bytes"); in testSemaphoreFdSendOverSocket() 3028 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testFenceFdSendOverSocket() local 3030 if (bytes < 0) in testFenceFdSendOverSocket() 3036 else if (bytes != (ssize_t)sendData.length()) in testFenceFdSendOverSocket() 3038 TCU_FAIL("recvmsg() returned unpexpected number of bytes"); in testFenceFdSendOverSocket() 3877 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testMemoryFdSendOverSocket() local 3879 if (bytes < in testMemoryFdSendOverSocket() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiExternalMemoryTests.cpp | 1935 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testSemaphoreFdSendOverSocket() local 1937 if (bytes < 0) in testSemaphoreFdSendOverSocket() 1943 else if (bytes != (ssize_t)sendData.length()) in testSemaphoreFdSendOverSocket() 1945 TCU_FAIL("recvmsg() returned unpexpected number of bytes"); in testSemaphoreFdSendOverSocket() 3010 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testFenceFdSendOverSocket() local 3012 if (bytes < 0) in testFenceFdSendOverSocket() 3018 else if (bytes != (ssize_t)sendData.length()) in testFenceFdSendOverSocket() 3020 TCU_FAIL("recvmsg() returned unpexpected number of bytes"); in testFenceFdSendOverSocket() 3758 const ssize_t bytes = recvmsg(dstSocket.getFd(), &msg, 0); in testMemoryFdSendOverSocket() local 3760 if (bytes < in testMemoryFdSendOverSocket() [all...] |