HomeSort by relevance Sort by last modified time
    Searched refs:float4 (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/PCH/Inputs/
chain-ext_vector2.h 3 typedef __attribute__((ext_vector_type(4))) float float4; typedef
  /external/clang/test/CodeGen/
builtinshufflevector2.c 3 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) {
2010-02-18-Dbg-VectorType.c 1 // 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 };
ext-vector-member-alignment.c 3 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/
2007-05-03-VectorInit.cpp 6 typedef v4sf float4; typedef
8 static float4 splat4(float a)
10 float4 tmp = {a,a,a,a};
14 float4 foo(float a)
  /external/clang/test/PCH/
chain-ext_vector.c 9 int test(float4 f4) {
ext_vector.c 8 int test(float4 f4) {
ext_vector.h 4 typedef __attribute__((ext_vector_type(4))) float float4; typedef
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.hlsl 29 float4 position : POSITION;
30 float4 color : COLOR;
35 float4 position : SV_POSITION;
36 float4 color : COLOR;
47 float4 ps(VS2PS input) : SV_TARGET
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.hlsl 29 float4 position : POSITION;
30 float4 color : COLOR;
35 float4 position : SV_POSITION;
36 float4 color : COLOR;
47 float4 ps(VS2PS input) : SV_TARGET
  /external/clang/test/Sema/
vector-init.c 3 //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 array3[2] = { {1.0, 2.0, 3.0}, 5.0, 6.0, 7.0, 8.0
    [all...]
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)}}
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.hlsl 29 float4 position : POSITION;
30 float4 color : COLOR;
35 float4 position : SV_POSITION;
36 float4 color : COLOR;
47 float4 ps(VS2PS input) : SV_TARGET
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.hlsl 29 float4 position : POSITION;
30 float4 color : COLOR;
35 float4 position : SV_POSITION;
36 float4 color : COLOR;
47 float4 ps(VS2PS input) : SV_TARGET
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.hlsl 34 float4 position : POSITION;
40 float4 position : SV_POSITION;
42 float4 factors : FACTORS;
55 float4 ps(VS2PS input) : SV_TARGET
57 float4 a0 = tex0.Sample(samp0, input.texcoord);
58 float4 a1 = tex0.Sample(samp1, input.texcoord);
59 float4 a = a0 * input.factors.z + a1 * input.factors.x;
61 float4 b0 = tex1.Sample(samp0, input.texcoord);
62 float4 b1 = tex1.Sample(samp1, input.texcoord);
63 float4 b = b0 * input.factors.z + b1 * input.factors.x;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.hlsl 34 float4 position : POSITION;
40 float4 position : SV_POSITION;
42 float4 factors : FACTORS;
55 float4 ps(VS2PS input) : SV_TARGET
57 float4 a0 = tex0.Sample(samp0, input.texcoord);
58 float4 a1 = tex0.Sample(samp1, input.texcoord);
59 float4 a = a0 * input.factors.z + a1 * input.factors.x;
61 float4 b0 = tex1.Sample(samp0, input.texcoord);
62 float4 b1 = tex1.Sample(samp1, input.texcoord);
63 float4 b = b0 * input.factors.z + b1 * input.factors.x;
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
resize.rs 38 static float4 cubicInterpolate (float4 p0,float4 p1,float4 p2,float4 p3 , float x) {
64 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
65 float4 p01 = convert_float4(rsGetElementAt_uchar4(gIn, xs1, ys0));
66 float4 p02 = convert_float4(rsGetElementAt_uchar4(gIn, xs2, ys0));
67 float4 p03 = convert_float4(rsGetElementAt_uchar4(gIn, xs3, ys0));
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
resize.rs 38 static float4 cubicInterpolate (float4 p0,float4 p1,float4 p2,float4 p3 , float x) {
64 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
65 float4 p01 = convert_float4(rsGetElementAt_uchar4(gIn, xs1, ys0));
66 float4 p02 = convert_float4(rsGetElementAt_uchar4(gIn, xs2, ys0));
67 float4 p03 = convert_float4(rsGetElementAt_uchar4(gIn, xs3, ys0));
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_3dlut.rs 21 static float4 gCoordMul;
29 gCoordMul = (float4)(1.f / 255.f) * convert_float4(gDims - 1);
33 float4 baseCoord = convert_float4(in) * gCoordMul;
36 float4 f = baseCoord - convert_float4(coord1);
38 float4 v000 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord1.y, coord1.z));
39 float4 v100 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord1.y, coord1.z));
40 float4 v010 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord2.y, coord1.z));
41 float4 v110 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord2.y, coord1.z));
42 float4 v001 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord1.y, coord2.z));
43 float4 v101 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord1.y, coord2.z))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.hlsl 31 float4 light;
32 float4 diffuse;
33 float4 specular;
39 float4 position : POSITION;
45 float4 position : SV_POSITION;
56 result.position = mul((float4x4)proj, float4(view, 1));
64 float4 ps(VS2PS input) : SV_TARGET
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.hlsl 31 float4 light;
32 float4 diffuse;
33 float4 specular;
39 float4 position : POSITION;
45 float4 position : SV_POSITION;
56 result.position = mul((float4x4)proj, float4(view, 1));
64 float4 ps(VS2PS input) : SV_TARGET
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ip2_convolve3x3.rs 31 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y1));
32 float4 p01 = convert_float4(rsGetElementAt_uchar4(gIn, x, y1));
33 float4 p02 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y1));
34 float4 p10 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y));
35 float4 p11 = convert_float4(rsGetElementAt_uchar4(gIn, x, y));
36 float4 p12 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y));
37 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2));
38 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2));
39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
  /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 };
  /external/chromium_org/third_party/angle/src/compiler/translator/
Initialize.cpp 22 TType *float4 = new TType(EbtFloat, 4); local
35 symbolTable.insertBuiltIn(COMMON_BUILTINS, float4, "radians", float4);
40 symbolTable.insertBuiltIn(COMMON_BUILTINS, float4, "degrees", float4);
45 symbolTable.insertBuiltIn(COMMON_BUILTINS, float4, "sin", float4);
50 symbolTable.insertBuiltIn(COMMON_BUILTINS, float4, "cos", float4);
55 symbolTable.insertBuiltIn(COMMON_BUILTINS, float4, "tan", float4)
    [all...]

Completed in 912 milliseconds

1 2 3 4 5 6 7 8 91011