/external/webp/src/dsp/ |
rescaler_neon.c | 60 int x_out; local 73 for (x_out = 0; x_out < max_span; x_out += 8) { 74 LOAD_32x4(frow + x_out + 0, A0); 75 LOAD_32x4(frow + x_out + 4, A1); 81 vst1_u8(dst + x_out, D); 83 for (; x_out < x_out_max; ++x_out) { 84 const uint32_t J = frow[x_out]; 116 int x_out; local [all...] |
rescaler.c | 36 int x_out = channel; local 43 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; 44 x_out += x_stride; 45 if (x_out >= x_out_max) break; 67 int x_out = channel; local 70 while (x_out < x_out_max) { 82 wrk->frow[x_out] = sum * wrk->x_sub - frac; 86 x_out += x_stride; 96 int x_out; local 106 for (x_out = 0; x_out < x_out_max; ++x_out) 127 int x_out; local [all...] |
rescaler_sse2.c | 229 int x_out; local 240 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { 242 LoadDispatchAndMult(frow + x_out, NULL, &A0, &A1, &A2, &A3); 243 ProcessRow(&A0, &A1, &A2, &A3, &mult, dst + x_out); 245 for (; x_out < x_out_max; ++x_out) { 246 const uint32_t J = frow[x_out]; 249 dst[x_out] = v 289 int x_out; local [all...] |
rescaler_mips32.c | 100 int x_out = channel; local 120 "addu %[x_out], %[x_out], %[x_stride] \n\t" 121 "subu %[temp3], %[x_out], %[x_out_max] \n\t" 134 [x_out]"+r"(x_out), [frac]"=&r"(frac), [frow]"+r"(frow)
|
/external/opencv3/3rdparty/libwebp/utils/ |
rescaler.c | 59 int x_out; local 63 for (x_out = channel; x_out < x_out_max; x_out += x_stride) { 73 wrk->frow[x_out] = (sum + base) * wrk->x_sub - frac; 80 for (x_out = channel; x_out < x_out_max; x_out += x_stride) { 87 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; 92 for (x_out = channel; x_out < x_out_max; x_out += x_stride) 99 int x_out; local [all...] |
/system/core/libmincrypt/ |
p256_ec.c | [all...] |
/external/boringssl/src/crypto/ec/ |
p224-64.c | 667 * Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed, 668 * while x_out == y_in is not (maybe this works, but it's not tested). */ 669 static void point_double(felem x_out, felem y_out, felem z_out, 708 felem_reduce(x_out, tmp); 725 felem_diff(beta, x_out); 756 felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, x_out, y_out, z_out; local 867 /* x_out = (z1^3*y2 - z2^3*y1)^2 - (z1^2*x2 - z2^2*x1)^3 - 871 felem_reduce(x_out, tmp2); 873 /* ftmp2 = z2^2*x1*(z1^2*x2 - z2^2*x1)^2 - x_out */ 874 felem_diff(ftmp2, x_out); 1072 felem z1, z2, x_in, y_in, x_out, y_out; local 1147 felem x_in, y_in, z_in, x_out, y_out, z_out; local [all...] |
p256-64.c | 981 * Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed. 982 * while x_out == y_in is not (maybe this works, but it's not tested). */ 983 static void point_double(felem x_out, felem y_out, felem z_out, 1024 felem_reduce(x_out, tmp); 1028 felem_diff(x_out, ftmp); 1029 /* x_out[i] < 2^105 + 2^101 < 2^106 */ 1045 felem_diff_zero107(beta, x_out); 1061 static void point_double_small(smallfelem x_out, smallfelem y_out, 1072 felem_shrink(x_out, felem_x_out); 1109 felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, ftmp6, x_out, y_out, z_out local 1653 smallfelem x_out, y_out; local 1727 felem x_out, y_out, z_out; local [all...] |
/packages/apps/Camera2/jni/ |
jpegutil.h | 65 void Map(int x, int y, int* x_out, int* y_out) const;
|
jpegutil.cpp | 131 void jpegutil::Transform::Map(int x, int y, int* x_out, int* y_out) const { 136 *x_out = x * mat00_ + y * mat01_ + orig_x_;
|
/external/opencv3/modules/cudastereo/src/cuda/ |
stereocsbp.cu | 225 int x_out = blockIdx.x; 233 int x0 = x_out << level; 262 T* data_cost = (T*)ctemp + y_out * msg_step + x_out; 402 int x_out = blockIdx.x; 408 const T* selected_disparity = selected_disp_pyr + y_out/2 * msg_step + x_out/2; 409 T* data_cost = data_cost_ + y_out * msg_step + x_out; 415 int x0 = x_out << level; [all...] |
/external/freetype/src/pshinter/ |
pshalgo.c | 929 FT_Pos x_out, 944 ax = x_out; 952 ax = x_out + x_in; [all...] |
/external/opencv3/3rdparty/libwebp/enc/ |
picture.c | 571 #define RGB_TO_UV0(x_in, x_out, y, SUM) { \ 573 const int dst = (x_out) + (y) * picture->uv0_stride; \ [all...] |