HomeSort by relevance Sort by last modified time
    Searched refs:half4 (Results 101 - 125 of 193) sorted by null

1 2 3 45 6 7 8

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestNativePowr.rs 59 half4 __attribute__((kernel)) testNativePowrHalf4Half4Half4(half4 inBase, unsigned int x) {
60 half4 inExponent = rsGetElementAt_half4(gAllocInExponent, x);
TestPow.rs 59 half4 __attribute__((kernel)) testPowHalf4Half4Half4(half4 inBase, unsigned int x) {
60 half4 inExponent = rsGetElementAt_half4(gAllocInExponent, x);
TestPowr.rs 59 half4 __attribute__((kernel)) testPowrHalf4Half4Half4(half4 inBase, unsigned int x) {
60 half4 inExponent = rsGetElementAt_half4(gAllocInExponent, x);
TestRemainder.rs 59 half4 __attribute__((kernel)) testRemainderHalf4Half4Half4(half4 inNumerator, unsigned int x) {
60 half4 inDenominator = rsGetElementAt_half4(gAllocInDenominator, x);
TestFma.rs 67 half4 __attribute__((kernel)) testFmaHalf4Half4Half4Half4(half4 inMultiplicand1, unsigned int x) {
68 half4 inMultiplicand2 = rsGetElementAt_half4(gAllocInMultiplicand2, x);
69 half4 inOffset = rsGetElementAt_half4(gAllocInOffset, x);
TestMad.rs 67 half4 __attribute__((kernel)) testMadHalf4Half4Half4Half4(half4 inMultiplicand1, unsigned int x) {
68 half4 inMultiplicand2 = rsGetElementAt_half4(gAllocInMultiplicand2, x);
69 half4 inOffset = rsGetElementAt_half4(gAllocInOffset, x);
TestNativeSincos.rs 73 half4 __attribute__((kernel)) testNativeSincosHalf4Half4Half4(half4 inV, unsigned int x) {
74 half4 outCos = 0;
75 half4 out = native_sincos(inV, &outCos);
TestSincos.rs 73 half4 __attribute__((kernel)) testSincosHalf4Half4Half4(half4 inV, unsigned int x) {
74 half4 outCos = 0;
75 half4 out = sincos(inV, &outCos);
TestDistance.rs 59 half __attribute__((kernel)) testDistanceHalf4Half4Half(half4 inLeftVector, unsigned int x) {
60 half4 inRightVector = rsGetElementAt_half4(gAllocInRightVector, x);
TestDot.rs 59 half __attribute__((kernel)) testDotHalf4Half4Half(half4 inLeftVector, unsigned int x) {
60 half4 inRightVector = rsGetElementAt_half4(gAllocInRightVector, x);
TestNativeDistance.rs 59 half __attribute__((kernel)) testNativeDistanceHalf4Half4Half(half4 inLeftVector, unsigned int x) {
60 half4 inRightVector = rsGetElementAt_half4(gAllocInRightVector, x);
TestPown.rs 59 half4 __attribute__((kernel)) testPownHalf4Int4Half4(half4 inBase, unsigned int x) {
  /frameworks/native/services/surfaceflinger/
LayerProtoHelper.h 34 static void writeToProto(const half4 color, ColorProto* colorProto);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
fp16.rs 44 static half4 ElementAt_half4(int x, int y, int z) {
46 half4 ret = {r, r + gIncr, r + gIncr * 2, r + gIncr * 3};
76 static void compare_half4(half4 x, half4 y) {
95 SET_KERNEL(half4)
111 INVOKE_SET(half4)
121 VERIFY_KERNEL(half4);
140 INVOKE_VERIFY(half4)
rsdebug_24.rs 29 half4 half4Test = {(half) 0.f, (half) -0.f, (half) 1.f/0.f, (half) 0.f/0.f};
  /frameworks/rs/script_api/include/
rs_math.rsh 234 extern half4 __attribute__((const, overloadable))
235 acos(half4 v);
273 extern half4 __attribute__((const, overloadable))
274 acosh(half4 v);
314 extern half4 __attribute__((const, overloadable))
315 acospi(half4 v);
353 extern half4 __attribute__((const, overloadable))
354 asin(half4 v);
392 extern half4 __attribute__((const, overloadable))
393 asinh(half4 v)
    [all...]
rs_vector_math.rsh 58 extern half4 __attribute__((const, overloadable))
59 cross(half4 left_vector, half4 right_vector);
98 distance(half4 left_vector, half4 right_vector);
135 dot(half4 left_vector, half4 right_vector);
267 length(half4 v);
314 native_distance(half4 left_vector, half4 right_vector)
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh 234 extern half4 __attribute__((const, overloadable))
235 acos(half4 v);
273 extern half4 __attribute__((const, overloadable))
274 acosh(half4 v);
314 extern half4 __attribute__((const, overloadable))
315 acospi(half4 v);
353 extern half4 __attribute__((const, overloadable))
354 asin(half4 v);
392 extern half4 __attribute__((const, overloadable))
393 asinh(half4 v)
    [all...]
rs_vector_math.rsh 58 extern half4 __attribute__((const, overloadable))
59 cross(half4 left_vector, half4 right_vector);
98 distance(half4 left_vector, half4 right_vector);
135 dot(half4 left_vector, half4 right_vector);
267 length(half4 v);
314 native_distance(half4 left_vector, half4 right_vector)
    [all...]
  /external/skia/src/gpu/effects/
GrArithmeticFP.fp 18 half4 dst = process(child);
  /external/skqp/src/gpu/effects/
GrArithmeticFP.fp 18 half4 dst = process(child);
  /frameworks/native/libs/gui/include/gui/
LayerDebugInfo.h 56 half4 mColor = half4(1.0_hf, 1.0_hf, 1.0_hf, 0.0_hf);
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.h 43 void setColor(const half4& color);
81 half4 mColor;
  /frameworks/rs/tests/cpp_api/cppf16/
compute.cpp 37 sp<const Element> half4 = Element::F16_4(rs); local
43 testAllocationCreation(rs, half4, nDims);
  /external/skia/src/sksl/
SkSLCPP.h 58 #define half4 float4 macro

Completed in 342 milliseconds

1 2 3 45 6 7 8