Home
last modified time | relevance | path

Searched refs:bytes (Results 2251 - 2275 of 2551) sorted by relevance

1...<<919293949596979899100>>...103

/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/modes/
H A Dghashv8-armx.S198 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 Dghashv8-armx.S198 bhs .Loop_mod2x_v8 @ there was at least 32 more bytes
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl75 || [A0] AND B0,SP,SP ; align stack at 64 bytes
/third_party/node/deps/openssl/openssl/crypto/cmp/
H A Dcmp_local.h751 const unsigned char *bytes, int len);
/third_party/python/Lib/
H A Dcodecs.py286 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 Dcmp_local.h751 const unsigned char *bytes, int len);
/third_party/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl75 || [A0] AND B0,SP,SP ; align stack at 64 bytes
/third_party/skia/third_party/externals/oboe/apps/OboeTester/gradle/wrapper/
H A Dgradle-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 Dgradle-wrapper.jar ... lang.String) java.security.MessageDigest messageDigest byte[] bytes Exception e String string private java.lang.String ...
/third_party/skia/tests/
H A DEncodeTest.cpp261 // 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 Dpsaux.h261 FT_Byte size; /* size of field in bytes */
396 FT_Byte* bytes,
/third_party/skia/third_party/externals/freetype/src/cff/
H A Dcffgload.c484 glyph->root.control_data = csindex->bytes + in FT_LOCAL_DEF()
/third_party/python/Lib/test/
H A Dtest_gdb.py347 'Verify the pretty-printing of bytes'
358 self.assertGdbRepr(bytes([b for b in range(255)]))
H A Dtest_difflib.py341 # 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 Dtest_pickle.py68 return bytes(f.read())
H A D_test_multiprocessing.py256 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 Dtest_types.py132 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 DStringRef.h113 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 DStringRef.h132 iterator_range<const unsigned char *> bytes() const { in bytes() function in llvm::StringRef
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser.cc104 // 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 Dgradle-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 Dcomplete.rs1 //! 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.c393 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 DvktApiExternalMemoryTests.cpp1950 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 DvktApiExternalMemoryTests.cpp1935 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...]

Completed in 46 milliseconds

1...<<919293949596979899100>>...103