HomeSort by relevance Sort by last modified time
    Searched refs:in1 (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/clang/test/CodeGen/
mult-alt-generic.c 43 register int in1 = 1; local
45 asm("foo %1,%0" : "=r" (out0) : "<r" (in1));
47 asm("foo %1,%0" : "=r" (out0) : "r<" (in1));
54 register int in1 = 1; local
56 asm("foo %1,%0" : "=r" (out0) : ">r" (in1));
58 asm("foo %1,%0" : "=r" (out0) : "r>" (in1));
65 register int in1 = 1; local
67 asm("foo %1,%0" : "=r" (out0) : "r" (in1));
113 register int in1 = 1; local
115 asm("foo %1,%0" : "=r" (out0) : "g" (in1));
126 register int in1 = 1; local
176 register int in1 = 1; local
187 register int in1 = 1; local
198 register int in1 = 1; local
246 register int in1 = 1; local
259 register int in1 = 1; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLSL_impl.h 25 inline Self GrGLSLExpr<Self>::Mul(T0 in0, T1 in1) {
26 if (in0.isZeros() || in1.isZeros()) {
30 return Self::VectorCast(in1);
32 if (in1.isOnes()) {
35 return Self("(%s * %s)", in0.c_str(), in1.c_str());
40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) {
41 if (in1.isZeros()) {
45 return Self::VectorCast(in1);
47 if (in0.isOnes() && in1.isOnes()) {
50 return Self("(%s + %s)", in0.c_str(), in1.c_str())
    [all...]
GrGLSL.h 168 GrGLSLExpr(const char format[], const char in0[], const char in1[])
170 fExpr.appendf(format, in0, in1);
182 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
183 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
184 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
187 static Self Mul(T0 in0, T1 in1);
191 * vecN(in0.x + in1.x, ...) or vecN(in0.x + in1, ...) or vecN(in0 + in1.x, ...).
194 static Self Add(T0 in0, T1 in1);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
verify.rs 34 static bool verify_float4(rs_allocation in1, rs_allocation in2) {
35 uint32_t w = rsAllocationGetDimX(in1);
36 uint32_t h = rsAllocationGetDimY(in1);
39 float4 pref = rsGetElementAt_float4(in1, x, y);
55 static bool verify_float3(rs_allocation in1, rs_allocation in2) {
56 uint32_t w = rsAllocationGetDimX(in1);
57 uint32_t h = rsAllocationGetDimY(in1);
60 float3 pref = rsGetElementAt_float3(in1, x, y);
75 static bool verify_float2(rs_allocation in1, rs_allocation in2) {
76 uint32_t w = rsAllocationGetDimX(in1);
    [all...]
  /cts/suite/audio_quality/test/
SignalProcessingInterfaceTest.cpp 58 android::sp<Buffer> in1(new Buffer(8, 8, false));
59 char* data1 = in1->getData();
60 for (size_t i = 0; i < in1->getSize(); i++) {
65 void* inputs[4] = { &in0, &in1, &in2, &in3 };
85 ASSERT_TRUE(*(in1.get()) == *(out1.get()));
98 TaskCase::Value in1((int64_t)100);
99 void* inputs[2] = { &in0, &in1 };
107 ASSERT_TRUE(out0.getInt64() == (in0.getInt64() + in1.getInt64()));
123 TaskCase::Value in1((int64_t)100);
124 void* inputs[2] = { &in0, &in1 };
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
verify.rs 37 static bool verify_float4(rs_allocation in1, rs_allocation in2)
39 uint32_t w = rsAllocationGetDimX(in1);
40 uint32_t h = rsAllocationGetDimY(in1);
43 float4 pref = rsGetElementAt_float4(in1, x, y);
59 static bool verify_float3(rs_allocation in1, rs_allocation in2)
61 uint32_t w = rsAllocationGetDimX(in1);
62 uint32_t h = rsAllocationGetDimY(in1);
65 float3 pref = rsGetElementAt_float3(in1, x, y);
80 static bool verify_float2(rs_allocation in1, rs_allocation in2)
82 uint32_t w = rsAllocationGetDimX(in1);
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample.c 312 static void WebRtcSpl_DotProdIntToInt(const WebRtc_Word32* in1, const WebRtc_Word32* in2,
321 tmp1 += coef * in1[0];
325 tmp1 += coef * in1[1];
329 tmp1 += coef * in1[2];
333 tmp1 += coef * in1[3];
337 tmp1 += coef * in1[4];
341 tmp1 += coef * in1[5];
345 tmp1 += coef * in1[6];
349 tmp1 += coef * in1[7];
353 *out1 = tmp1 + coef * in1[8]
    [all...]
resample_fractional.c 149 static void WebRtcSpl_ResampDotProduct(const WebRtc_Word32 *in1, const WebRtc_Word32 *in2,
158 tmp1 += coef * in1[0];
162 tmp1 += coef * in1[1];
166 tmp1 += coef * in1[2];
170 tmp1 += coef * in1[3];
174 tmp1 += coef * in1[4];
178 tmp1 += coef * in1[5];
182 tmp1 += coef * in1[6];
186 tmp1 += coef * in1[7];
190 *out1 = tmp1 + coef * in1[8]
    [all...]
ilbc_specific_functions.c 74 void WebRtcSpl_AddVectorsAndShift(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in1,
80 G_CONST WebRtc_Word16 *in1ptr = in1;
vector_scaling_operations.c 132 void WebRtcSpl_ScaleAndAddVectors(G_CONST WebRtc_Word16 *in1, WebRtc_Word16 gain1, int shift1,
136 // Performs vector operation: out = (gain1*in1)>>shift1 + (gain2*in2)>>shift2
142 in1ptr = in1;
  /external/boringssl/src/crypto/aes/asm/
aesv8-armx.pl 69 my ($zero,$rcon,$mask,$in0,$in1,$tmp,$key)=
170 vld1.8 {$in1},[$inp],#8
176 vtbl.8 $key,{$in1},$mask
178 vst1.32 {$in1},[$out],#8
189 veor $tmp,$tmp,$in1
191 vext.8 $in1,$zero,$in1,#12
193 veor $in1,$in1,$tmp
195 veor $in1,$in1,$ke
    [all...]
  /external/libunwind/src/ia64/
sigsetjmp.S 47 cmp.ne p6, p0 = in1, r0
58 st8 [r16] = in1 // sigjmp_buf[JB_MASK_SAVED] = savemask
  /system/bt/embdrv/sbc/decoder/srce/
synthesis-dct8.c 92 double in0,in1,in2,in3; local
96 in1 = FLOAT_SCALE(in[1], DCTII_8_SHIFT_IN); OI_ASSERT(VALID_INT32(in1));
105 L01 = (in1 + in6); OI_ASSERT(VALID_INT32(L01));
111 L06 = (in1 - in6); OI_ASSERT(VALID_INT32(L06));
217 OI_INT32 in0,in1,in2,in3; local
222 in1 = SCALE(in[1], DCTII_8_SHIFT_IN);
231 in1 = in[1];
241 L01 = in1 + in6;
247 L06 = in1 - in6
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 36 /// This is the main method. It parses BrainF from in1
42 Module *parse(std::istream *in1, int mem, CompileFlags cf,
  /frameworks/rs/
rsCppUtils.h 198 T rsMin(T in1, T in2)
200 if (in1 > in2) {
203 return in1;
207 T rsMax(T in1, T in2) {
208 if (in1 < in2) {
211 return in1;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 16 __m128i in0, in1; local
20 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride));
21 in1 = _mm_unpacklo_epi64(in1, _mm_loadl_epi64((const __m128i *)
26 tmp = _mm_add_epi16(in0, in1);
28 in1 = _mm_unpackhi_epi16(zero, tmp);
30 in1 = _mm_srai_epi32(in1, 16);
32 tmp = _mm_add_epi32(in0, in1);
34 in1 = _mm_unpackhi_epi32(tmp, zero)
99 __m128i in0, in1; local
411 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
466 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
997 __m128i in0, in1, in2, in3, in4, in5, in6, in7; local
1241 __m128i in0, in1, in2, in3; local
2787 __m128i in0[16], in1[16]; local
2821 __m128i in0, in1, in2, in3; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 205 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH); local
206 in1.setFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
207 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
208 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
210 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
212 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
215 startActivity(in1);
BluetoothOppReceiver.java 78 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH); local
79 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
80 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
82 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
84 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
87 in1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
88 context.startActivity(in1);
  /development/perftests/panorama/feature_stab/src/dbreg/
dbstabsmooth.cpp 24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out)
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out)
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;
  /frameworks/base/tools/aapt/tests/
Pseudolocales_test.cpp 36 static void compound_helper(const char* in1, const char* in2, const char *in3,
40 pseudo.text(String16(String8(in1))) + \
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbstabsmooth.cpp 24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out)
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out)
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbstabsmooth.cpp 24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out)
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out)
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 762 __m128i in0, in1, out0, out1; local
770 in1 = _mm_loadu_si128((const __m128i *)src + 1);
790 ins = _mm_unpacklo_epi8(in1, _mm_setzero_si128());
818 __m128i in0, in1, out0, out1; local
875 __m128i in0, in1, out0, out1; local
925 __m128i in0, in1, out0, out1; local
975 __m128i in0, in1, out0, out1; local
1027 __m128i in0, in1, out0, out1; local
1080 __m128i in0, in1, out0, out1; local
1151 __m128i in0, in1, out0, out1; local
1220 __m128i in0, in1, out0, out1; local
1241 __m128i in0, in1, out0, out1; local
1278 __m128i in0, in1, out0, out1; local
1299 __m128i in0, in1, out0, out1; local
    [all...]
  /external/libunwind/tests/
ia64-test-rbs-asm.S 53 shladd r8 = r8, 3, in1; /* r8 = &next_func[iteration+1] */ \
84 mov out1 = in1; \
149 ld4 loc##n = [in1], 4;; \
155 ld4 r16 = [in1], 4;; \
183 (p7) mov out1 = in1
188 mov r18 = in1
220 mov in1 = r18
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 378 deUint32* in1 = (deUint32*)values[1]; local
402 in1[easyCaseNdx*scalarSize + compNdx] = easyCases[easyCaseNdx].y & integerMask;
414 in1[easyCaseNdx*scalarSize + compNdx] = extendSignTo32(in1[easyCaseNdx*scalarSize + compNdx], integerLength);
420 generateRandomInputData(rnd, m_shaderType, type, precision, in1, numValues - DE_LENGTH_OF_ARRAY(easyCases));
434 const deUint32 in1 = ((const deUint32*)inputs[1])[compNdx]; local
437 const deUint32 ref0 = in0+in1;
438 const deUint32 ref1 = (deUint64(in0)+deUint64(in1)) > 0xffffffffu ? 1u : 0u;
474 deUint32* in1 = (deUint32*)values[1]; local
496 in1[easyCaseNdx*scalarSize + compNdx] = easyCases[easyCaseNdx].y & integerMask
528 const deUint32 in1 = ((const deUint32*)inputs[1])[compNdx]; local
565 deUint32* in1 = (deUint32*)values[1]; local
617 const deUint32 in1 = ((const deUint32*)inputs[1])[compNdx]; local
655 deUint32* in1 = (deUint32*)values[1]; local
708 const deInt32 in1 = ((const deInt32*)inputs[1])[compNdx]; local
    [all...]

Completed in 823 milliseconds

1 2 3 4 5