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

1 2

  /external/clang/test/PCH/Inputs/
chain-ext_vector1.h 3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
  /external/clang/test/PCH/
ext_vector.h 3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
  /external/clang/test/Sema/
ext_vector_components.c 3 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
11 float2 vec2, vec2_2;
17 vec2.z; // expected-error {{vector component access exceeds type 'float2'}}
18 vec2.xyzw; // expected-error {{vector component access exceeds type 'float2'}}
36 vec4.xy.w; // expected-error {{vector component access exceeds type 'float2'}}
44 float2 lo(float3 x) { return x.lo; }
45 float2 hi(float3 x) { return x.hi; }
46 float2 ev(float3 x) { return x.even; }
47 float2 od(float3 x) { return x.odd; }
ext_vector_casts.c 3 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
10 float2 vec2;
32 vec4 = (float4)vec2; // expected-error {{invalid conversion between ext-vector type 'float4' and 'float2'}}
47 typedef __attribute__(( ext_vector_type(2) )) float2 vecfloat2; // expected-error{{invalid vector element type 'float2'}}
49 void inc(float2 f2) {
50 f2++; // expected-error{{cannot increment value of type 'float2'}}
51 __real f2; // expected-error{{invalid type 'float2' to __real operator}}
  /frameworks/base/libs/rs/scriptc/
rs_cl.rsh 55 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v); \
60 _RS_RUNTIME int2 __attribute__((overloadable)) fnc(float2 v); \
65 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float2 v2); \
70 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float v2); \
75 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, int2 v2);
    [all...]
rs_matrix.rsh 289 rsMatrixMultiply(rs_matrix4x4 *m, float2 in);
301 rsMatrixMultiply(rs_matrix3x3 *m, float2 in);
306 _RS_RUNTIME float2 __attribute__((overloadable))
307 rsMatrixMultiply(rs_matrix2x2 *m, float2 in);
326 rsMatrixMultiply(const rs_matrix4x4 *m, float2 in);
338 rsMatrixMultiply(const rs_matrix3x3 *m, float2 in);
343 _RS_RUNTIME float2 __attribute__((overloadable))
344 rsMatrixMultiply(const rs_matrix2x2 *m, float2 in);
rs_debug.rsh 113 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float2 v);
rs_types.rsh 176 typedef float float2 __attribute__((ext_vector_type(2)));
  /prebuilt/sdk/14/renderscript/include/
rs_cl.rsh 55 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v); \
60 _RS_RUNTIME int2 __attribute__((overloadable)) fnc(float2 v); \
65 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float2 v2); \
70 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float v2); \
75 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, int2 v2);
    [all...]
rs_matrix.rsh 289 rsMatrixMultiply(rs_matrix4x4 *m, float2 in);
301 rsMatrixMultiply(rs_matrix3x3 *m, float2 in);
306 _RS_RUNTIME float2 __attribute__((overloadable))
307 rsMatrixMultiply(rs_matrix2x2 *m, float2 in);
326 rsMatrixMultiply(const rs_matrix4x4 *m, float2 in);
338 rsMatrixMultiply(const rs_matrix3x3 *m, float2 in);
343 _RS_RUNTIME float2 __attribute__((overloadable))
344 rsMatrixMultiply(const rs_matrix2x2 *m, float2 in);
rs_debug.rsh 113 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float2 v);
rs_types.rsh 176 typedef float float2 __attribute__((ext_vector_type(2)));
  /prebuilt/sdk/15/renderscript/include/
rs_cl.rsh 55 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v); \
60 _RS_RUNTIME int2 __attribute__((overloadable)) fnc(float2 v); \
65 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float2 v2); \
70 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, float v2); \
75 _RS_RUNTIME float2 __attribute__((overloadable)) fnc(float2 v1, int2 v2);
    [all...]
rs_matrix.rsh 289 rsMatrixMultiply(rs_matrix4x4 *m, float2 in);
301 rsMatrixMultiply(rs_matrix3x3 *m, float2 in);
306 _RS_RUNTIME float2 __attribute__((overloadable))
307 rsMatrixMultiply(rs_matrix2x2 *m, float2 in);
326 rsMatrixMultiply(const rs_matrix4x4 *m, float2 in);
338 rsMatrixMultiply(const rs_matrix3x3 *m, float2 in);
343 _RS_RUNTIME float2 __attribute__((overloadable))
344 rsMatrixMultiply(const rs_matrix2x2 *m, float2 in);
rs_debug.rsh 113 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float2 v);
rs_types.rsh 176 typedef float float2 __attribute__((ext_vector_type(2)));
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_cl.c 41 extern float2 __attribute__((overloadable)) fnc(float2 v) { \
42 float2 r; \
64 extern int2 __attribute__((overloadable)) fnc(float2 v) { \
87 extern float2 __attribute__((overloadable)) fnc(float2 v1, float2 v2) { \
88 float2 r; \
110 extern float2 __attribute__((overloadable)) fnc(float2 v1, float v2) {
    [all...]
rs_core.c 50 extern void __attribute__((overloadable)) rsDebug(const char *s, float2 v) {
169 rsMatrixMultiply(const rs_matrix4x4 *m, float2 in) {
178 rsMatrixMultiply(rs_matrix4x4 *m, float2 in) {
197 rsMatrixMultiply(const rs_matrix3x3 *m, float2 in) {
205 rsMatrixMultiply(rs_matrix3x3 *m, float2 in) {
209 extern float2 __attribute__((overloadable))
210 rsMatrixMultiply(const rs_matrix2x2 *m, float2 in) {
211 float2 ret;
216 extern float2 __attribute__((overloadable))
217 rsMatrixMultiply(rs_matrix2x2 *m, float2 in)
    [all...]
  /libcore/luni/src/main/java/java/lang/
Float.java 350 * @param float2
352 * @return a negative value if {@code float1} is less than {@code float2};
353 * 0 if {@code float1} and {@code float2} are equal; a positive
354 * value if {@code float1} is greater than {@code float2}.
357 public static int compare(float float1, float float2) {
359 if (float1 > float2) {
362 if (float2 > float1) {
365 if (float1 == float2 && 0.0f != float1) {
371 if (isNaN(float2)) {
375 } else if (isNaN(float2)) {
    [all...]
  /external/clang/test/SemaTemplate/
ext-vector-type.cpp 87 typedef float __attribute__((ext_vector_type(2))) float2; typedef in namespace:Deduction
92 int array2[X0<float2>::value == 2? 1 : -1];
  /external/clang/test/CodeGen/
ext-vector.c 4 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
20 float2 vec2, vec2_2;
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs 27 float2 detailTextureOffset; // offset to add, in screen coordinates
28 float2 detailLineOffset; // offset to add to detail line, in screen coordinates
29 float2 detailTexturePosition[2]; // screen coordinates of detail texture, computed at draw time
235 static float2 touchPosition; // position of first touch, as defined by last call to doStart(x,y)
283 static int intersectDetailTexture(float x, float y, float2 *tapCoordinates);
344 static const float2 zero = {0.0f, 0.0f};
    [all...]
  /frameworks/base/libs/rs/
rsUtils.h 52 union float2 { union in namespace:android::renderscript
  /external/v8/test/mjsunit/
bit-not.js 56 testBitNot(0x40000000 - 0.12345, "float2");
  /external/libffi/testsuite/
Makefile.am 49 libffi.call/float2.c libffi.call/float3.c libffi.call/float4.c \

Completed in 1527 milliseconds

1 2