Home
last modified time | relevance | path

Searched refs:bounded_ (Results 1 – 2 of 2) sorted by relevance

/external/sfntly/cpp/src/sfntly/data/
Dfont_input_stream.cc24 : stream_(is), position_(0), length_(0), bounded_(false) { in FontInputStream()
28 : stream_(is), position_(0), length_(length), bounded_(true) { in FontInputStream()
36 if (bounded_) in Length()
75 if (!stream_ || (bounded_ && position_ >= length_)) { in Read()
87 (bounded_ && position_ >= length_)) { in Read()
91 bounded_ ? std::min<int32_t>(length, (int32_t)(length_ - position_)) : in Read()
Dfont_input_stream.h92 bool bounded_; variable