Searched refs:CENTERSTART (Results 1 – 4 of 4) sorted by relevance
/external/libyuv/files/docs/ |
D | filtering.md | 76 #define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s) 103 *x = CENTERSTART(*dx, -32768); 110 *y = CENTERSTART(*dy, -32768); // 32768 = -0.5 to center bilinear. 119 *x = CENTERSTART(*dx, -32768); 130 *x = CENTERSTART(*dx, 0); 131 *y = CENTERSTART(*dy, 0);
|
/external/libyuv/files/source/ |
D | scale_common.cc | 1225 #define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s) macro 1262 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1269 *y = CENTERSTART(*dy, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1278 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1289 *x = CENTERSTART(*dx, 0); in ScaleSlope() 1290 *y = CENTERSTART(*dy, 0); in ScaleSlope() 1299 #undef CENTERSTART
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | scale_common.cc | 1215 #define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s) macro 1252 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1259 *y = CENTERSTART(*dy, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1268 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1279 *x = CENTERSTART(*dx, 0); in ScaleSlope() 1280 *y = CENTERSTART(*dy, 0); in ScaleSlope() 1289 #undef CENTERSTART
|
/external/libaom/libaom/third_party/libyuv/source/ |
D | scale_common.cc | 1063 #define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s) macro 1095 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1102 *y = CENTERSTART(*dy, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1111 *x = CENTERSTART(*dx, -32768); // Subtract 0.5 (32768) to center filter. in ScaleSlope() 1122 *x = CENTERSTART(*dx, 0); in ScaleSlope() 1123 *y = CENTERSTART(*dy, 0); in ScaleSlope() 1132 #undef CENTERSTART
|