Home
last modified time | relevance | path

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

/external/sfntly/cpp/src/sfntly/data/
Dbyte_array.cc32 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()
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);
Dmemory_byte_array.cc27 MemoryByteArray::MemoryByteArray(byte_t* b, int32_t filled_length) in MemoryByteArray() argument
28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) { in MemoryByteArray()
Dmemory_byte_array.h40 MemoryByteArray(byte_t* b, int32_t filled_length);