HomeSort by relevance Sort by last modified time
    Searched full:bytearray (Results 226 - 250 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 27 WritableFontData::WritableFontData(ByteArray* ba) : ReadableFontData(ba) {
readable_font_data.h 51 explicit ReadableFontData(ByteArray* array);
194 virtual int32_t CopyTo(ByteArray* ba);
  /external/sfntly/cpp/src/sfntly/
font_factory.h 52 // ByteArray font loading
  /external/skia/tools/debugger/
SkJsonWriteBuffer.cpp 25 this->append("byteArray", jsonArray);
  /external/v8/src/extensions/
statistics-extension.cc 151 ByteArray* source_position_table = code->source_position_table();
  /external/flatbuffers/tests/
py_test.py 67 CheckReadBuffer(bytearray(canonicalWireData), 0)
311 want = bytearray(want_ints)
    [all...]
  /device/linaro/bootloader/edk2/IntelFspPkg/Tools/
PatchFv.py 34 bytearray = [ord(b) for b in fd.read(len)]
38 value = value << 8 | bytearray[idx]
88 bytearray = []
91 bytearray.append(value & 0xFF)
95 fd.write("".join(chr(b) for b in bytearray))
GenCfgOpt.py 438 bytearray = []
442 bytearray.append("0x%02X" % (value & 0xFF))
444 newvalue = '{' + ','.join(bytearray) + '}'
695 bytearray = []
704 bytearray.append(value)
712 bytearray.append(value & 0xFF)
717 valuelist = [b for b in bytearray[SubItem['offset']:SubItem['offset']+SubItem['length']]]
722 valuestr = ",".join('0x%02X' % b for b in bytearray[SubItem['offset']:SubItem['offset']+SubItem['length']])
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs 485 ByteArray.Reverse(rawBytes);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py 264 self.assertEqual(f.write(bytearray(b" world\n\n\n")), 9)
277 data = bytearray(data)
286 self.assertEqual(f.readinto(bytearray(b"x")), 0)
290 self.assertEqual(f.readinto(bytearray()), 0)
757 b = bytearray(2)
834 s = bytes(bytearray(l))
863 c = bytes(bytearray([i]))
    [all...]
test_binascii.py 222 type2test = bytearray
test_iterlen.py 229 b = bytearray(range(10))
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 431 static Vector<uint8_t> JByteArrayToVector(JNIEnv *env, jbyteArray const &byteArray) {
433 size_t length = env->GetArrayLength(byteArray);
435 env->GetByteArrayRegion(byteArray, 0, length, (jbyte *)vector.editArray());
541 jbyteArray byteArray = VectorToJByteArray(env, *iter);
542 env->CallBooleanMethod(arrayList, gFields.arraylist.add, byteArray);
543 env->DeleteLocalRef(byteArray);
    [all...]
  /external/v8/src/
objects-inl.h 658 TYPE_CHECKER(ByteArray, BYTE_ARRAY_TYPE)
    [all...]
string-stream.cc 397 void StringStream::PrintByteArray(ByteArray* byte_array) {
445 PrintByteArray(ByteArray::cast(printee));
  /cts/tests/tests/media/libaudiojni/
audio-record-native.cpp 616 jbyteArray byteArray, jint offsetInSamples, jint sizeInSamples, jint readFlags)
618 return readArray(env, clazz, jrecord, byteArray, offsetInSamples, sizeInSamples, readFlags);
  /external/autotest/client/common_lib/cros/bluetooth/
bluetooth_sdp_socket.py 121 @param data: Parameters as bytearray or str.
173 @param req_data: Parameters as bytearray or str.
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 491 int mref = ByteArray.readU16bit(code, pos + 1);
495 ByteArray.write16bit(mref2, code, pos + 1);
  /external/v8/src/heap/
objects-visiting.h 34 V(ByteArray) \
277 return reinterpret_cast<ByteArray*>(object)->ByteArraySize();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterInputStreamTest.java 87 byte byteArray[] = new byte[100];
93 inflatIP.read(byteArray, 0, 5);// only suppose to read in 5 bytes
  /libcore/ojluni/src/main/java/java/lang/
ProcessEnvironment.java 41 * String/byteArray duality. The internal representation of the
125 // A class hiding the byteArray-String duality of
  /art/runtime/mirror/
object-inl.h 227 inline ByteArray* Object::AsByteArray() {
231 return down_cast<ByteArray*>(this);
235 inline ByteArray* Object::AsByteSizedArray() {
240 return down_cast<ByteArray*>(this);
    [all...]
  /developers/build/prebuilts/gradle/ContentProviderPaging/kotlinApp/app/src/main/kotlin/com.example.android.contentproviderpaging/
ImageProvider.kt 180 val buffer = ByteArray(1024)
  /developers/samples/android/content/documentsUi/ContentProviderPaging/kotlinApp/app/src/main/kotlin/com.example.android.contentproviderpaging/
ImageProvider.kt 180 val buffer = ByteArray(1024)
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
MultiRecordExampleAgent.java 103 // reuse the bytearray buffering stream for each datum. We also use a little

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 91011>>