HomeSort by relevance Sort by last modified time
    Searched full:bytearray (Results 626 - 650 of 1008) sorted by null

<<21222324252627282930>>

  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 503 Handle<ByteArray> table,
512 __ cmpb(FieldOperand(eax, index, times_1, ByteArray::kHeaderSize),
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_btservice_AdapterService.cpp 133 ALOGE("%s: Error allocating byteArray", __func__);
187 ALOGE("%s: Error allocating byteArray", __func__);
    [all...]
  /system/iot/attestation/at-factory-tool/
atftman.py 930 attribute_array = bytearray(attribute)
939 vboot_key_array = bytearray(base64.standard_b64decode(vboot_key_string))
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
monsoon.py 362 checksum = (data_len + sum(bytearray(data))) % 256
377 result = bytearray(result)
    [all...]
  /external/python/cpython2/Misc/
NEWS 67 - Issue #27473: Fixed possible integer overflow in str, unicode and bytearray
70 - Issue #27507: Add integer overflow check in bytearray.extend(). Patch by
399 - Issue #27039: Fixed bytearray.remove() for values greater than 127. Patch by
415 Affected classes are generic sequence iterators, iterators of bytearray,
818 - Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
823 unicode and bytearray classes now emit deprecation warning for known
    [all...]
  /external/python/cpython3/Lib/test/
test_httplib.py 538 b = bytearray(2)
574 b = bytearray(2)
606 b = bytearray(2)
679 b = bytearray(5)
801 b = bytearray(128)
    [all...]
  /external/v8/src/
objects.h 79 // - ByteArray
    [all...]
  /external/python/cpython2/Doc/whatsnew/
2.7.rst 644 >>> b = bytearray(string.letters) # Creating a mutable object
646 bytearray(b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
648 >>> mb[0] = '*' # Assign to view, changing the bytearray.
649 >>> b[0:5] # The bytearray has been changed.
650 bytearray(b'*bcde')
    [all...]
2.6.rst     [all...]
  /external/python/cpython3/Doc/whatsnew/
2.7.rst 653 >>> b = bytearray(string.letters) # Creating a mutable object
655 bytearray(b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
657 >>> mb[0] = '*' # Assign to view, changing the bytearray.
658 >>> b[0:5] # The bytearray has been changed.
659 bytearray(b'*bcde')
    [all...]
3.5.rst 76 * ``bytes % args``, ``bytearray % args``: :ref:`PEP 461 <whatsnew-pep-461>` --
77 Adding ``%`` formatting to bytes and bytearray.
79 * New :meth:`bytes.hex`, :meth:`bytearray.hex` and :meth:`memoryview.hex`
359 PEP 461 - percent formatting support for bytes and bytearray
364 and :class:`bytearray`.
397 :pep:`461` -- Adding % formatting to bytes and bytearray
    [all...]
  /art/runtime/
jni_internal.cc     [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 409 byte[] byteArray = {Byte.MAX_VALUE, (byte) 111, (byte) 11, (byte) 1, (byte) 0,
411 byte[] byteArray2 = new byte[byteArray.length];
413 p.writeValue(byteArray);
416 for (int i = 0; i < byteArray.length; i++) {
417 assertEquals(byteArray[i], byteArray2[i]);
    [all...]
  /external/python/cpython3/Objects/
bytesobject.c     [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 605 Handle<mirror::ByteArray> h_array(hs.NewHandle(mirror::ByteArray::Alloc(self, map_size)));
    [all...]
  /art/runtime/mirror/
var_handle.cc     [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
rfc2217.py 575 data = bytearray()
725 suboption = bytearray()
    [all...]
  /external/python/cpython2/Lib/idlelib/
PyShell.py     [all...]
  /external/python/cpython3/Doc/
glossary.rst 141 :class:`bytearray`, and :class:`array.array` objects, as well as many
148 mutable buffer objects include :class:`bytearray` and a
149 :class:`memoryview` of a :class:`bytearray`.
    [all...]
  /external/python/cpython3/Lib/http/
client.py 448 b = bytearray(amt)
471 """Read up to len(b) bytes into bytearray b and return the number
825 # does it implement the buffer protocol (bytes, bytearray, array)?
    [all...]
  /external/python/cpython3/Lib/xmlrpc/
client.py 388 if not isinstance(data, (bytes, bytearray)):
389 raise TypeError("expected bytes or bytearray, not %s" %
567 dispatch[bytearray] = dump_bytes
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
Transformers.java     [all...]
  /external/autotest/client/cros/bluetooth/
bluetooth_device_xmlrpc_server.py 29 return base64.standard_b64encode(bytearray(dbus_byte_array))
35 bytes = bytearray(base64.standard_b64decode(b64_string))
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 296 ScopedLocalRef<jbyteArray> byteArray(env, env->NewByteArray(derLen));
297 if (byteArray.get() == nullptr) {
302 ScopedByteArrayRW bytes(env, byteArray.get());
317 return byteArray.release();
334 ScopedLocalRef<jbyteArray> byteArray(env, env->NewByteArray(static_cast<jsize>(len)));
335 if (byteArray.get() == nullptr) {
340 ScopedByteArrayRW bytes(env, byteArray.get());
347 return byteArray.release();
    [all...]
  /external/python/cpython2/Lib/test/
test_httplib.py 337 b'VCHAR: ' + bytearray(range(0x21, 0x7E + 1)) + b'\r\n'
338 b'obs-text: ' + bytearray(range(0x80, 0xFF + 1)) + b'\r\n'
    [all...]

Completed in 1528 milliseconds

<<21222324252627282930>>