Home
last modified time | relevance | path

Searched refs:x_out (Results 1 – 10 of 10) sorted by relevance

/external/webp/src/dsp/
Drescaler_neon.c60 int x_out; in RescalerExportRowExpand() local
73 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand()
74 LOAD_32x4(frow + x_out + 0, A0); in RescalerExportRowExpand()
75 LOAD_32x4(frow + x_out + 4, A1); in RescalerExportRowExpand()
81 vst1_u8(dst + x_out, D); in RescalerExportRowExpand()
83 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand()
84 const uint32_t J = frow[x_out]; in RescalerExportRowExpand()
87 dst[x_out] = v; in RescalerExportRowExpand()
92 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand()
94 Interpolate(frow + x_out + 0, irow + x_out + 0, A, B); in RescalerExportRowExpand()
[all …]
Drescaler.c36 int x_out = channel; in WebPRescalerImportRowExpandC() local
43 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRowExpandC()
44 x_out += x_stride; in WebPRescalerImportRowExpandC()
45 if (x_out >= x_out_max) break; in WebPRescalerImportRowExpandC()
67 int x_out = channel; in WebPRescalerImportRowShrinkC() local
70 while (x_out < x_out_max) { in WebPRescalerImportRowShrinkC()
82 wrk->frow[x_out] = sum * wrk->x_sub - frac; in WebPRescalerImportRowShrinkC()
86 x_out += x_stride; in WebPRescalerImportRowShrinkC()
96 int x_out; in WebPRescalerExportRowExpandC() local
106 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpandC()
[all …]
Drescaler_sse2.c229 int x_out; in RescalerExportRowExpandSSE2() local
240 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpandSSE2()
242 LoadDispatchAndMult(frow + x_out, NULL, &A0, &A1, &A2, &A3); in RescalerExportRowExpandSSE2()
243 ProcessRow(&A0, &A1, &A2, &A3, &mult, dst + x_out); in RescalerExportRowExpandSSE2()
245 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpandSSE2()
246 const uint32_t J = frow[x_out]; in RescalerExportRowExpandSSE2()
249 dst[x_out] = v; in RescalerExportRowExpandSSE2()
257 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpandSSE2()
259 LoadDispatchAndMult(frow + x_out, &mA, &A0, &A1, &A2, &A3); in RescalerExportRowExpandSSE2()
260 LoadDispatchAndMult(irow + x_out, &mB, &B0, &B1, &B2, &B3); in RescalerExportRowExpandSSE2()
[all …]
Drescaler_mips32.c100 int x_out = channel; in ImportRowExpand() local
134 [x_out]"+r"(x_out), [frac]"=&r"(frac), [frow]"+r"(frow) in ImportRowExpand()
/external/opencv3/3rdparty/libwebp/utils/
Drescaler.c59 int x_out; in WebPRescalerImportRow() local
63 for (x_out = channel; x_out < x_out_max; x_out += x_stride) { in WebPRescalerImportRow()
73 wrk->frow[x_out] = (sum + base) * wrk->x_sub - frac; in WebPRescalerImportRow()
80 for (x_out = channel; x_out < x_out_max; x_out += x_stride) { in WebPRescalerImportRow()
87 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRow()
92 for (x_out = channel; x_out < x_out_max; x_out += x_stride) { in WebPRescalerImportRow()
93 wrk->irow[x_out] += wrk->frow[x_out]; in WebPRescalerImportRow()
99 int x_out; in WebPRescalerExportRow() local
106 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRow()
107 const int frac = (int)MULT_FIX(frow[x_out], yscale); in WebPRescalerExportRow()
[all …]
/external/boringssl/src/crypto/ec/
Dp224-64.c669 static void point_double(felem x_out, felem y_out, felem z_out, in point_double() argument
708 felem_reduce(x_out, tmp); in point_double()
725 felem_diff(beta, x_out); in point_double()
756 felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, x_out, y_out, z_out; in point_add() local
871 felem_reduce(x_out, tmp2); in point_add()
874 felem_diff(ftmp2, x_out); in point_add()
891 copy_conditional(x_out, x2, z1_is_zero); in point_add()
892 copy_conditional(x_out, x1, z2_is_zero); in point_add()
897 felem_assign(x3, x_out); in point_add()
937 static void batch_mul(felem x_out, felem y_out, felem z_out, in batch_mul() argument
[all …]
Dp256-64.c983 static void point_double(felem x_out, felem y_out, felem z_out, in point_double() argument
1024 felem_reduce(x_out, tmp); in point_double()
1028 felem_diff(x_out, ftmp); in point_double()
1045 felem_diff_zero107(beta, x_out); in point_double()
1061 static void point_double_small(smallfelem x_out, smallfelem y_out, in point_double_small() argument
1072 felem_shrink(x_out, felem_x_out); in point_double_small()
1109 felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, ftmp6, x_out, y_out, z_out; in point_add() local
1232 felem_reduce(x_out, tmp); in point_add()
1237 felem_diff(x_out, ftmp4); in point_add()
1241 felem_diff_zero107(ftmp3, x_out); in point_add()
[all …]
/external/opencv3/modules/cudastereo/src/cuda/
Dstereocsbp.cu225 int x_out = blockIdx.x; in init_data_cost_reduce() local
233 int x0 = x_out << level; in init_data_cost_reduce()
262 T* data_cost = (T*)ctemp + y_out * msg_step + x_out; in init_data_cost_reduce()
402 int x_out = blockIdx.x; in compute_data_cost_reduce() local
408 const T* selected_disparity = selected_disp_pyr + y_out/2 * msg_step + x_out/2; in compute_data_cost_reduce()
409 T* data_cost = data_cost_ + y_out * msg_step + x_out; in compute_data_cost_reduce()
415 int x0 = x_out << level; in compute_data_cost_reduce()
/external/freetype/src/pshinter/
Dpshalgo.c929 FT_Pos x_out, in psh_corner_is_flat() argument
944 ax = x_out; in psh_corner_is_flat()
952 ax = x_out + x_in; in psh_corner_is_flat()
/external/opencv3/3rdparty/libwebp/enc/
Dpicture.c571 #define RGB_TO_UV0(x_in, x_out, y, SUM) { \ argument
573 const int dst = (x_out) + (y) * picture->uv0_stride; \