HomeSort by relevance Sort by last modified time
    Searched refs:filled_length_ (Results 1 - 2 of 2) sorted by null

  /external/sfntly/cpp/src/sfntly/data/
byte_array.cc 29 int32_t ByteArray::Length() { return filled_length_; }
33 filled_length_ = std::min<int32_t>(filled_length, storage_length_);
34 return filled_length_;
53 if (index < 0 || index >= filled_length_) {
56 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index);
70 filled_length_ = std::max<int32_t>(filled_length_, index + 1);
93 filled_length_ = std::max<int32_t>(filled_length_, index + bytes_written);
byte_array.h 193 int32_t filled_length_; member in class:sfntly::ByteArray

Completed in 128 milliseconds