/external/webp/src/dsp/ |
D | rescaler_neon.c | 60 int x_out; in RescalerExportRowExpand_NEON() local 73 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand_NEON() 74 LOAD_32x4(frow + x_out + 0, A0); in RescalerExportRowExpand_NEON() 75 LOAD_32x4(frow + x_out + 4, A1); in RescalerExportRowExpand_NEON() 81 vst1_u8(dst + x_out, D); in RescalerExportRowExpand_NEON() 83 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_NEON() 84 const uint32_t J = frow[x_out]; in RescalerExportRowExpand_NEON() 87 dst[x_out] = v; in RescalerExportRowExpand_NEON() 92 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand_NEON() 94 Interpolate_NEON(frow + x_out + 0, irow + x_out + 0, A, B); in RescalerExportRowExpand_NEON() [all …]
|
D | rescaler.c | 37 int x_out = channel; in WebPRescalerImportRowExpand_C() local 44 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRowExpand_C() 45 x_out += x_stride; in WebPRescalerImportRowExpand_C() 46 if (x_out >= x_out_max) break; in WebPRescalerImportRowExpand_C() 69 int x_out = channel; in WebPRescalerImportRowShrink_C() local 72 while (x_out < x_out_max) { in WebPRescalerImportRowShrink_C() 84 wrk->frow[x_out] = sum * wrk->x_sub - frac; in WebPRescalerImportRowShrink_C() 88 x_out += x_stride; in WebPRescalerImportRowShrink_C() 98 int x_out; in WebPRescalerExportRowExpand_C() local 108 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpand_C() [all …]
|
D | rescaler_sse2.c | 230 int x_out; in RescalerExportRowExpand_SSE2() local 241 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2() 243 LoadDispatchAndMult_SSE2(frow + x_out, NULL, &A0, &A1, &A2, &A3); in RescalerExportRowExpand_SSE2() 244 ProcessRow_SSE2(&A0, &A1, &A2, &A3, &mult, dst + x_out); in RescalerExportRowExpand_SSE2() 246 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2() 247 const uint32_t J = frow[x_out]; in RescalerExportRowExpand_SSE2() 250 dst[x_out] = v; in RescalerExportRowExpand_SSE2() 258 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2() 260 LoadDispatchAndMult_SSE2(frow + x_out, &mA, &A0, &A1, &A2, &A3); in RescalerExportRowExpand_SSE2() 261 LoadDispatchAndMult_SSE2(irow + x_out, &mB, &B0, &B1, &B2, &B3); in RescalerExportRowExpand_SSE2() [all …]
|
D | rescaler_msa.c | 134 int x_out; in ExportRowExpand_0() local 165 for (x_out = 0; x_out < length; ++x_out) { in ExportRowExpand_0() 166 const uint32_t J = frow[x_out]; in ExportRowExpand_0() 169 dst[x_out] = v; in ExportRowExpand_0() 201 int x_out; in ExportRowExpand_1() local 238 for (x_out = 0; x_out < length; ++x_out) { in ExportRowExpand_1() 239 const uint64_t I = (uint64_t)A * frow[x_out] in ExportRowExpand_1() 240 + (uint64_t)B * irow[x_out]; in ExportRowExpand_1() 244 dst[x_out] = v; in ExportRowExpand_1() 292 int x_out; in ExportRowShrink_0() local [all …]
|
D | rescaler_mips32.c | 102 int x_out = channel; in ImportRowExpand_MIPS32() local 136 [x_out]"+r"(x_out), [frac]"=&r"(frac), [frow]"+r"(frow) in ImportRowExpand_MIPS32()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | depthtospace_op_test.py | 59 x_out = [[[[1], [2]], [[3], [4]]]] 60 self._testOne(x_np, block_size, x_out) 70 x_out = [[[[1], [2], [5], [6]], 74 self._testOne(x_np, block_size, x_out) 90 x_out = [batch_output_elt(i) for i in range(batch_size)] 91 self._testOne(x_np, block_size, x_out) 99 x_out = [[[[1, 10], [2, 20]], 105 self._testOne(x_np, block_size, x_out) 112 x_out = [[[[1], [2], [5], [6]], 116 self._testOne(x_np, block_size, x_out) [all …]
|
D | spacetodepth_op_test.py | 58 x_out = [[[[1, 2, 3, 4]]]] 59 self._testOne(x_np, block_size, x_out) 67 x_out = [[[[1, 2, 3, 4], [5, 6, 7, 8]], [[9, 10, 11, 12], 69 self._testOne(x_np, block_size, x_out) 77 x_out = [[[[1, 2, 5, 6, 3, 4, 7, 8, 9, 10, 13, 14, 11, 12, 15, 16]]]] 78 self._testOne(x_np, block_size, x_out) 85 x_out = [[[[1, 10, 2, 20, 3, 30, 4, 40]]]] 86 self._testOne(x_np, block_size, x_out) 93 x_out = [[[[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]]]] 94 self._testOne(x_np, block_size, x_out) [all …]
|
D | spacetobatch_op_test.py | 121 x_out = [[[[1]]], [[[2]]], [[[3]]], [[[4]]]] 122 self._testOne(x_np, block_size, x_out) 129 x_out = [[[[0]]], [[[0]]], [[[0]]], [[[0]]], [[[1]]], [[[2]]], [[[0]]], 131 self._testPad(x_np, paddings, block_size, x_out) 138 x_out = [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]] 139 self._testOne(x_np, block_size, x_out) 147 x_out = [[[[1], [3]], [[9], [11]]], [[[2], [4]], [[10], [12]]], 149 self._testOne(x_np, block_size, x_out) 157 x_out = [[[[1], [3]]], [[[9], [11]]], [[[2], [4]]], [[[10], [12]]], 159 self._testOne(x_np, block_size, x_out) [all …]
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | spacetobatch_op_test.py | 94 x_out = [[[[1]]], [[[2]]], [[[3]]], [[[4]]]] 95 self._testOne(x_np, block_size, x_out) 102 x_out = [[[[0]]], [[[0]]], [[[0]]], [[[0]]], [[[1]]], [[[2]]], [[[0]]], 104 self._testPad(x_np, paddings, block_size, x_out) 111 x_out = [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]] 112 self._testOne(x_np, block_size, x_out) 120 x_out = [[[[1], [3]], [[9], [11]]], [[[2], [4]], [[10], [12]]], 122 self._testOne(x_np, block_size, x_out) 130 x_out = [[[[1], [3]]], [[[9], [11]]], [[[2], [4]]], [[[10], [12]]], 132 self._testOne(x_np, block_size, x_out) [all …]
|
/external/libconstrainedcrypto/ |
D | p256_ec.c | 804 static void point_double(felem x_out, felem y_out, felem z_out, const felem x, in point_double() argument 823 felem_square(x_out, alpha); in point_double() 824 felem_diff(x_out, x_out, beta); in point_double() 825 felem_diff(x_out, x_out, beta); in point_double() 827 felem_diff(tmp, beta, x_out); in point_double() 841 static void point_add_mixed(felem x_out, felem y_out, felem z_out, in point_add_mixed() argument 862 felem_diff(x_out, rr, j); in point_add_mixed() 863 felem_diff(x_out, x_out, v); in point_add_mixed() 864 felem_diff(x_out, x_out, v); in point_add_mixed() 866 felem_diff(tmp, v, x_out); in point_add_mixed() [all …]
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | p224-64.c | 640 static void p224_point_double(p224_felem x_out, p224_felem y_out, in p224_point_double() argument 680 p224_felem_reduce(x_out, tmp); in p224_point_double() 697 p224_felem_diff(beta, x_out); in p224_point_double() 730 p224_felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, x_out, y_out, z_out; in p224_point_add() local 845 p224_felem_reduce(x_out, tmp2); in p224_point_add() 848 p224_felem_diff(ftmp2, x_out); in p224_point_add() 865 p224_copy_conditional(x_out, x2, z1_is_zero); in p224_point_add() 866 p224_copy_conditional(x_out, x1, z2_is_zero); in p224_point_add() 871 p224_felem_assign(x3, x_out); in p224_point_add() 911 static void p224_batch_mul(p224_felem x_out, p224_felem y_out, p224_felem z_out, in p224_batch_mul() argument [all …]
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_blit.c | 414 nir_ssa_def *x_out = nir_imm_int(b, 0); in blorp_nir_encode_msaa() local 427 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 1); in blorp_nir_encode_msaa() 428 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa() 429 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa() 445 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa() 446 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa() 447 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa() 448 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa() 461 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa() 462 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa() [all …]
|
/external/libxaac/decoder/ |
D | ixheaacd_esbr_fft.c | 1092 void ixheaacd_real_synth_fft_p3(FLOAT32 *x_in, FLOAT32 *x_out, WORD32 npoints) { in ixheaacd_real_synth_fft_p3() argument 1147 x_out[i] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1148 x_out[i + 1] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1149 x_out[16 + i] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1150 x_out[16 + i + 1] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1151 x_out[32 + i] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1152 x_out[32 + i + 1] = *ptr_y++; in ixheaacd_real_synth_fft_p3() 1156 void ixheaacd_cmplx_anal_fft_p3(FLOAT32 *x_in, FLOAT32 *x_out, WORD32 npoints) { in ixheaacd_cmplx_anal_fft_p3() argument 1210 x_out[i] = *y_p3++; in ixheaacd_cmplx_anal_fft_p3() 1211 x_out[i + 1] = *y_p3++; in ixheaacd_cmplx_anal_fft_p3() [all …]
|
/external/boringssl/src/third_party/fiat/ |
D | p256.c | 1006 static void point_double(fe x_out, fe y_out, fe z_out, in point_double() argument 1025 fe_sqr(x_out, alpha); in point_double() 1029 fe_sub(x_out, x_out, tmptmp); in point_double() 1038 fe_sub(y_out, fourbeta, x_out); in point_double() 1063 fe x_out, y_out, z_out; in point_add() local 1139 fe_sqr(x_out, r); in point_add() 1140 fe_sub(x_out, x_out, j); in point_add() 1141 fe_sub(x_out, x_out, v); in point_add() 1142 fe_sub(x_out, x_out, v); in point_add() 1145 fe_sub(y_out, v, x_out); in point_add() [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | distribution_util_test.py | 417 x_out, x_pad_out = sess.run([x, x_pad]) 420 self.assertAllEqual(x_out.reshape([-1]), x_pad_out.reshape([-1])) 432 x_out, x_pad_out = sess.run([x, x_pad]) 435 self.assertAllEqual(x_out.reshape([-1]), x_pad_out.reshape([-1]))
|