/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestFmax.rs | 24 float __attribute__((kernel)) testFmaxFloatFloatFloat(float inA, unsigned int x) { 26 return fmax(inA, inB); 29 float2 __attribute__((kernel)) testFmaxFloat2Float2Float2(float2 inA, unsigned int x) { 31 return fmax(inA, inB); 34 float3 __attribute__((kernel)) testFmaxFloat3Float3Float3(float3 inA, unsigned int x) { 36 return fmax(inA, inB); 39 float4 __attribute__((kernel)) testFmaxFloat4Float4Float4(float4 inA, unsigned int x) { 41 return fmax(inA, inB); 44 half __attribute__((kernel)) testFmaxHalfHalfHalf(half inA, unsigned int x) { 46 return fmax(inA, inB) [all...] |
TestFmin.rs | 24 float __attribute__((kernel)) testFminFloatFloatFloat(float inA, unsigned int x) { 26 return fmin(inA, inB); 29 float2 __attribute__((kernel)) testFminFloat2Float2Float2(float2 inA, unsigned int x) { 31 return fmin(inA, inB); 34 float3 __attribute__((kernel)) testFminFloat3Float3Float3(float3 inA, unsigned int x) { 36 return fmin(inA, inB); 39 float4 __attribute__((kernel)) testFminFloat4Float4Float4(float4 inA, unsigned int x) { 41 return fmin(inA, inB); 44 half __attribute__((kernel)) testFminHalfHalfHalf(half inA, unsigned int x) { 46 return fmin(inA, inB) [all...] |
TestFdim.rs | 24 float __attribute__((kernel)) testFdimFloatFloatFloat(float inA, unsigned int x) { 26 return fdim(inA, inB); 29 float2 __attribute__((kernel)) testFdimFloat2Float2Float2(float2 inA, unsigned int x) { 31 return fdim(inA, inB); 34 float3 __attribute__((kernel)) testFdimFloat3Float3Float3(float3 inA, unsigned int x) { 36 return fdim(inA, inB); 39 float4 __attribute__((kernel)) testFdimFloat4Float4Float4(float4 inA, unsigned int x) { 41 return fdim(inA, inB); 44 half __attribute__((kernel)) testFdimHalfHalfHalf(half inA, unsigned int x) { 46 return fdim(inA, inB) [all...] |
TestHypot.rs | 24 float __attribute__((kernel)) testHypotFloatFloatFloat(float inA, unsigned int x) { 26 return hypot(inA, inB); 29 float2 __attribute__((kernel)) testHypotFloat2Float2Float2(float2 inA, unsigned int x) { 31 return hypot(inA, inB); 34 float3 __attribute__((kernel)) testHypotFloat3Float3Float3(float3 inA, unsigned int x) { 36 return hypot(inA, inB); 39 float4 __attribute__((kernel)) testHypotFloat4Float4Float4(float4 inA, unsigned int x) { 41 return hypot(inA, inB); 44 half __attribute__((kernel)) testHypotHalfHalfHalf(half inA, unsigned int x) { 46 return hypot(inA, inB) [all...] |
TestNativeHypot.rs | 24 float __attribute__((kernel)) testNativeHypotFloatFloatFloat(float inA, unsigned int x) { 26 return native_hypot(inA, inB); 29 float2 __attribute__((kernel)) testNativeHypotFloat2Float2Float2(float2 inA, unsigned int x) { 31 return native_hypot(inA, inB); 34 float3 __attribute__((kernel)) testNativeHypotFloat3Float3Float3(float3 inA, unsigned int x) { 36 return native_hypot(inA, inB); 39 float4 __attribute__((kernel)) testNativeHypotFloat4Float4Float4(float4 inA, unsigned int x) { 41 return native_hypot(inA, inB); 44 half __attribute__((kernel)) testNativeHypotHalfHalfHalf(half inA, unsigned int x) { 46 return native_hypot(inA, inB) [all...] |
TestMax.rs | 24 float __attribute__((kernel)) testMaxFloatFloatFloat(float inA, unsigned int x) { 26 return max(inA, inB); 29 float2 __attribute__((kernel)) testMaxFloat2Float2Float2(float2 inA, unsigned int x) { 31 return max(inA, inB); 34 float3 __attribute__((kernel)) testMaxFloat3Float3Float3(float3 inA, unsigned int x) { 36 return max(inA, inB); 39 float4 __attribute__((kernel)) testMaxFloat4Float4Float4(float4 inA, unsigned int x) { 41 return max(inA, inB); 44 half __attribute__((kernel)) testMaxHalfHalfHalf(half inA, unsigned int x) { 46 return max(inA, inB) [all...] |
TestMin.rs | 24 float __attribute__((kernel)) testMinFloatFloatFloat(float inA, unsigned int x) { 26 return min(inA, inB); 29 float2 __attribute__((kernel)) testMinFloat2Float2Float2(float2 inA, unsigned int x) { 31 return min(inA, inB); 34 float3 __attribute__((kernel)) testMinFloat3Float3Float3(float3 inA, unsigned int x) { 36 return min(inA, inB); 39 float4 __attribute__((kernel)) testMinFloat4Float4Float4(float4 inA, unsigned int x) { 41 return min(inA, inB); 44 half __attribute__((kernel)) testMinHalfHalfHalf(half inA, unsigned int x) { 46 return min(inA, inB) [all...] |
TestMax.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162460l, false); 59 script.forEach_testMaxFloatFloatFloat(inA, out); 60 verifyResultsMaxFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testMaxFloatFloatFloat(inA, out); 69 verifyResultsMaxFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsMaxFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestMin.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121573el, false); 59 script.forEach_testMinFloatFloatFloat(inA, out); 60 verifyResultsMinFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testMinFloatFloatFloat(inA, out); 69 verifyResultsMinFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsMinFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestFdim.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xf5dd38fbc3a47366l, false); 59 script.forEach_testFdimFloatFloatFloat(inA, out); 60 verifyResultsFdimFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testFdimFloatFloatFloat(inA, out); 69 verifyResultsFdimFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsFdimFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestHypot.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7deb65e7738c74c4l, false); 59 script.forEach_testHypotFloatFloatFloat(inA, out); 60 verifyResultsHypotFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testHypotFloatFloatFloat(inA, out); 69 verifyResultsHypotFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsHypotFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestNativeHypot.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x3d61f129bdf66001l, false); 59 script.forEach_testNativeHypotFloatFloatFloat(inA, out); 60 verifyResultsNativeHypotFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testNativeHypotFloatFloatFloat(inA, out); 69 verifyResultsNativeHypotFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsNativeHypotFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestFmax.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe6ec75a46e6fdd7al, false); 59 script.forEach_testFmaxFloatFloatFloat(inA, out); 60 verifyResultsFmaxFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testFmaxFloatFloatFloat(inA, out); 69 verifyResultsFmaxFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsFmaxFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
TestFmin.java | 48 public float inA; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7b46a8451d7b1058l, false); 59 script.forEach_testFminFloatFloatFloat(inA, out); 60 verifyResultsFminFloatFloatFloat(inA, inB, out, false); 68 scriptRelaxed.forEach_testFminFloatFloatFloat(inA, out); 69 verifyResultsFminFloatFloatFloat(inA, inB, out, true); 74 inA.destroy(); 78 private void verifyResultsFminFloatFloatFloat(Allocation inA, Allocation inB, Allocation out, boolean relaxed) { 81 inA.copyTo(arrayInA); 94 args.inA = arrayInA[i] [all...] |
/external/webp/src/dsp/ |
enc_sse41.c | 73 static int TTransform_SSE41(const uint8_t* inA, const uint8_t* inB, 80 const __m128i inA_0 = _mm_loadu_si128((const __m128i*)&inA[BPS * 0]); 81 const __m128i inA_1 = _mm_loadu_si128((const __m128i*)&inA[BPS * 1]); 82 const __m128i inA_2 = _mm_loadu_si128((const __m128i*)&inA[BPS * 2]); 85 // of inA and inB, _mm_loadl_epi64 is still used not to have an out of 87 const __m128i inA_3 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 3]); 93 // Combine inA and inB (we'll do two transforms in parallel). 145 // Separate the transforms of inA and inB.
|
enc_sse2.c | [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
CoreMathVerifier.java | 635 Target.Floaty inA = t.newFloaty(a); 637 Target.Floaty r = t.subtract(inA, inB); [all...] |
/build/soong/android/ |
paths_test.go | 567 inA := sortedPaths.PathsInDirectory("a") 568 if !reflect.DeepEqual(inA.Strings(), expectedA) { 569 t.Errorf("FilesInDirectory(a):\n %#v\n != \n %#v", inA.Strings(), expectedA) 588 t.Errorf("FilesInDirectory(b):\n %#v\n != \n %#v", inA.Strings(), expectedA)
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
inv_txfm_vsx.c | 427 #define IDCT16(in0, in1, in2, in3, in4, in5, in6, in7, in8, in9, inA, inB, \ 436 out5 = inA; \ 460 STEP8_0(outA, outD, inA, inD, cospi22_v, cospi10_v); \ 474 outA = vec_sub(inB, inA); \ 475 outB = vec_add(inA, inB); \ 512 inA = vec_packs(temp10, temp11); \ 532 out9 = vec_add(in9, inA); \ 533 outA = vec_sub(in9, inA); \ 551 STEP16_1(outD, outA, inA, inD, cospi16_v); \ [all...] |