Searched refs:filled_length (Results 1 – 4 of 4) sorted by relevance
/external/sfntly/cpp/src/sfntly/data/ |
D | byte_array.cc | 32 int32_t ByteArray::SetFilledLength(int32_t filled_length) { in SetFilledLength() argument 33 filled_length_ = std::min<int32_t>(filled_length, storage_length_); in SetFilledLength() 183 ByteArray::ByteArray(int32_t filled_length, in ByteArray() argument 186 Init(filled_length, storage_length, growable); in ByteArray() 189 ByteArray::ByteArray(int32_t filled_length, int32_t storage_length) { in ByteArray() argument 190 Init(filled_length, storage_length, false); in ByteArray() 193 void ByteArray::Init(int32_t filled_length, in Init() argument 198 SetFilledLength(filled_length); in Init()
|
D | byte_array.h | 45 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);
|
D | memory_byte_array.cc | 27 MemoryByteArray::MemoryByteArray(byte_t* b, int32_t filled_length) in MemoryByteArray() argument 28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) { in MemoryByteArray()
|
D | memory_byte_array.h | 40 MemoryByteArray(byte_t* b, int32_t filled_length);
|