/external/e2fsprogs/intl/ |
xsize.h | 44 size_t size = xsum (header_size, xtimes (n, element_size)); 57 xsum (size_t size1, size_t size2) function 70 return xsum (xsum (size1, size2), size3); 80 return xsum (xsum (xsum (size1, size2), size3), size4);
|
vasnprintf.c | 212 size_t augmented_length = xsum (length, n); 228 augmented_length = xsum (length, 1); 297 width = xsum (xtimes (width, 10), *digitp++ - '0'); 320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); 431 tmp_length = xsum (tmp_length, precision); 438 tmp_length = xsum (tmp_length, precision); 482 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ 583 ENSURE_ALLOCATION (xsum (length, 1)); 789 xsum (xtimes (allocated, 2), 12); 825 xmax (xsum (length, count), xtimes (allocated, 2)) [all...] |
printf-parse.c | 93 a_allocated = xsum (n, 1); \ 146 n = xsum (xtimes (n, 10), *np - '0'); 216 n = xsum (xtimes (n, 10), *np - '0'); 273 n = xsum (xtimes (n, 10), *np - '0');
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
mb_motion_comp.cpp | 151 int xsum; local 225 xsum = px[0] + px[1] + px[2] + px[3]; 226 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 227 (((PV_ABS(xsum)) >> 4) << 1)); 232 xsum = py[0] + py[1] + py[2] + py[3]; 233 dy = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 234 (((PV_ABS(xsum)) >> 4) << 1)); 252 round1, mvwidth, &xsum, &ysum);* [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
mb_motion_comp.cpp | 151 int xsum; local 225 xsum = px[0] + px[1] + px[2] + px[3]; 226 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 227 (((PV_ABS(xsum)) >> 4) << 1)); 232 xsum = py[0] + py[1] + py[2] + py[3]; 233 dy = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 234 (((PV_ABS(xsum)) >> 4) << 1)); 252 round1, mvwidth, &xsum, &ysum);* [all...] |
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
motion_comp.cpp | 112 Int xsum, ysum; local 171 xsum = mot[1].x + mot[2].x + mot[3].x + mot[4].x; 174 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 175 (((PV_ABS(xsum)) >> 4) << 1)); [all...] |