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

<<11121314151617181920>>

  /external/v8/src/x87/
deoptimizer-x87.cc 69 Handle<ByteArray> new_reloc =
122 ByteArray* reloc_info = code->relocation_info();
151 reloc_info->address() + ByteArray::kHeaderSize);
  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 576 Vector<uint8_t> byteArray;
577 byteArray.appendArray(value, valueSize);
580 byteArray));
  /external/python/cpython2/Lib/test/
test_memoryio.py 420 b = bytearray(b"hello")
427 b = bytearray(b"hello world")
431 b = bytearray(b"")
444 b = bytearray()
675 bytearray(state[0]) # Check if state[0] supports the buffer interface.
686 memio.__setstate__((bytearray(b"no error"), 0, None))
  /external/python/cpython3/Lib/test/
test_base64.py 43 eq(base64.encodebytes(bytearray(b'abc')), b'YWJj\n')
62 eq(base64.decodebytes(bytearray(b'YWJj\n')), b'abc')
109 b = bytearray(bytes_data)
111 # The bytearray wasn't mutated
150 eq(base64.b64encode(b'\xd3V\xbeo\xf7\x1d', altchars=bytearray(b'*$')),
377 eq(base64.b16decode(bytearray(b"0102abcdef"), True),
test_zlib.py 181 self.assertEqual(zlib.compress(bytearray(data)), x)
182 for ob in x, bytearray(x):
232 # should compress both bytes and bytearray data
233 for data in (datasrc, bytearray(datasrc)):
239 for v1, v2 in ((x1, x2), (bytearray(x1), bytearray(x2))):
    [all...]
  /art/runtime/mirror/
var_handle.h 245 // Represents a VarHandle providing accessors to a view of a ByteArray.
299 ObjPtr<ByteArray> heap_byte_array,
array.cc 154 template class PrimitiveArray<int8_t>; // ByteArray
  /developers/build/prebuilts/gradle/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 226 byte[] byteArray = stream.toByteArray();
228 return byteArray;
  /developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 226 byte[] byteArray = stream.toByteArray();
228 return byteArray;
  /development/samples/browseable/AgendaData/Application/src/com.example.android.wearable.agendadata/
CalendarQueryService.java 226 byte[] byteArray = stream.toByteArray();
228 return byteArray;
  /external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
protocol_loop.py 45 self.loop_buffer = bytearray()
126 data = bytearray()
  /external/protobuf/csharp/src/Google.Protobuf/
ByteString.cs 162 ByteArray.Copy(bytes, offset, portion, 0, count);
334 ByteArray.Copy(bytes, 0, array, position, bytes.Length);
  /external/python/cpython2/Lib/ctypes/test/
test_bitfields.py 269 b = bytearray(4)
283 b = bytearray(4)
  /external/python/cpython3/Lib/
copy.py 125 d[bytearray] = bytearray.copy
  /external/python/cpython3/Lib/ctypes/test/
test_bitfields.py 268 b = bytearray(4)
282 b = bytearray(4)
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 29 ReadableFontData::ReadableFontData(ByteArray* array)
223 int32_t ReadableFontData::CopyTo(ByteArray* ba) {
  /external/dexmaker/lib/
dalvik-dx-1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/1/
dalvik-dx-1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/7.1.0_r7/
dalvik-dx-7.1.0_r7.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 63 byte[] byteArray;
122 Arrays.binarySearch(byteArray, counter) == counter);
129 byteArray[counter] -= 50;
133 Arrays.binarySearch(byteArray, (byte) (counter - 50)) == counter);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py     [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/
lldbefi.py 417 # Convert a 16-byte bytesarry (or bytearray compat object) to C guid string
423 if not isinstance (guid, bytearray):
424 # convert guid object to UUID, and UUID to bytearray
426 guid = bytearray (Uuid.bytes_le)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValuesTest.java 78 } else if (name.equals("byteArray")) {
  /external/autotest/client/common_lib/cros/
policy.py 163 sm.StorePolicy(dbus.ByteArray(policy_string), byte_arrays=True)
  /external/autotest/client/site_tests/login_UserPolicyKeys/
login_UserPolicyKeys.py 113 dbus.ByteArray(policy_response))

Completed in 1410 milliseconds

<<11121314151617181920>>