Home
last modified time | relevance | path

Searched refs:bytearray (Results 1 – 23 of 23) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417BarcodeMatrix.cpp72 CFX_ByteArray bytearray; in getScaledMatrix() local
73 bytearray.Copy(((CBC_BarcodeRow*)m_matrix[0])->getScaledRow(xScale)); in getScaledMatrix()
74 int32_t xMax = bytearray.GetSize(); in getScaledMatrix()
81 bytearray.Copy( in getScaledMatrix()
86 m_matrixOut[k + l] = bytearray.GetAt(l); in getScaledMatrix()
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
Dserialutil.py11 bytearray
19 class bytearray(list): class
36 return bytearray(list.__getslice__(self, i, j))
40 return bytearray(list.__getitem__(self, item))
46 other = bytearray(other)
69 elif isinstance(seq, bytearray):
74 b = bytearray()
166 line = bytearray()
Dserialjava.py157 read = bytearray()
171 if not isinstance(data, (bytes, bytearray)):
Dserialcli.py159 data = bytearray()
172 if not isinstance(data, (bytes, bytearray)):
Dserialposix.py458 read = bytearray()
665 read = bytearray()
Drfc2217.py575 data = bytearray()
725 suboption = bytearray()
1065 self.suboption = bytearray()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRDataBlock.cpp69 CFX_ByteArray* bytearray = new CFX_ByteArray(); in GetDataBlocks() local
70 bytearray->SetSize(numBlockCodewords); in GetDataBlocks()
72 new CBC_QRDataBlock(numDataCodewords, bytearray); in GetDataBlocks()
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
Dxsrfutil.py116 for x, y in zip(bytearray(token), bytearray(expected_token)):
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
D_bitmap.py45 if type(pixels) is not bytearray:
46 pixels = bytearray(pixels)
128 if type(self._pixels) is not bytearray:
129 self._pixels = bytearray(self._pixels)
Dimage_util_numpy_impl.py26 return bytearray(np.uint8(image[:, :, ::-1]).flat) # Convert from bgr to rgb.
64 file_bytes = np.asarray(bytearray(png_data), dtype=np.uint8)
Dvideo.py159 frame_data = bytearray(frame_length)
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/urlhandler/
Dprotocol_loop.py45 self.loop_buffer = bytearray()
126 data = bytearray()
Dprotocol_socket.py139 data = bytearray()
/external/chromium-trace/catapult/telemetry/telemetry/core/
Dplatform_unittest.py43 special_colored_pixel = bytearray([217, 115, 43])
/external/autotest/client/cros/i2c/
Dusb_to_i2c.py126 self.serial.write(bytearray(data))
/external/chromium-trace/catapult/telemetry/telemetry/util/
Dimage_util_unittest.py128 self.assertEquals(image_util.Pixels(bmp), bytearray([1, 2, 0, 2, 2, 0]))
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
Dcrcmod.rst19 >>> crc_value = crc_function(bytearray((49, 50, 51, 52, 53, 54, 55, 56, 57)))
102 >>> hex(crc32_func(bytearray((49, 50, 51, 52, 53, 54, 55, 56, 57))))
/external/autotest/client/common_lib/cros/bluetooth/
Dbluetooth_socket.py295 hdr = bytearray(MGMT_HDR_SIZE)
296 data = bytearray(512)
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
DTestCharset.java4828 byte bytearray[] = { in TestCharsetISO2022KR()
4834 ByteBuffer bb = ByteBuffer.wrap(bytearray); in TestCharsetISO2022KR()
4850 byte bytearray[] = { in TestCharsetISO2022JP()
4856 ByteBuffer bb = ByteBuffer.wrap(bytearray); in TestCharsetISO2022JP()
4872 byte bytearray[] = { in TestCharsetASCII()
4879 ByteBuffer bb = ByteBuffer.wrap(bytearray); in TestCharsetASCII()
4962 byte bytearray[] = { in TestCharsetCallbacks()
4965 bb = ByteBuffer.wrap(bytearray); in TestCharsetCallbacks()
5036 byte bytearray[] = { in TestCharsetTestData()
5045 ByteBuffer bb = ByteBuffer.wrap(bytearray); in TestCharsetTestData()
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
Dtest.py508 bytearray_answer = crcfun(bytearray(test_msg))
/external/v8/tools/
Djs2c.py521 byte_sequence = bytearray()
Dgrokdump.py920 string = bytearray(MINIDUMP_STRING.Read(self.minidump, rva).buffer)
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
Dfake_filesystem.py164 return binascii.unhexlify(bytearray(self.contents, 'utf-8'))
166 return binascii.unhexlify(bytearray(self.contents, 'utf-8')).decode(sys.getdefaultencoding())