Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Drescaler_neon.c64 int x_out; in RescalerExportRowExpand_NEON() local
77 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand_NEON()
78 LOAD_32x4(frow + x_out + 0, A0); in RescalerExportRowExpand_NEON()
79 LOAD_32x4(frow + x_out + 4, A1); in RescalerExportRowExpand_NEON()
85 vst1_u8(dst + x_out, D); in RescalerExportRowExpand_NEON()
87 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_NEON()
88 const uint32_t J = frow[x_out]; in RescalerExportRowExpand_NEON()
90 dst[x_out] = (v > 255) ? 255u : (uint8_t)v; in RescalerExportRowExpand_NEON()
95 for (x_out = 0; x_out < max_span; x_out += 8) { in RescalerExportRowExpand_NEON()
97 Interpolate_NEON(frow + x_out + 0, irow + x_out + 0, A, B); in RescalerExportRowExpand_NEON()
[all …]
Drescaler.c38 int x_out = channel; in WebPRescalerImportRowExpand_C() local
45 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum; in WebPRescalerImportRowExpand_C()
46 x_out += x_stride; in WebPRescalerImportRowExpand_C()
47 if (x_out >= x_out_max) break; in WebPRescalerImportRowExpand_C()
70 int x_out = channel; in WebPRescalerImportRowShrink_C() local
73 while (x_out < x_out_max) { in WebPRescalerImportRowShrink_C()
85 wrk->frow[x_out] = sum * wrk->x_sub - frac; in WebPRescalerImportRowShrink_C()
89 x_out += x_stride; in WebPRescalerImportRowShrink_C()
99 int x_out; in WebPRescalerExportRowExpand_C() local
109 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpand_C()
[all …]
Drescaler_sse2.c229 int x_out; in RescalerExportRowExpand_SSE2() local
240 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2()
242 LoadDispatchAndMult_SSE2(frow + x_out, NULL, &A0, &A1, &A2, &A3); in RescalerExportRowExpand_SSE2()
243 ProcessRow_SSE2(&A0, &A1, &A2, &A3, &mult, dst + x_out); in RescalerExportRowExpand_SSE2()
245 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2()
246 const uint32_t J = frow[x_out]; in RescalerExportRowExpand_SSE2()
248 dst[x_out] = (v > 255) ? 255u : (uint8_t)v; in RescalerExportRowExpand_SSE2()
256 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2()
258 LoadDispatchAndMult_SSE2(frow + x_out, &mA, &A0, &A1, &A2, &A3); in RescalerExportRowExpand_SSE2()
259 LoadDispatchAndMult_SSE2(irow + x_out, &mB, &B0, &B1, &B2, &B3); in RescalerExportRowExpand_SSE2()
[all …]
Drescaler_msa.c135 int x_out; in ExportRowExpand_0() local
166 for (x_out = 0; x_out < length; ++x_out) { in ExportRowExpand_0()
167 const uint32_t J = frow[x_out]; in ExportRowExpand_0()
169 dst[x_out] = (v > 255) ? 255u : (uint8_t)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()
243 dst[x_out] = (v > 255) ? 255u : (uint8_t)v; in ExportRowExpand_1()
292 int x_out;
[all …]
Drescaler_mips32.c102 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/
Ddepthtospace_op_test.py74 x_out = [[[[1], [2]], [[3], [4]]]]
75 self._testOne(x_np, block_size, x_out)
81 x_out = [[[[1], [2]], [[3], [4]]]]
82 self._testOne(x_np, block_size, x_out, dtype=dtypes.float16)
93 x_out = [[[[1], [2], [5], [6]],
97 self._testOne(x_np, block_size, x_out)
114 x_out = [batch_output_elt(i) for i in range(batch_size)]
115 self._testOne(x_np, block_size, x_out)
121 x_out = array_ops.ones([batch_size, 4, 6, 3])
126 self.assertAllEqual(x_tf.shape, x_out.shape)
[all …]
Dspacetodepth_op_test.py60 x_out = [[[[1, 2, 3, 4]]]]
62 self._testOne(x_np, block_size, x_out, dtype=dtype)
71 x_out = [[[[1, 2, 3, 4], [5, 6, 7, 8]], [[9, 10, 11, 12],
73 self._testOne(x_np, block_size, x_out)
81 x_out = [[[[1, 2, 5, 6, 3, 4, 7, 8, 9, 10, 13, 14, 11, 12, 15, 16]]]]
82 self._testOne(x_np, block_size, x_out)
89 x_out = [[[[1, 10, 2, 20, 3, 30, 4, 40]]]]
90 self._testOne(x_np, block_size, x_out)
97 x_out = [[[[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]]]]
98 self._testOne(x_np, block_size, x_out)
[all …]
Dspacetobatch_op_test.py127 x_out = [[[[1]]], [[[2]]], [[[3]]], [[[4]]]]
128 self._testOne(x_np, block_size, x_out)
136 x_out = [[[[0]]], [[[0]]], [[[0]]], [[[0]]], [[[1]]], [[[2]]], [[[0]]],
138 self._testPad(x_np, paddings, block_size, x_out)
146 x_out = [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]]
147 self._testOne(x_np, block_size, x_out)
156 x_out = [[[[1], [3]], [[9], [11]]], [[[2], [4]], [[10], [12]]],
158 self._testOne(x_np, block_size, x_out)
167 x_out = [[[[1], [3]]], [[[9], [11]]], [[[2], [4]]], [[[10], [12]]],
169 self._testOne(x_np, block_size, x_out)
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dspacetobatch_op_test.py95 x_out = [[[[1]]], [[[2]]], [[[3]]], [[[4]]]]
96 self._testOne(x_np, block_size, x_out)
103 x_out = [[[[0]]], [[[0]]], [[[0]]], [[[0]]], [[[1]]], [[[2]]], [[[0]]],
105 self._testPad(x_np, paddings, block_size, x_out)
112 x_out = [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]]
113 self._testOne(x_np, block_size, x_out)
121 x_out = [[[[1], [3]], [[9], [11]]], [[[2], [4]], [[10], [12]]],
123 self._testOne(x_np, block_size, x_out)
131 x_out = [[[[1], [3]]], [[[9], [11]]], [[[2], [4]]], [[[10], [12]]],
133 self._testOne(x_np, block_size, x_out)
[all …]
/external/rust/crates/ring/src/ec/suite_b/
Dprivate_key.rs143 let (x_out, y_out) = (&mut public_out[1..]).split_at_mut(elem_and_scalar_bytes); in public_from_private()
147 big_endian_affine_from_jacobian(ops, Some(x_out), Some(y_out), &my_public_key) in public_from_private()
187 x_out: Option<&mut [u8]>, in big_endian_affine_from_jacobian()
193 if let Some(x_out) = x_out { in big_endian_affine_from_jacobian()
195 limb::big_endian_from_limbs(&x.limbs[..num_limbs], x_out); in big_endian_affine_from_jacobian()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/
Dp256.c192 static void fiat_p256_point_double(fiat_p256_felem x_out, fiat_p256_felem y_out, in fiat_p256_point_double() argument
214 fiat_p256_square(x_out, alpha); in fiat_p256_point_double()
218 fiat_p256_sub(x_out, x_out, tmptmp); in fiat_p256_point_double()
227 fiat_p256_sub(y_out, fourbeta, x_out); in fiat_p256_point_double()
256 fiat_p256_felem x_out, y_out, z_out; in fiat_p256_point_add() local
343 fiat_p256_square(x_out, r); in fiat_p256_point_add()
344 fiat_p256_sub(x_out, x_out, j); in fiat_p256_point_add()
345 fiat_p256_sub(x_out, x_out, v); in fiat_p256_point_add()
346 fiat_p256_sub(x_out, x_out, v); in fiat_p256_point_add()
349 fiat_p256_sub(y_out, v, x_out); in fiat_p256_point_add()
[all …]
Dec_montgomery.c262 EC_FELEM x_out, y_out, z_out; in ec_GFp_mont_add() local
339 ec_GFp_mont_felem_sqr(group, &x_out, &r); in ec_GFp_mont_add()
340 ec_felem_sub(group, &x_out, &x_out, &j); in ec_GFp_mont_add()
341 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
342 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
345 ec_felem_sub(group, &y_out, &v, &x_out); in ec_GFp_mont_add()
352 ec_felem_select(group, &x_out, z1nz, &x_out, &b->X); in ec_GFp_mont_add()
353 ec_felem_select(group, &out->X, z2nz, &x_out, &a->X); in ec_GFp_mont_add()
Dp224-64.c608 static void p224_point_double(p224_felem x_out, p224_felem y_out, in p224_point_double() argument
648 p224_felem_reduce(x_out, tmp); in p224_point_double()
665 p224_felem_diff(beta, x_out); in p224_point_double()
698 p224_felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, x_out, y_out, z_out; in p224_point_add() local
815 p224_felem_reduce(x_out, tmp2); in p224_point_add()
818 p224_felem_diff(ftmp2, x_out); in p224_point_add()
835 p224_copy_conditional(x_out, x2, z1_is_zero); in p224_point_add()
836 p224_copy_conditional(x_out, x1, z2_is_zero); in p224_point_add()
841 p224_felem_assign(x3, x_out); in p224_point_add()
894 p224_felem x_in, x_out; in ec_GFp_nistp224_point_get_affine_coordinates() local
[all …]
/external/boringssl/src/crypto/fipsmodule/ec/
Dp256.c192 static void fiat_p256_point_double(fiat_p256_felem x_out, fiat_p256_felem y_out, in fiat_p256_point_double() argument
214 fiat_p256_square(x_out, alpha); in fiat_p256_point_double()
218 fiat_p256_sub(x_out, x_out, tmptmp); in fiat_p256_point_double()
227 fiat_p256_sub(y_out, fourbeta, x_out); in fiat_p256_point_double()
256 fiat_p256_felem x_out, y_out, z_out; in fiat_p256_point_add() local
343 fiat_p256_square(x_out, r); in fiat_p256_point_add()
344 fiat_p256_sub(x_out, x_out, j); in fiat_p256_point_add()
345 fiat_p256_sub(x_out, x_out, v); in fiat_p256_point_add()
346 fiat_p256_sub(x_out, x_out, v); in fiat_p256_point_add()
349 fiat_p256_sub(y_out, v, x_out); in fiat_p256_point_add()
[all …]
Dec_montgomery.c262 EC_FELEM x_out, y_out, z_out; in ec_GFp_mont_add() local
339 ec_GFp_mont_felem_sqr(group, &x_out, &r); in ec_GFp_mont_add()
340 ec_felem_sub(group, &x_out, &x_out, &j); in ec_GFp_mont_add()
341 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
342 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
345 ec_felem_sub(group, &y_out, &v, &x_out); in ec_GFp_mont_add()
352 ec_felem_select(group, &x_out, z1nz, &x_out, &b->X); in ec_GFp_mont_add()
353 ec_felem_select(group, &out->X, z2nz, &x_out, &a->X); in ec_GFp_mont_add()
Dp224-64.c608 static void p224_point_double(p224_felem x_out, p224_felem y_out, in p224_point_double() argument
648 p224_felem_reduce(x_out, tmp); in p224_point_double()
665 p224_felem_diff(beta, x_out); in p224_point_double()
698 p224_felem ftmp, ftmp2, ftmp3, ftmp4, ftmp5, x_out, y_out, z_out; in p224_point_add() local
815 p224_felem_reduce(x_out, tmp2); in p224_point_add()
818 p224_felem_diff(ftmp2, x_out); in p224_point_add()
835 p224_copy_conditional(x_out, x2, z1_is_zero); in p224_point_add()
836 p224_copy_conditional(x_out, x1, z2_is_zero); in p224_point_add()
841 p224_felem_assign(x3, x_out); in p224_point_add()
894 p224_felem x_in, x_out; in ec_GFp_nistp224_point_get_affine_coordinates() local
[all …]
/external/webrtc/modules/audio_processing/aec3/
Daec3_fft_unittest.cc162 std::array<float, kFftLength> x_out; in TEST() local
172 fft.Ifft(X, &x_out); in TEST()
173 for (size_t j = 0; j < x_out.size(); ++j) { in TEST()
174 EXPECT_NEAR(x_ref[j], x_out[j], 0.1f); in TEST()
184 std::array<float, kFftLength> x_out; in TEST() local
203 fft.Ifft(X, &x_out); in TEST()
205 for (size_t j = 0; j < x_out.size(); ++j) { in TEST()
206 EXPECT_NEAR(x_ref[j], x_out[j], 0.1f); in TEST()
/external/llvm-project/flang/test/Semantics/
Dblockconstruct01.f9024 integer x_in, x_out local
28 intent(out) x_out
/external/mesa3d/src/intel/blorp/
Dblorp_blit.c378 nir_ssa_def *x_out = nir_imm_int(b, 0); in blorp_nir_encode_msaa() local
391 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 1); in blorp_nir_encode_msaa()
392 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa()
393 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa()
409 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa()
410 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa()
411 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa()
412 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa()
425 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa()
426 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa()
[all …]
/external/libxaac/decoder/
Dixheaacd_esbr_fft.c1092 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/tensorflow/tensorflow/python/eager/
Dwrap_function_test.py75 x_out = []
80 x_out.append(xx)
86 f_pruned = f_wrapped.prune(x_in[0], [x_out[0]])
92 x_out = []
97 x_out.append(xx)
105 f_pruned = f_wrapped.prune(x_in[0], x_out[0])
/external/tensorflow/tensorflow/python/saved_model/
Dload_test.py234 x_out = []
243 x_out.append(xx)
248 f_pruned = f_wrapped.prune(x_in[0], [x_out[0]])