HomeSort by relevance Sort by last modified time
    Searched refs:float4 (Results 1 - 25 of 416) 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/
ext-vector-indexing.c 3 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
7 float4 va;
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)
vector-splat-conversion.cpp 21 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/
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
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
exposure_f.rs 28 float4 RS_KERNEL exposure(float4 in)
greyscale_f.rs 20 const static float4 gMonoMult = {0.299f, 0.587f, 0.114f, 0.0f};
22 float4 RS_KERNEL greyscale(float4 in) {
contrast_f.rs 30 float4 RS_KERNEL contrast(float4 in) {
f4touc4.rs 20 uchar4 RS_KERNEL f4touc4(float4 in) {
21 float4 f = clamp(in, 0.f, 255.f);
uc4tof4.rs 20 float4 RS_KERNEL uc4tof4(uchar4 in) {
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
multi_kernel.rs 21 float4 RS_KERNEL invert(float4 a) {
25 float4 RS_KERNEL scalebytwo(float4 a) {
29 float4 RS_KERNEL scalebythree(float4 a) {
invert.rs 21 float4 RS_KERNEL invert(float4 a) {
  /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...]
  /external/swiftshader/src/Renderer/
Polygon.hpp 24 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
Primitive.hpp 32 float4 A;
33 float4 B;
34 float4 C;
42 float4 xQuad;
43 float4 yQuad;
  /external/swiftshader/src/Shader/
Constants.hpp 31 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 unscaleShort
    [all...]
  /frameworks/rs/tests/java_api/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/tests/java_api/ImageProcessing2/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/tests/java_api/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...]

Completed in 636 milliseconds

1 2 3 4 5 6 7 8 91011>>