/external/webp/src/dsp/ |
rescaler_mips32.c | 30 const int x_sub = wrk->x_sub; local 55 "subu %[accum], %[accum], %[x_sub] \n\t" 62 "mul %[temp3], %[sum], %[x_sub] \n\t" 76 [x_sub]"r"(x_sub), [x_add]"r"(x_add), 89 const int x_sub = wrk->x_sub; local 125 "subu %[accum], %[accum], %[x_sub] \n\t" 137 : [x_stride]"r"(x_stride), [x_add]"r"(x_add), [x_sub]"r"(x_sub) [all...] |
rescaler.c | 47 accum -= wrk->x_sub; 56 assert(wrk->x_sub == 0 /* <- special case for src_width=1 */ || accum == 0); 76 accum -= wrk->x_sub; 84 wrk->frow[x_out] = sum * wrk->x_sub - frac;
|
rescaler_sse2.c | 68 accum -= wrk->x_sub; 92 accum -= wrk->x_sub; 115 const int x_sub = wrk->x_sub; local 118 const __m128i mult0 = _mm_set1_epi16(x_sub); 125 if (wrk->num_channels != 4 || wrk->x_add > (x_sub << 7)) { 139 // To avoid overflow, we need: base * x_add / x_sub < 32768 140 // => x_add < x_sub << 7. That's a 1/128 reduction ratio limit. 142 accum -= x_sub; 151 const __m128i B0 = _mm_unpacklo_epi16(A0, A1); // sum * x_sub [all...] |
/external/webp/src/utils/ |
rescaler_utils.c | 26 const int x_add = src_width, x_sub = dst_width; local 41 wrk->x_add = wrk->x_expand ? (x_sub - 1) : x_add; 42 wrk->x_sub = wrk->x_expand ? (x_add - 1) : x_sub; 44 wrk->fx_scale = WEBP_RESCALER_FRAC(1, wrk->x_sub);
|
rescaler_utils.h | 40 int x_add, x_sub; // horizontal increments member in struct:WebPRescaler
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/ |
longobject.c | 2463 x_sub(PyLongObject *a, PyLongObject *b) function [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/ |
longobject.c | 2477 x_sub(PyLongObject *a, PyLongObject *b) function [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
longobject.c | 2463 x_sub(PyLongObject *a, PyLongObject *b) function [all...] |
/external/python/cpython2/Objects/ |
longobject.c | 2465 x_sub(PyLongObject *a, PyLongObject *b) function [all...] |
/external/python/cpython3/Objects/ |
longobject.c | 3047 x_sub(PyLongObject *a, PyLongObject *b) function [all...] |