Searched refs:filled_length (Results 1 - 4 of 4) sorted by relevance

/external/sfntly/cpp/src/sfntly/data/
H A Dmemory_byte_array.cc27 MemoryByteArray::MemoryByteArray(byte_t* b, int32_t filled_length) argument
28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) {
H A Dbyte_array.h45 int32_t SetFilledLength(int32_t filled_length);
143 ByteArray(int32_t filled_length, int32_t storage_length, bool growable);
144 ByteArray(int32_t filled_length, int32_t storage_length);
145 void Init(int32_t filled_length, int32_t storage_length, bool growable);
H A Dbyte_array.cc32 int32_t ByteArray::SetFilledLength(int32_t filled_length) { argument
33 filled_length_ = std::min<int32_t>(filled_length, storage_length_);
181 ByteArray::ByteArray(int32_t filled_length, argument
184 Init(filled_length, storage_length, growable);
187 ByteArray::ByteArray(int32_t filled_length, int32_t storage_length) { argument
188 Init(filled_length, storage_length, false);
191 void ByteArray::Init(int32_t filled_length, argument
196 SetFilledLength(filled_length);
H A Dmemory_byte_array.h35 // @param filled_length the index of the last byte in the array has data
38 // of b. C++ port also assumes filled_length is buffer_length since
40 MemoryByteArray(byte_t* b, int32_t filled_length);

Completed in 76 milliseconds