Home | History | Annotate | Download | only in cmaps

Lines Matching refs:found

3 // found in the LICENSE file.
47 const auto* found = std::lower_bound(
55 if (found != end && loword >= found->m_LoWordLow &&
56 loword <= found->m_LoWordHigh) {
57 return found->m_CID + loword - found->m_LoWordLow;
75 const auto* found = std::lower_bound(
79 if (found != end && found->code == loword)
80 return found->cid;
90 const auto* found = std::lower_bound(
94 if (found != end && loword >= found->low && loword <= found->high)
95 return found->cid + loword - found->low;