Home
last modified time | relevance | path

Searched refs:x_out (Results 1 – 19 of 19) 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.py60 x_out = [[[[1], [2]], [[3], [4]]]]
61 self._testOne(x_np, block_size, x_out)
67 x_out = [[[[1], [2]], [[3], [4]]]]
68 self._testOne(x_np, block_size, x_out, dtype=dtypes.float16)
79 x_out = [[[[1], [2], [5], [6]],
83 self._testOne(x_np, block_size, x_out)
100 x_out = [batch_output_elt(i) for i in range(batch_size)]
101 self._testOne(x_np, block_size, x_out)
107 x_out = array_ops.ones([batch_size, 4, 6, 3])
112 self.assertAllEqual(x_tf.shape, x_out.shape)
[all …]
Dspacetodepth_op_test.py59 x_out = [[[[1, 2, 3, 4]]]]
61 self._testOne(x_np, block_size, x_out, dtype=dtype)
70 x_out = [[[[1, 2, 3, 4], [5, 6, 7, 8]], [[9, 10, 11, 12],
72 self._testOne(x_np, block_size, x_out)
80 x_out = [[[[1, 2, 5, 6, 3, 4, 7, 8, 9, 10, 13, 14, 11, 12, 15, 16]]]]
81 self._testOne(x_np, block_size, x_out)
88 x_out = [[[[1, 10, 2, 20, 3, 30, 4, 40]]]]
89 self._testOne(x_np, block_size, x_out)
96 x_out = [[[[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]]]]
97 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/boringssl/src/third_party/fiat/
Dp256.c208 static void point_double(fe x_out, fe y_out, fe z_out, in point_double() argument
227 fe_sqr(x_out, alpha); in point_double()
231 fe_sub(x_out, x_out, tmptmp); in point_double()
240 fe_sub(y_out, fourbeta, x_out); in point_double()
265 fe x_out, y_out, z_out; in point_add() local
341 fe_sqr(x_out, r); in point_add()
342 fe_sub(x_out, x_out, j); in point_add()
343 fe_sub(x_out, x_out, v); in point_add()
344 fe_sub(x_out, x_out, v); in point_add()
347 fe_sub(y_out, v, x_out); in point_add()
[all …]
/external/boringssl/src/crypto/fipsmodule/ec/
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
813 p224_felem_reduce(x_out, tmp2); in p224_point_add()
816 p224_felem_diff(ftmp2, x_out); in p224_point_add()
833 p224_copy_conditional(x_out, x2, z1_is_zero); in p224_point_add()
834 p224_copy_conditional(x_out, x1, z2_is_zero); in p224_point_add()
839 p224_felem_assign(x3, x_out); in p224_point_add()
879 static void p224_batch_mul(p224_felem x_out, p224_felem y_out, p224_felem z_out, in p224_batch_mul() argument
[all …]
Dec_montgomery.c228 EC_FELEM x_out, y_out, z_out; in ec_GFp_mont_add() local
304 ec_GFp_mont_felem_sqr(group, &x_out, &r); in ec_GFp_mont_add()
305 ec_felem_sub(group, &x_out, &x_out, &j); in ec_GFp_mont_add()
306 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
307 ec_felem_sub(group, &x_out, &x_out, &v); in ec_GFp_mont_add()
310 ec_felem_sub(group, &y_out, &v, &x_out); in ec_GFp_mont_add()
317 ec_felem_select(group, &x_out, z1nz, &x_out, &b->X); in ec_GFp_mont_add()
318 ec_felem_select(group, &out->X, z2nz, &x_out, &a->X); in ec_GFp_mont_add()
/external/mesa3d/src/intel/blorp/
Dblorp_blit.c424 nir_ssa_def *x_out = nir_imm_int(b, 0); in blorp_nir_encode_msaa() local
437 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 1); in blorp_nir_encode_msaa()
438 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa()
439 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa()
455 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa()
456 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa()
457 x_out = nir_mask_shift_or(b, x_out, s_in, 0x1, 1); in blorp_nir_encode_msaa()
458 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0); in blorp_nir_encode_msaa()
471 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2); in blorp_nir_encode_msaa()
472 x_out = nir_mask_shift_or(b, x_out, s_in, 0x4, 0); in blorp_nir_encode_msaa()
[all …]
/external/tensorflow/tensorflow/contrib/eager/python/examples/l2hmc/
Dl2hmc_test.py111 x_, v_, x_accept_prob, x_out = dynamics.apply_transition(samples)
114 self.assertEqual(x_out.shape, samples.shape)
115 self.assertEqual(x_.shape, x_out.shape)
127 x_, v_, x_accept_prob, x_out = dynamics.apply_transition(x)
133 [x_, v_, x_accept_prob, x_out], feed_dict={x: samples})
Dl2hmc.py332 x_, _, x_accept_prob, x_out = dynamics.apply_transition(x)
342 return loss, x_out, x_accept_prob
/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/epid-sdk/epid/common/math/src/
Dpairing.c84 static EpidStatus PiOp(PairingState* ps, FfElement* x_out, FfElement* y_out,
90 static EpidStatus Line(FiniteField* gt, FfElement* f, FfElement* x_out,
97 static EpidStatus Tangent(FiniteField* gt, FfElement* f, FfElement* x_out,
809 static EpidStatus PiOp(PairingState* ps, FfElement* x_out, FfElement* y_out, in PiOp() argument
818 if (!ps || !x_out || !y_out || !x || !y) { in PiOp()
840 sts = ippsGFpCpyElement(x->ipp_ff_elem, x_out->ipp_ff_elem, Fq2); in PiOp()
847 sts = ippsGFpConj(x_out->ipp_ff_elem, x_out->ipp_ff_elem, Fq2); in PiOp()
854 sts = ippsGFpMul(x_out->ipp_ff_elem, ps->g[e - 1][1]->ipp_ff_elem, in PiOp()
855 x_out->ipp_ff_elem, Fq2); in PiOp()
988 static EpidStatus Line(FiniteField* gt, FfElement* f, FfElement* x_out, in Line() argument
[all …]
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Ddistribution_util_test.py419 x_out, x_pad_out = sess.run([x, x_pad])
422 self.assertAllEqual(x_out.reshape([-1]), x_pad_out.reshape([-1]))
434 x_out, x_pad_out = sess.run([x, x_pad])
437 self.assertAllEqual(x_out.reshape([-1]), x_pad_out.reshape([-1]))
/external/tensorflow/tensorflow/python/eager/
Dwrap_function_test.py65 x_out = []
70 x_out.append(xx)
76 f_pruned = f_wrapped.prune(x_in[0], [x_out[0]])