HomeSort by relevance Sort by last modified time
    Searched refs:in1 (Results 76 - 100 of 199) sorted by null

1 2 34 5 6 7 8

  /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;
  /external/webrtc/src/common_audio/signal_processing/
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;
  /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.c 761 __m128i in0, in1, out0, out1; local
769 in1 = _mm_loadu_si128((const __m128i *)src + 1);
789 ins = _mm_unpacklo_epi8(in1, _mm_setzero_si128());
817 __m128i in0, in1, out0, out1; local
874 __m128i in0, in1, out0, out1; local
924 __m128i in0, in1, out0, out1; local
974 __m128i in0, in1, out0, out1; local
1026 __m128i in0, in1, out0, out1; local
1079 __m128i in0, in1, out0, out1; local
1150 __m128i in0, in1, out0, out1; local
1219 __m128i in0, in1, out0, out1; local
1240 __m128i in0, in1, out0, out1; local
1277 __m128i in0, in1, out0, out1; local
1298 __m128i in0, in1, out0, out1; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.h 41 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
SVGFEConvolveMatrixElement.h 47 SVGAnimatedString* in1() { return m_in1.get(); } function in class:WebCore::FINAL
  /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
ia64-dyn-asm.S 18 {.mii; ld8 r8 = [in1], 8 // load the function pointer
28 mov out1 = in1
ia64-test-nat-asm.S 40 #define CALL_NEXT(gp_save_reg) CALL_NEXT_PTR(gp_save_reg, in0, in1)
43 ld8 reg = [in1], 8;; \
56 values passed via the pointer in in1 and then call the
94 r4 with the value passed via in1 and call the function
114 ld8 r4 = [in1], 8;;
397 ld8 r2 = [in1]
449 ld8 r2 = [in1], 8;;
452 ld8 r2 = [in1], 8;;
454 mov r9 = in1
493 ld8 r2 = [in1], 8;
    [all...]
flush-cache.S 15 add r8=31,in1 // round up to 32 byte-boundary
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
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);
  /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...]
  /external/deqp/modules/gles3/functional/
es3fShaderPrecisionTests.cpp 100 << "\t" << precName << " " << typeName << " in1 = " << (isVertexCase ? "a_" : "v_") << "in1;\n";
157 << "\t" << precName << " " << typeName << " in1 = " << (isVertexCase ? "a_" : "v_") << "in1;\n";
180 typedef double (*EvalFunc) (double in0, double in1);
190 bool compare (float in0, float in1, double reference, float result)
307 bool ShaderFloatPrecisionCase::compare (float in0, float in1, double reference, float result)
321 const int in1Exp = tcu::Float32(in1).exponent();
387 const float in1 = m_rnd.getFloat(m_rangeB.x(), m_rangeB.y()); local
388 const double refD = m_evalFunc((double)in0, (double)in1);
608 int in1 = extendTo32Bit(((isMaxRangeB ? (int)m_rnd.getUint32() : m_rnd.getInt(m_rangeB.x(), m_rangeB.y())) & mask), m_bits); local
802 deUint32 in1 = (isMaxRangeB ? m_rnd.getUint32() : (m_rangeB.x() + m_rnd.getUint32()%(m_rangeB.y()-m_rangeB.x()+1))) & mask; local
    [all...]
es3fShaderMatrixTests.cpp 896 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
898 evalCtx.color.xyz() = reduceToVec3(in0 + in1);
909 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
911 evalCtx.color.xyz() = reduceToVec3(in0 - in1);
922 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
924 evalCtx.color.xyz() = reduceToVec3(in0 * in1);
935 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
937 evalCtx.color.xyz() = reduceToVec3(in0 / in1);
948 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
950 evalCtx.color.xyz() = reduceToVec3(matrixCompMult(in0, in1));
961 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
1090 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
1103 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
1116 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
1129 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1) local
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
vector_scaling_operations.c 124 void WebRtcSpl_ScaleAndAddVectors(const int16_t *in1, int16_t gain1, int shift1,
128 // Performs vector operation: out = (gain1*in1)>>shift1 + (gain2*in2)>>shift2
134 in1ptr = in1;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
heapq.py 425 in1, in2 = tee(iterable)
426 it = izip(imap(key, in1), count(), in2) # decorate
463 in1, in2 = tee(iterable)
464 it = izip(imap(key, in1), count(0,-1), in2) # decorate
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
heapq.py 425 in1, in2 = tee(iterable)
426 it = izip(imap(key, in1), count(), in2) # decorate
463 in1, in2 = tee(iterable)
464 it = izip(imap(key, in1), count(0,-1), in2) # decorate
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMax.java 39 public float in1; field in class:TestMax.ArgumentsFloatFloatFloat
45 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162450l, false); local
48 script.set_gAllocIn1(in1);
50 verifyResultsMaxFloatFloatFloat(in, in1, out, false);
56 scriptRelaxed.set_gAllocIn1(in1);
58 verifyResultsMaxFloatFloatFloat(in, in1, out, true);
64 private void verifyResultsMaxFloatFloatFloat(Allocation in, Allocation in1, Allocation out, boolean relaxed) {
68 in1.copyTo(arrayIn1);
76 args.in1 = arrayIn1[i];
91 message.append("Input in1: ")
114 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc6031e7536addacal, false); local
183 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x1a67fc95388bdc6bl, false); local
252 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0x6eccdab53a69de0cl, false); local
    [all...]
TestMin.java 39 public float in1; field in class:TestMin.ArgumentsFloatFloatFloat
45 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121572el, false); local
48 script.set_gAllocIn1(in1);
50 verifyResultsMinFloatFloatFloat(in, in1, out, false);
56 scriptRelaxed.set_gAllocIn1(in1);
58 verifyResultsMinFloatFloatFloat(in, in1, out, true);
64 private void verifyResultsMinFloatFloatFloat(Allocation in, Allocation in1, Allocation out, boolean relaxed) {
68 in1.copyTo(arrayIn1);
76 args.in1 = arrayIn1[i];
91 message.append("Input in1: ")
114 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2f1cc4b149b4e444l, false); local
183 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x8381a2d14b92e5e5l, false); local
252 Allocation in1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0xd7e680f14d70e786l, false); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 70 __m128i in0, in1; local
75 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride));
76 in1 = _mm_unpacklo_epi64(in1, _mm_loadl_epi64((const __m128i *)
81 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
86 in1 = _mm_slli_epi16(in1, 4);
108 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
109 const __m128i r0 = _mm_unpacklo_epi16(in0, in1);
110 const __m128i r1 = _mm_unpackhi_epi16(in0, in1);
397 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
928 __m128i in0, in1, in2, in3, in4, in5, in6, in7; local
2650 __m128i in0[16], in1[16]; local
    [all...]
vp9_dct_avx2.c 35 __m128i in0, in1, in2, in3; local
39 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride));
44 in1 = _mm_slli_epi16(in1, 4);
64 const __m128i r1 = _mm_add_epi16(in1, in2);
65 const __m128i r2 = _mm_sub_epi16(in1, in2);
99 in1 = _mm_unpackhi_epi64(in0, in0);
296 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
305 in1 = _mm_slli_epi16(in1, 2)
827 __m128i in0, in1, in2, in3, in4, in5, in6, in7; local
2549 __m128i in0[16], in1[16]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 70 __m128i in0, in1; local
75 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride));
76 in1 = _mm_unpacklo_epi64(in1, _mm_loadl_epi64((const __m128i *)
81 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
86 in1 = _mm_slli_epi16(in1, 4);
108 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
109 const __m128i r0 = _mm_unpacklo_epi16(in0, in1);
110 const __m128i r1 = _mm_unpackhi_epi16(in0, in1);
397 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
928 __m128i in0, in1, in2, in3, in4, in5, in6, in7; local
2650 __m128i in0[16], in1[16]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 70 __m128i in0, in1; local
75 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride));
76 in1 = _mm_unpacklo_epi64(in1, _mm_loadl_epi64((const __m128i *)
81 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
86 in1 = _mm_slli_epi16(in1, 4);
108 // in1 = [i4 i5 i6 i7 i8 i9 iA iB]
109 const __m128i r0 = _mm_unpacklo_epi16(in0, in1);
110 const __m128i r1 = _mm_unpackhi_epi16(in0, in1);
397 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); local
928 __m128i in0, in1, in2, in3, in4, in5, in6, in7; local
2650 __m128i in0[16], in1[16]; local
    [all...]

Completed in 1105 milliseconds

1 2 34 5 6 7 8