HomeSort by relevance Sort by last modified time
    Searched refs:float4 (Results 26 - 50 of 367) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
typedef-retain.c 3 typedef float float4 __attribute__((vector_size(16))); typedef
7 void test1(float4 a, int4 *result, int i) {
8 result[i] = a; // expected-error {{assigning to 'int4' (vector of 4 'int' values) from incompatible type 'float4' (vector of 4 'float' values)}}
11 void test2(float4 a, int4p result, int i) {
12 result[i] = a; // expected-error {{assigning to 'int4' (vector of 4 'int' values) from incompatible type 'float4' (vector of 4 'float' values)}}
ext_vector_comparisons.c 18 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
21 float4 vec, rv;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
matrix.rs 26 float4 __attribute__((kernel)) multiply(float4 in)
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
colormatrix_f.rs 39 float4 RS_KERNEL colormatrix(float4 in) {
levels_f.rsh 48 float4 __attribute__((kernel)) levels_v4(float4 in) {
49 float4 pixel;
  /external/eigen/Eigen/src/Core/arch/CUDA/
MathFunctions.h 22 float4 plog<float4>(const float4& a)
35 float4 plog1p<float4>(const float4& a)
47 float4 pexp<float4>(const float4& a)
60 float4 psqrt<float4>(const float4& a
    [all...]
PacketMath.h 21 template<> struct is_arithmetic<float4> { enum { value = true }; };
26 typedef float4 type;
27 typedef float4 half;
85 template<> struct unpacket_traits<float4> { typedef float type; enum {size=4, alignment=Aligned16}; typedef float4 half; };
88 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 pset1<float4>(const float& from) {
96 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 plset<float4>(const float& a) {
103 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 padd<float4>(const float4& a, const float4& b)
    [all...]
  /external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
CudaSpecialFunctions.h 23 float4 plgamma<float4>(const float4& a)
36 float4 pdigamma<float4>(const float4& a)
50 float4 pzeta<float4>(const float4& x, const float4& q
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
convolve3x3.rs 34 float4 p00 = rsUnpackColor8888(gPixels[x1 + gWidth * y1]);
35 float4 p01 = rsUnpackColor8888(gPixels[x + gWidth * y1]);
36 float4 p02 = rsUnpackColor8888(gPixels[x2 + gWidth * y1]);
37 float4 p10 = rsUnpackColor8888(gPixels[x1 + gWidth * y]);
38 float4 p11 = rsUnpackColor8888(gPixels[x + gWidth * y]);
39 float4 p12 = rsUnpackColor8888(gPixels[x2 + gWidth * y]);
40 float4 p20 = rsUnpackColor8888(gPixels[x1 + gWidth * y2]);
41 float4 p21 = rsUnpackColor8888(gPixels[x + gWidth * y2]);
42 float4 p22 = rsUnpackColor8888(gPixels[x2 + gWidth * y2]);
  /external/clang/test/SemaCXX/
err_init_conversion_failed.cpp 40 typedef float float4 __attribute__((ext_vector_type(4))); typedef
43 const float4 V = (float4){ in, out };
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestFastNormalize.rs 35 float4 __attribute__((kernel)) testFastNormalizeFloat4Float4(float4 inV) {
TestHalfRecip.rs 35 float4 __attribute__((kernel)) testHalfRecipFloat4Float4(float4 inV) {
TestHalfRsqrt.rs 35 float4 __attribute__((kernel)) testHalfRsqrtFloat4Float4(float4 inV) {
TestHalfSqrt.rs 35 float4 __attribute__((kernel)) testHalfSqrtFloat4Float4(float4 inV) {
  /external/swiftshader/src/Renderer/
Clipper.hpp 59 unsigned int computeClipFlags(const float4 &v);
71 void clipEdge(float4 &Vo, const float4 &Vi, const float4 &Vj, float di, float dj) const;
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
copy_test.rs 37 float4 __attribute((kernel)) copyFloat4(float4 i) {
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
copy_test.rs 37 float4 __attribute((kernel)) copyFloat4(float4 i) {
  /frameworks/rs/tests/lldb/cpp/MultipleRSFiles/
first.rs 20 float4 gColor = {0.299f, 0.587f, 0.114f, 1.f};
28 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/
infiniteloop.rs 37 float4 gColour = {0.299f, 0.587f, 0.114f, 1.f};
45 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/java/MultipleRSFiles/src/rs/
first.rs 20 float4 gColor = {0.299f, 0.587f, 0.114f, 1.f};
28 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/rs/
simple.rs 20 float4 gColor = {0.299f, 0.587f, 0.114f, 1.f};
28 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/jni/InfiniteLoop/jniinfiniteloop/
infiniteloop.rs 37 float4 gColour = {0.299f, 0.587f, 0.114f, 1.f};
45 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/jni/MultipleRSFiles/jnimultiplersfiles/
first.rs 20 float4 gColor = {0.299f, 0.587f, 0.114f, 1.f};
28 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
simple.rs 20 float4 gColor = {0.299f, 0.587f, 0.114f, 1.f};
28 float4 temp = rsUnpackColor8888(in);
  /frameworks/rs/driver/runtime/
rs_convert.c 59 * YUV float4 version
62 static float4 yuv_U_values = {0.f, -0.392f * 0.003921569f, +2.02 * 0.003921569f, 0.f};
63 static float4 yuv_V_values = {1.603f * 0.003921569f, -0.815f * 0.003921569f, 0.f, 0.f};
65 extern float4 __attribute__((overloadable)) rsYuvToRGBA_float4(uchar y, uchar u, uchar v) {
66 float4 color = (float)y * 0.003921569f;
67 float4 fU = ((float)u) - 128.f;
68 float4 fV = ((float)v) - 128.f;

Completed in 558 milliseconds

12 3 4 5 6 7 8 91011>>