/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmsintrp.c | 334 # define LERP(a,l,h) (cmsFloat32Number) ((l)+(((h)-(l))*(a))) 367 dx0 = LERP(fx, d00, d10); 368 dx1 = LERP(fx, d01, d11); 370 dxy = LERP(fy, dx0, dx1); 376 # undef LERP 388 #define LERP(a,l,h) (cmsUInt16Number) (l + ROUND_FIXED_TO_INT(((h-l)*a))) 425 dx0 = LERP(rx, d00, d10); 426 dx1 = LERP(rx, d01, d11); 428 dxy = LERP(ry, dx0, dx1); 434 # undef LERP [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress_fxt1.c | 621 FX64_MOV32(hi, 6); /* alpha = "011" + lerp = 0 */ 792 FX64_MOV32(hi, 7); /* alpha = "011" + lerp = 1 */ [all...] |
/external/mesa3d/src/mesa/main/ |
texcompress_fxt1.c | 621 FX64_MOV32(hi, 6); /* alpha = "011" + lerp = 0 */ 792 FX64_MOV32(hi, 7); /* alpha = "011" + lerp = 1 */ [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_blit.c | 356 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) 362 const GLfloat temp0 = LERP(a, v00, v10); 363 const GLfloat temp1 = LERP(a, v01, v11); 364 return LERP(b, temp0, temp1);
|
s_texfilter.c | 51 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) 66 const GLfloat temp0 = LERP(a, v00, v10); 67 const GLfloat temp1 = LERP(a, v01, v11); 68 return LERP(b, temp0, temp1); 81 const GLfloat temp00 = LERP(a, v000, v100); 82 const GLfloat temp10 = LERP(a, v010, v110); 83 const GLfloat temp01 = LERP(a, v001, v101); 84 const GLfloat temp11 = LERP(a, v011, v111); 85 const GLfloat temp0 = LERP(b, temp00, temp10); 86 const GLfloat temp1 = LERP(b, temp01, temp11) [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_blit.c | 356 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) 362 const GLfloat temp0 = LERP(a, v00, v10); 363 const GLfloat temp1 = LERP(a, v01, v11); 364 return LERP(b, temp0, temp1);
|
s_texfilter.c | 51 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) 66 const GLfloat temp0 = LERP(a, v00, v10); 67 const GLfloat temp1 = LERP(a, v01, v11); 68 return LERP(b, temp0, temp1); 81 const GLfloat temp00 = LERP(a, v000, v100); 82 const GLfloat temp10 = LERP(a, v010, v110); 83 const GLfloat temp01 = LERP(a, v001, v101); 84 const GLfloat temp11 = LERP(a, v011, v111); 85 const GLfloat temp0 = LERP(b, temp00, temp10); 86 const GLfloat temp1 = LERP(b, temp01, temp11) [all...] |