Searched refs:float4 (Results 1 - 25 of 107) sorted by relevance

12345

/external/clang/test/PCH/Inputs/
H A Dchain-ext_vector2.h3 typedef __attribute__((ext_vector_type(4))) float float4; typedef
/external/clang/test/CodeGen/
H A Dext-vector-indexing.c3 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
7 float4 va;
H A Dbuiltinshufflevector2.c3 typedef float float4 __attribute__((ext_vector_type(4))); typedef
7 void clang_shufflevector_v_v( float4* A, float4 x, uint4 mask ) {
31 void clang_shufflevector_v_v_c( float4* A, float4 x, float4 y) {
38 void clang_shufflevector_v_v_undef( float4* A, float4 x, float4 y) {
H A D2010-02-18-Dbg-VectorType.c1 // RUN: %clang -emit-llvm -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
2 typedef float float4 __attribute__((vector_size(16))); typedef
5 volatile float4 x = (float4) { 0.0f, 1.0f, 2.0f, 3.0f };
H A Dext-vector-member-alignment.c3 typedef float float4 __attribute__((ext_vector_type(4))); typedef
6 float4 position;
10 float4 f(struct struct1* x) { return x->position; }
/external/clang/test/CodeGenCXX/
H A D2007-05-03-VectorInit.cpp6 typedef v4sf float4; typedef
8 static float4 splat4(float a)
10 float4 tmp = {a,a,a,a};
14 float4 foo(float a)
H A Dvector-splat-conversion.cpp21 typedef __attribute__((__ext_vector_type__(4))) float float4;
31 float4 floatsT = (float4)true;
33 float4 floatsF = (float4)false;
44 constexpr float4 cFloatsT = (float4)true;
46 constexpr float4 cFloatsF = (float4)false;
/external/clang/test/PCH/
H A Dchain-ext_vector.c9 int test(float4 f4) {
H A Dext_vector.c8 int test(float4 f4) {
H A Dext_vector.h4 typedef __attribute__((ext_vector_type(4))) float float4; typedef
/external/clang/test/Sema/
H A Dvector-init.c3 //typedef __attribute__(( ext_vector_type(4) )) float float4;
4 typedef float float4 __attribute__((vector_size(16))); typedef
6 float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };
8 float4 foo2 = (float4){ 1.0, 2.0, 3.0, 4.0 , 5.0 }; // expected-warning{{excess elements in vector initializer}}
10 float4 array[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0};
11 int array_sizecheck[(sizeof(array) / sizeof(float4)) == 3 ? 1 : -1];
13 float4 array2[2] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0,
16 float4 array
[all...]
H A Dtypedef-retain.c3 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)}}
/external/swiftshader/src/Renderer/
H A DPolygon.hpp24 Polygon(const float4 *P0, const float4 *P1, const float4 *P2)
35 Polygon(const float4 *P, int n)
47 float4 B[16]; // Buffer for clipped vertices
48 const float4 *P[16][16]; // Pointers to clipped polygon's vertices
H A DPrimitive.hpp32 float4 A;
33 float4 B;
34 float4 C;
42 float4 xQuad;
43 float4 yQuad;
/external/skia/src/sksl/
H A Dsksl_vert.inc6 layout(builtin=0) float4 sk_Position;
H A Dsksl_geom.inc6 layout(builtin=0) float4 sk_Position;
12 layout(builtin=0) float4 sk_Position;
/external/skqp/src/sksl/
H A Dsksl_vert.inc6 layout(builtin=0) float4 sk_Position;
H A Dsksl_geom.inc6 layout(builtin=0) float4 sk_Position;
12 layout(builtin=0) float4 sk_Position;
/external/swiftshader/src/Shader/
H A DConstants.hpp31 float4 uvWeight[17];
32 float4 uvStart[17];
78 float4 sampleX[4][16];
79 float4 sampleY[4][16];
80 float4 weight[16];
86 float4 X[4];
87 float4 Y[4];
99 float4 unscaleByte;
100 float4 unscaleSByte;
101 float4 unscaleShor
[all...]
/external/eigen/Eigen/src/Core/arch/CUDA/
H A DMathFunctions.h22 float4 plog<float4>(const float4& a)
35 float4 plog1p<float4>(const float4& a)
47 float4 pexp<float4>(const float4& a)
60 float4 psqr
[all...]
H A DPacketMath.h21 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 pad
[all...]
/external/libxcam/cl_kernel/
H A Dkernel_newtonemapping.cl37 float4 src_data_Gr = read_imagef (input, sampler, (int2)(g_id_x, g_id_y));
38 float4 src_data_R = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height));
39 float4 src_data_B = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height * 2));
40 float4 src_data_Gb = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height * 3));
42 float4 src_data_G = (src_data_Gr + src_data_Gb) / 2;
44 float4 src_y_data = 0.0f;
49 float4 dst_y_data;
50 float4 d, wd, haleq, s, ws;
51 float4 total_w = 0.0f;
52 float4 total_hale
[all...]
H A Dkernel_tonemapping.cl32 __local float4 local_src_data[SHARED_PIXEL_X_SIZE * SHARED_PIXEL_Y_SIZE];
34 float4 src_data_Gr = read_imagef (input, sampler, (int2)(g_id_x, g_id_y));
35 float4 src_data_R = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height));
36 float4 src_data_B = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height * 2));
37 float4 src_data_Gb = read_imagef (input, sampler, (int2)(g_id_x, g_id_y + image_height * 3));
39 float4 src_data_G = (src_data_Gr + src_data_Gb) / 2;
41 float4 src_y_data = 0.0f;
56 float4 data_Gr = read_imagef (input, sampler, (int2)(start_x + offset_x, start_y + offset_y));
57 float4 data_R = read_imagef (input, sampler, (int2)(start_x + offset_x, start_y + offset_y + image_height));
58 float4 data_
[all...]
/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
H A DCudaSpecialFunctions.h23 float4 plgamma<float4>(const float4& a)
36 float4 pdigamma<float4>(const float4& a)
50 float4 pzeta<float4>(const float4& x, const float4
[all...]
/external/clang/test/SemaCXX/
H A Derr_init_conversion_failed.cpp40 typedef float float4 __attribute__((ext_vector_type(4))); typedef
43 const float4 V = (float4){ in, out };

Completed in 4323 milliseconds

12345