/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestNextafter.rs | 34 float3 __attribute__((kernel)) testNextafterFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x);
|
TestPow.rs | 34 float3 __attribute__((kernel)) testPowFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x);
|
TestPowr.rs | 34 float3 __attribute__((kernel)) testPowrFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x);
|
TestRemainder.rs | 34 float3 __attribute__((kernel)) testRemainderFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x);
|
TestFma.rs | 37 float3 __attribute__((kernel)) testFmaFloat3Float3Float3Float3(float3 inA, unsigned int x) { 38 float3 inB = rsGetElementAt_float3(gAllocInB, x); 39 float3 inC = rsGetElementAt_float3(gAllocInC, x);
|
TestMad.rs | 37 float3 __attribute__((kernel)) testMadFloat3Float3Float3Float3(float3 inA, unsigned int x) { 38 float3 inB = rsGetElementAt_float3(gAllocInB, x); 39 float3 inC = rsGetElementAt_float3(gAllocInC, x);
|
TestModf.rs | 38 float3 __attribute__((kernel)) testModfFloat3Float3Float3(float3 inX, unsigned int x) { 39 float3 outIret = 0; 40 float3 out = modf(inX, &outIret);
|
TestNativeSincos.rs | 38 float3 __attribute__((kernel)) testNativeSincosFloat3Float3Float3(float3 inV, unsigned int x) { 39 float3 outCosptr = 0; 40 float3 out = native_sincos(inV, &outCosptr);
|
TestRemquo.rs | 41 float3 __attribute__((kernel)) testRemquoFloat3Float3Int3Float3(float3 inB, unsigned int x) { 42 float3 inC = rsGetElementAt_float3(gAllocInC, x); 44 float3 out = remquo(inB, inC, &outD);
|
TestSincos.rs | 38 float3 __attribute__((kernel)) testSincosFloat3Float3Float3(float3 inV, unsigned int x) { 39 float3 outCosptr = 0; 40 float3 out = sincos(inV, &outCosptr);
|
TestFmax.rs | 34 float3 __attribute__((kernel)) testFmaxFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x); 49 float3 __attribute__((kernel)) testFmaxFloat3FloatFloat3(float3 inX, unsigned int x) {
|
TestFmin.rs | 34 float3 __attribute__((kernel)) testFminFloat3Float3Float3(float3 inX, unsigned int x) { 35 float3 inY = rsGetElementAt_float3(gAllocInY, x); 49 float3 __attribute__((kernel)) testFminFloat3FloatFloat3(float3 inX, unsigned int x) {
|
TestLgamma.rs | 31 float3 __attribute__((kernel)) testLgammaFloat3Float3(float3 in) { 54 float3 __attribute__((kernel)) testLgammaFloat3Int3Float3(float3 inX, unsigned int x) { 56 float3 out = lgamma(inX, &outY);
|
TestFrexp.rs | 38 float3 __attribute__((kernel)) testFrexpFloat3Int3Float3(float3 inV, unsigned int x) { 40 float3 out = frexp(inV, &outIptr);
|
TestFastLength.rs | 31 float __attribute__((kernel)) testFastLengthFloat3Float(float3 inV) {
|
TestIlogb.rs | 31 int3 __attribute__((kernel)) testIlogbFloat3Int3(float3 in) {
|
TestLdexp.rs | 34 float3 __attribute__((kernel)) testLdexpFloat3Int3Float3(float3 inX, unsigned int x) { 49 float3 __attribute__((kernel)) testLdexpFloat3IntFloat3(float3 inX, unsigned int x) {
|
TestLength.rs | 31 float __attribute__((kernel)) testLengthFloat3Float(float3 inV) {
|
TestNativeLength.rs | 31 float __attribute__((kernel)) testNativeLengthFloat3Float(float3 inV) {
|
TestDistance.rs | 34 float __attribute__((kernel)) testDistanceFloat3Float3Float(float3 inLhs, unsigned int x) { 35 float3 inRhs = rsGetElementAt_float3(gAllocInRhs, x);
|
TestDot.rs | 34 float __attribute__((kernel)) testDotFloat3Float3Float(float3 inLhs, unsigned int x) { 35 float3 inRhs = rsGetElementAt_float3(gAllocInRhs, x);
|
/developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/rs/ |
saturation.rs | 21 const static float3 gMonoMult = {0.299f, 0.587f, 0.114f}; 31 float3 result = dot(f4.rgb, gMonoMult);
|
/developers/samples/android/renderScript/BasicRenderScript/Application/src/main/rs/ |
saturation.rs | 21 const static float3 gMonoMult = {0.299f, 0.587f, 0.114f}; 31 float3 result = dot(f4.rgb, gMonoMult);
|
/development/samples/browseable/BasicRenderScript/src/rs/ |
saturation.rs | 21 const static float3 gMonoMult = {0.299f, 0.587f, 0.114f}; 31 float3 result = dot(f4.rgb, gMonoMult);
|
/external/clang/test/Sema/ |
vector-init.c | 33 typedef float __attribute__((ext_vector_type (3))) float3; typedef 34 int test2[sizeof(float3) == sizeof(float4) ? 1 : -1];
|