OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:float3
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
ext_vector_components.c
4
typedef __attribute__(( ext_vector_type(3) )) float
float3
;
typedef
12
float3
vec3;
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; }
vector-init.c
33
typedef float __attribute__((ext_vector_type (3)))
float3
;
typedef
34
int test2[sizeof(
float3
) == sizeof(float4) ? 1 : -1];
Completed in 44 milliseconds