Lines Matching defs:p01
38 static float golden_bilerp(float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) {
40 + (1.0f-tx) * ty * p01
46 float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) {
51 double bottom = (1.0 - dtx) * p01 + dtx * p11;
57 float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) {
60 int64_t bottom = ftx * (p11 - p01) + 65536 * p01;
69 static int16_t bilerp_1(float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) {
77 qw = (p11 - p01) << logPixelScale;
78 qm = (p11 + p01) << logPixelScale;
101 for (int p01 : interesting)
105 double l = golden_bilerp2(tx, ty, p00, p10, p01, p11);
107 //l = golden_bilerp(tx, ty, p00, p10, p01, p11);
109 int16_t candidate = bilerp(tx, ty, p00, p10, p01, p11);