/external/webp/src/dsp/ |
yuv_sse41.c | 108 __m128i* const in0, __m128i* const in1, __m128i* const in2, 123 VP8PlanarTo24b_SSE41(in0, in1, in2, in3, in4, in5); 126 _mm_storeu_si128((__m128i*)(rgb + 16), *in1); 544 const __m128i in1 = LOAD_16(rgbx + 8); // r2 | g2 | b2 |x| r3 | g3 | b3 |x local 553 const __m128i A1 = _mm_shuffle_epi8(in1, shuff1);
|
yuv_sse2.c | 167 static WEBP_INLINE void PlanarTo24b_SSE2(__m128i* const in0, __m128i* const in1, 183 VP8PlanarTo24b_SSE2(in0, in1, in2, in3, in4, in5); 186 _mm_storeu_si128((__m128i*)(rgb + 16), *in1); 698 const __m128i in1 = LOAD_16(rgbx + 8); // r2 | g2 | b2 |x| r3 | g3 | b3 |x local 702 const __m128i A0 = _mm_unpacklo_epi16(in0, in1); 703 const __m128i A1 = _mm_unpackhi_epi16(in0, in1); [all...] |
dec_sse2.c | 57 __m128i in0, in1, in2, in3; local 60 in1 = _mm_loadl_epi64((const __m128i*)&in[4]); 73 in1 = _mm_unpacklo_epi64(in1, inB1); 89 // c = MUL(in1, K2) - MUL(in3, K1) = MUL(in1, k2) - MUL(in3, k1) + in1 - in3 90 const __m128i c1 = _mm_mulhi_epi16(in1, k2); 92 const __m128i c3 = _mm_sub_epi16(in1, in3); 95 // d = MUL(in1, K1) + MUL(in3, K2) = MUL(in1, k1) + MUL(in3, k2) + in1 + in [all...] |
lossless_sse2.c | 496 __m128i in1 = _mm_loadu_si128(in + 1); local 503 VP8L32bToPlanar_SSE2(&in0, &in1, &in2, &in3); 505 // At this points, in1/in5 contains red only, in2/in6 green only ... 507 VP8PlanarTo24b_SSE2(&in1, &in5, &in2, &in6, &in3, &in7); 508 _mm_storeu_si128(out + 0, in1);
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
constant_folding_test.cc | 1748 Output in1 = local 1792 Output in1 = local 1842 Output in1 = ops::Variable(scope.WithOpName("in1"), TensorShape({1, 2, 4, 1}), local 1880 Output in1 = local 1925 Output in1 = ops::Variable(scope.WithOpName("in1"), TensorShape({1, 2, 4, 1}), local 1964 auto in1 = ops::Variable(scope.WithOpName("in1"), {3, 5}, DT_FLOAT); local 2008 auto in1 = local 2059 auto in1 = ops::Variable(scope.WithOpName("in1"), {3, 5, 2}, DT_FLOAT); local 2108 auto in1 = local 2170 auto in1 = ops::Variable(scope.WithOpName("in1"), {4, 6}, DT_FLOAT); local 2205 Output in1 = ops::Variable(scope.WithOpName("in1"), {4, 6}, DT_FLOAT); local 2235 Output in1 = ops::Variable(scope.WithOpName("in1"), {4, 6}, DT_FLOAT); local 2266 Output in1 = ops::Variable(scope.WithOpName("in1"), {2, 6}, DT_FLOAT); local 2296 Output in1 = ops::Variable(scope.WithOpName("in1"), {2, 5}, DT_FLOAT); local 2329 auto in1 = ops::Variable(scope.WithOpName("in1"), {4, 6}, DT_INT32); local 2381 auto in1 = ops::Variable(scope.WithOpName("in1"), {2, 3}, DT_INT32); local [all...] |
/external/boringssl/src/crypto/fipsmodule/aes/asm/ |
aesni-x86_64.pl | 234 $in2="%xmm6"; $in1="%xmm7"; # used in CBC decrypt, CTR, ... [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
HttpOverSpdyTest.java | 363 InputStream in1 = connection1.getInputStream(); local 364 assertEquals("AB", readAscii(in1, 2)); 365 in1.close();
|
/external/guava/guava/src/com/google/common/io/ |
ByteSource.java | 316 InputStream in1 = closer.register(openStream()); local 319 int read1 = ByteStreams.read(in1, buf1, 0, BUF_SIZE);
|
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_highbd_iht8x8_add_sse4.c | 30 const __m128i in1, 40 extend_64bit(in1, x1);
|
/external/skia/tests/ |
LListTest.cpp | 30 bool in0, bool in1, bool in2, bool in3, 38 REPORTER_ASSERT(reporter, in1 == list.isInList(&elements[1]));
|
/external/skqp/tests/ |
LListTest.cpp | 30 bool in0, bool in1, bool in2, bool in3, 38 REPORTER_ASSERT(reporter, in1 == list.isInList(&elements[1]));
|
/external/tensorflow/tensorflow/core/kernels/ |
conv_2d.h | 135 // Computes on device "d": out = in0 * in1, where * is matrix 140 typename TTypes<T, 2>::ConstTensor in1, 143 out.device(d) = in0.contract(in1, dim_pair, output_kernel);
|
matmul_op.cc | 538 typename MatMulTypes<T>::in_type in1, 540 MatMul<CPUDevice>(d, out, in0, in1, dim_pair); 551 typename MatMulTypes<T>::in_type in1, 553 MatMul<SYCLDevice>(d, out, in0, in1, dim_pair);
|
/external/deqp/modules/gles2/functional/ |
es2fShaderOperatorTests.cpp | 157 // Reference for expression "in0, in2 + in1, in1 + in0" 158 inline Vec4 sequenceNoSideEffCase0 (const Vec4& in0, const Vec4& in1, const Vec4& in2) { DE_UNREF(in2); return in1 + in0; } 159 // Reference for expression "in0, in2 + in1, in1 + in0" 160 inline int sequenceNoSideEffCase1 (float in0, int in1, float in2) { DE_UNREF(in0); DE_UNREF(in2); return in1 + in1; } 161 // Reference for expression "in0 && in1, in0, ivec2(vec2(in0) + in2) [all...] |
/external/gemmlowp/internal/ |
output_msa.h | 95 #define GEMMLOWP_MIPS_SAT_U8_16(out, in0, in1, in2, in3) \ 98 v4i32 tmp1 = __builtin_msa_sat_s_w(in1, 8); \ 179 #define GEMMLOWP_MIPS_SAT_I16_8(out, in0, in1) \ 182 v4i32 tmp1 = __builtin_msa_sat_s_w(in1, 15); \
|
/external/libaom/libaom/tools/txfm_analyzer/ |
txfm_graph.h | 55 int node_idx, int in0, double w0, int in1, double w1);
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
idct32x32_135_add_neon.c | 21 int16x8_t *const in1, int16x8_t *const in2, 27 *in1 = load_tran_low_to_s16q(input); 43 int16x4_t *const in1, int16x4_t *const in2, 49 *in1 = load_tran_low_to_s16d(input);
|
highbd_idct32x32_135_add_neon.c | 21 const tran_low_t *input, int32x4x2_t *const in0, int32x4x2_t *const in1, 27 in1->val[0] = vld1q_s32(input); 28 in1->val[1] = vld1q_s32(input + 4); 50 int32x4_t *const in0, int32x4_t *const in1, 57 *in1 = vld1q_s32(input); [all...] |
/external/tensorflow/tensorflow/compiler/xla/ |
reference_util.h | 520 int64 in1 = operand.n2(); local 525 in1 + low_padding1 + high_padding1 + (in1 - 1) * interior_padding1; 532 for (int64 i1 = 0; i1 < in1; ++i1) {
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_sse2.c | 869 void idct16_sse2(__m128i *const in0, __m128i *const in1) { 870 transpose_16bit_16x16(in0, in1); 872 idct16_8col(in1, in1); 875 void iadst16_sse2(__m128i *const in0, __m128i *const in1) { 876 transpose_16bit_16x16(in0, in1); 878 vpx_iadst16_8col_sse2(in1); [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
vpx_convolve8_msa.c | 814 v16u8 in0, in1, in2, in3, out0, out1, out2, out3, tmp0, tmp1, tmp2, tmp3; local 829 v16u8 in0, in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12; local [all...] |
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
vktShaderBuiltinPrecisionTests.cpp | [all...] |
vktShaderCommonFunctionTests.cpp | 2121 int in1; local 2146 int in1; local 2169 const int in1 = rnd.getInt(de::max(-126, -126-fpExp), de::min(127, 127-fpExp)); local 2201 const int in1 = ((const int*)inputs[1])[compNdx]; local [all...] |
/external/google-benchmark/tools/ |
compare.py | 16 def check_inputs(in1, in2, flags): 20 in1_kind, in1_err = classify_input_file(in1)
|
/external/libcxx/utils/google-benchmark/tools/ |
compare.py | 16 def check_inputs(in1, in2, flags): 20 in1_kind, in1_err = classify_input_file(in1)
|