Lines Matching refs:first
60 std::pair<S, T> first() const { in first() function
86 return high->first == x ? high->second : low->second; in findY()
88 return ((high->first - x) * low->second + (x - low->first) * high->second) in findY()
89 / (high->first - low->first); in findY()
95 const S interval = high->first - low->first; in findY()
98 if (mMemo.count(low->first) != 0) { in findY()
99 const S t = (x - low->first) / interval; in findY()
101 const auto &memo = mMemo[low->first]; in findY()
135 ? (low->second - low2->second) / (low->first - low2->first) in findY()
138 ? (high2->second - high->second) / (high2->first - high->first) in findY()
147 ? (high->second - low2->second) / (high->first - low2->first) in findY()
151 ? (high2->second - low->second) / (high2->first - low->first) in findY()
173 const S t = (x - low->first) / interval; in findY()
184 mMemo[low->first] = std::make_tuple(c1, c2, c3); in findY()
250 res = parcel->writeFloat(pt.first) in writeToParcel()
301 bool first = true; in toString() local
303 if (first) { in toString()
304 first = false; in toString()
309 ss << pt.first << ", " << pt.second << "}"; in toString()