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

1 2 3 4

  /external/clang/test/PCH/Inputs/
chain-ext_vector2.h 3 typedef __attribute__((ext_vector_type(4))) float float4; typedef
  /external/clang/test/CodeGen/
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 };
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, uint4 mask ) {
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; }
ext-vector.c 3 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
9 float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };
12 const float4 bar = (float4){ 1.0, 2.0, 3.0, __builtin_inff() };
16 float4 test1(float4 V) {
21 float4 vec4, vec4_2;
41 void test3(float4 *out) {
42 *out = ((float4) {1.0f, 2.0f, 3.0f, 4.0f })
    [all...]
  /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
types.h 27 typedef float float4 __attribute__((vector_size(16))); typedef
  /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' from incompatible type 'float4'}}
11 void test2(float4 a, int4p result, int i) {
12 result[i] = a; // expected-error {{assigning to 'int4' from incompatible type 'float4'}}
ext_vector_comparisons.c 18 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
21 float4 vec, rv;
ext_vector_casts.c 6 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
11 float4 vec4, vec4_2;
19 vec4 = (float4)5.0f;
20 vec4 = (float4)5;
21 vec4 = (float4)vec4_3;
32 vec4 = (float4)vec2; // expected-error {{invalid conversion between ext-vector type 'float4' and 'float2'}}
38 vec4 %= 4; // expected-error {{invalid operands to binary expression ('float4' and 'int')}}
40 ivec4 += vec4; // expected-error {{can't convert between vector values of different size ('int4' and 'float4')}}
ext_vector_components.c 5 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
8 static float4 vec4_0 = (float4)0.5f;
13 float4 vec4, vec4_2, *vec4p;
35 vec4 = (float4){ 1,2,3,4 };
37 vec4.s06; // expected-error {{vector component access exceeds type 'float4'}}
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
convolve3x3.fs 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));
greyscale.fs 22 float4 f4 = rsUnpackColor8888(v_in);
29 float4 f4 = convert_float4(v_in);
  /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));
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
convolve3x3.fs 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]);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
copy_test.rs 37 float4 __attribute((kernel)) copyFloat4(float4 i) {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
copy_test.rs 37 float4 __attribute((kernel)) copyFloat4(float4 i) {
  /frameworks/compile/libbcc/lib/Renderscript/runtime/arch/
sqrt.c 34 extern float4 __attribute__((overloadable)) fnc(float4 v) { \
35 float4 r; \
  /frameworks/rs/scriptc/
rs_math.rsh 103 float4 *left, float4 *right,
104 float4 *top, float4 *bottom,
105 float4 *near, float4 *far) {
153 * @param sphere float4 representing the sphere
162 rsIsSphereInFrustum(float4 *sphere,
163 float4 *left, float4 *right
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh 103 float4 *left, float4 *right,
104 float4 *top, float4 *bottom,
105 float4 *near, float4 *far) {
153 * @param sphere float4 representing the sphere
162 rsIsSphereInFrustum(float4 *sphere,
163 float4 *left, float4 *right
    [all...]

Completed in 735 milliseconds

1 2 3 4