Lines Matching refs:high
70 auto high = this->lower_bound(x); in findY() local
72 if (high == this->end()) { in findY()
76 if (high == this->begin()) { in findY()
77 return high->second; in findY()
80 auto low = high; in findY()
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()
112 auto high2 = high; in findY()
133 sec = (high->second - low->second) / interval; in findY()
138 ? (high2->second - high->second) / (high2->first - high->first) in findY()
147 ? (high->second - low2->second) / (high->first - low2->first) in findY()
179 const T dy = high->second - low->second; in findY()
193 return h00 * low->second + (h10 * m0 + h11 * m1) * interval + h01 * high->second; in findY()