Searched refs:x_in (Results 1 - 12 of 12) sorted by relevance

/external/webp/src/dsp/
H A Drescaler.c36 int x_in = channel; local
40 int left = src[x_in];
41 int right = (wrk->src_width > 1) ? src[x_in + x_stride] : left;
42 x_in += x_stride;
50 x_in += x_stride;
51 assert(x_in < wrk->src_width * x_stride);
52 right = src[x_in];
68 int x_in = channel; local
77 assert(x_in < wrk->src_width * x_stride);
78 base = src[x_in];
[all...]
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dbatch_matmul_op_test.py79 def _compare(self, x_in, y_in, adjoint_a, adjoint_b, static_shape=True):
80 x_t_shape = x_in.shape[:-2] + (x_in.shape[-1], x_in.shape[-2])
82 x = x_in if not adjoint_a else x_in.reshape(x_t_shape)
150 def _checkGrad(self, x_in, y_in, adjoint_a, adjoint_b):
151 x_t_shape = x_in.shape[:-2] + (x_in.shape[-1], x_in
[all...]
/external/libxaac/decoder/
H A Dixheaacd_fwd_alias_cnx.c103 WORD32 *x_in = pstr_td_frame_data->fac_data; local
114 err = ixheaacd_acelp_mdct(x_in, fac_signal, &qshift, fac_length, ptr_scratch);
139 WORD32 ixheaacd_fr_alias_cnx_fix(WORD32 *x_in, WORD32 len, WORD32 fac_length, argument
175 err = ixheaacd_acelp_mdct(x_in, fac_data_out, preshift, fac_length,
H A Dixheaacd_esbr_fft.c1092 void ixheaacd_real_synth_fft_p3(FLOAT32 *x_in, FLOAT32 *x_out, WORD32 npoints) { argument
1104 x_3[j] = x_in[3 * j + i];
1156 void ixheaacd_cmplx_anal_fft_p3(FLOAT32 *x_in, FLOAT32 *x_out, WORD32 npoints) { argument
1161 FLOAT32 *ptr_x = x_in;
1167 x_3[j] = x_in[3 * j + i];
1168 x_3[j + 1] = x_in[3 * j + i + 1];
1174 x_in[3 * j + i] = y_3[j];
1175 x_in[3 * j + i + 1] = y_3[j + 1];
1183 x_in += 2;
1186 tmp = ((*x_in) * (*w
[all...]
H A Dixheaacd_imdct.c200 WORD32 int_aq[ORDER + 1], intzir[2 * LEN_FRAME], x_in[FAC_LENGTH]; local
268 x_in[k] = fac_data[2 * k + 1];
269 x_in[lfac / 2 + k] = fac_data[lfac - 2 * k];
272 ixheaacd_fr_alias_cnx_fix(x_in, n_long / 4, lfac, i_aq, izir, fac_idata + 16,
H A Dixheaacd_main.h214 WORD32 ixheaacd_fr_alias_cnx_fix(WORD32 *x_in, WORD32 len_subfr, WORD32 lfac,
/external/boringssl/src/crypto/fipsmodule/ec/
H A Dp224-64.c638 // Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed,
641 p224_felem z_out, const p224_felem x_in,
646 p224_felem_assign(ftmp, x_in);
647 p224_felem_assign(ftmp2, x_in);
658 p224_felem_mul(tmp, x_in, gamma);
1001 p224_felem z1, z2, x_in, y_in, x_out, y_out; local
1009 if (!p224_BN_to_felem(x_in, &point->X) ||
1020 p224_felem_mul(tmp, x_in, z1);
1021 p224_felem_reduce(x_in, tmp);
1022 p224_felem_contract(x_out, x_in);
640 p224_point_double(p224_felem x_out, p224_felem y_out, p224_felem z_out, const p224_felem x_in, const p224_felem y_in, const p224_felem z_in) argument
1049 p224_felem x_in, y_in, z_in, x_out, y_out, z_out; local
[all...]
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dflow_cache.h142 const float x_in = valid_box.left_ + local
150 const bool success = FindNewPositionOfPoint(x_in, y_in,
/external/mesa3d/src/intel/blorp/
H A Dblorp_blit.c409 nir_ssa_def *x_in = nir_channel(b, pos, 0); local
427 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 1);
429 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0);
445 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2);
448 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0);
461 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffe, 2);
464 x_out = nir_mask_shift_or(b, x_out, x_in, 0x1, 0);
510 nir_ssa_def *x_in = nir_channel(b, pos, 0); local
528 x_out = nir_mask_shift_or(b, x_out, x_in, 0xfffffffc, -1);
529 x_out = nir_mask_shift_or(b, x_out, x_in,
[all...]
/external/libpng/
H A Dpng.h2508 #define PNG_COL_FROM_PASS_COL(x_in, pass) \
2509 (((x_in)<<PNG_PASS_COL_SHIFT(pass))+PNG_PASS_START_COL(pass))
/external/pdfium/third_party/libpng16/
H A Dpng.h2500 #define PNG_COL_FROM_PASS_COL(x_in, pass) \
2501 (((x_in)<<PNG_PASS_COL_SHIFT(pass))+PNG_PASS_START_COL(pass))
/external/boringssl/src/third_party/fiat/
H A Dp256.c995 // point_double calculates 2*(x_in, y_in, z_in)
1004 // Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed.
1007 const fe x_in, const fe y_in, const fe z_in) {
1014 fe_mul(beta, x_in, gamma);
1017 fe_sub(ftmp, x_in, delta);
1018 fe_add(ftmp2, x_in, delta);
1006 point_double(fe x_out, fe y_out, fe z_out, const fe x_in, const fe y_in, const fe z_in) argument

Completed in 1453 milliseconds