Searched refs:byte_array (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/transient/ |
D | file_utils.cc | 86 rtc::scoped_ptr<uint8_t[]> byte_array(new uint8_t[2]); in ReadInt16BufferFromFile() local 91 size_t bytes_read = file->Read(byte_array.get(), 2); in ReadInt16BufferFromFile() 95 int16_t value = byte_array[1]; in ReadInt16BufferFromFile() 97 value += byte_array[0]; in ReadInt16BufferFromFile() 148 rtc::scoped_ptr<uint8_t[]> byte_array(new uint8_t[4]); in ReadFloatBufferFromFile() local 153 size_t bytes_read = file->Read(byte_array.get(), 4); in ReadFloatBufferFromFile() 157 ConvertByteArrayToFloat(byte_array.get(), &buffer[floats_read]); in ReadFloatBufferFromFile() 171 rtc::scoped_ptr<uint8_t[]> byte_array(new uint8_t[8]); in ReadDoubleBufferFromFile() local 176 size_t bytes_read = file->Read(byte_array.get(), 8); in ReadDoubleBufferFromFile() 180 ConvertByteArrayToDouble(byte_array.get(), &buffer[doubles_read]); in ReadDoubleBufferFromFile() [all …]
|
/external/llvm/test/CodeGen/Mips/cconv/ |
D | memory-layout.ll | 71 @byte_array = global [2 x i8] [i8 1, i8 2], align 1 80 ; ALL-LABEL: byte_array: 82 ; ALL: .size byte_array, 2
|
/external/v8/src/interpreter/ |
D | source-position-table.cc | 159 SourcePositionTableIterator::SourcePositionTableIterator(ByteArray* byte_array) in SourcePositionTableIterator() argument 160 : table_(byte_array), index_(0), current_() { in SourcePositionTableIterator()
|
D | source-position-table.h | 66 explicit SourcePositionTableIterator(ByteArray* byte_array);
|
/external/lldb/examples/python/ |
D | disasm-stress-test.py | 60 def PrintByteArray(log_file, byte_array): argument 61 for byte in byte_array:
|
/external/dbus/test/data/valid-messages/ |
D | emptiness.message | 52 STRING 'byte_array'
|
/external/v8/src/ |
D | string-stream.cc | 396 void StringStream::PrintByteArray(ByteArray* byte_array) { in PrintByteArray() argument 397 unsigned int limit = byte_array->length(); in PrintByteArray() 399 byte b = byte_array->get(i); in PrintByteArray()
|
/external/sfntly/ |
D | Android.mk | 20 cpp/src/sfntly/data/byte_array.cc \
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 6474 ByteArray* byte_array; in HEAP_TEST() local 6479 while (heap->AllocateByteArray(M, TENURED).To(&byte_array)) { in HEAP_TEST() 6481 byte_array->set(j, 0x31); in HEAP_TEST() 6504 ByteArray* byte_array; in HEAP_TEST() local 6505 while (heap->AllocateByteArray(M).To(&byte_array)) { in HEAP_TEST() 6507 byte_array->set(j, 0x31); in HEAP_TEST() 6510 handle(byte_array); in HEAP_TEST()
|
/external/v8/src/heap/ |
D | heap.cc | 2350 ALLOCATE_VARSIZE_MAP(BYTE_ARRAY_TYPE, byte_array) in CreateInitialMaps() 2423 ByteArray* byte_array; in CreateInitialMaps() local 2424 if (!AllocateByteArray(0, TENURED).To(&byte_array)) return false; in CreateInitialMaps() 2425 set_empty_byte_array(byte_array); in CreateInitialMaps()
|