Home
last modified time | relevance | path

Searched refs:byte_array (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/transient/
Dfile_utils.cc86 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/
Dmemory-layout.ll71 @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/
Dsource-position-table.cc159 SourcePositionTableIterator::SourcePositionTableIterator(ByteArray* byte_array) in SourcePositionTableIterator() argument
160 : table_(byte_array), index_(0), current_() { in SourcePositionTableIterator()
Dsource-position-table.h66 explicit SourcePositionTableIterator(ByteArray* byte_array);
/external/lldb/examples/python/
Ddisasm-stress-test.py60 def PrintByteArray(log_file, byte_array): argument
61 for byte in byte_array:
/external/dbus/test/data/valid-messages/
Demptiness.message52 STRING 'byte_array'
/external/v8/src/
Dstring-stream.cc396 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/
DAndroid.mk20 cpp/src/sfntly/data/byte_array.cc \
/external/v8/test/cctest/heap/
Dtest-heap.cc6474 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/
Dheap.cc2350 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()