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

  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 28 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_);
36 // Check to make sure |bound_offset_| will not overflow.
37 CHECK(bound_offset_ <= std::numeric_limits<int32_t>::max() - offset);
38 const int32_t new_offset = bound_offset_ + offset;
52 bound_offset_ = new_offset;
57 return std::min<int32_t>(array_->Length() - bound_offset_, bound_length_);
66 Bound(data->bound_offset_ + offset, length);
71 Bound(data->bound_offset_ + offset,
80 bound_offset_ = 0;
85 return offset + bound_offset_;
    [all...]
font_data.h 117 int32_t bound_offset_; member in class:sfntly::FontData

Completed in 57 milliseconds