OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:v2f
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/Sema/
vector-ops.c
4
typedef float
v2f
__attribute__ ((vector_size(8)));
typedef
6
void test1(v2u v2ua, v2s v2sa,
v2f
v2fa) {
13
(void)(~v2fa); // expected-error{{invalid argument type '
v2f
' to unary}}
vector-assign.c
5
typedef float
v2f
__attribute__ ((vector_size(8)));
typedef
12
v2f
v4;
17
v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' from '
v2f
'}}
22
v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from '
v2f
'}}
27
v3 = v4; // expected-error {{assigning to 'v1s' from incompatible type '
v2f
'}}
30
v4 = v1; // expected-warning {{incompatible vector types assigning to '
v2f
' from 'v2s'}}
31
v4 = v2; // expected-warning {{incompatible vector types assigning to '
v2f
' from 'v2u'}}
32
v4 = v3; // expected-error {{assigning to '
v2f
' from incompatible type 'v1s'}}
33
v4 = v5; // expected-warning {{incompatible vector types assigning to '
v2f
' from 'v4ss'}}
38
v5 = v4; // expected-warning {{incompatible vector types assigning to 'v4ss' from '
v2f
'}}
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gl.py
78
'unpackrect', 'unqdevice', 'v2d', '
v2f
', 'v2i', 'v2s', 'v3d', 'v3f',
130
print '
v2f
'
131
gl.
v2f
(0.0, 0.0)
132
gl.
v2f
(400.0, 400.0)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gl.py
78
'unpackrect', 'unqdevice', 'v2d', '
v2f
', 'v2i', 'v2s', 'v3d', 'v3f',
130
print '
v2f
'
131
gl.
v2f
(0.0, 0.0)
132
gl.
v2f
(400.0, 400.0)
/external/eigen/unsupported/test/
openglsupport.cpp
225
"uniform vec2
v2f
;\n"
234
"void main(void) { gl_FragColor = vec4(
v2f
[0]+v3f[0]+v4f[0])+vec4(v2i[0]+v3i[0]+v4i[0])+vec4(m2f[0][0]+m3f[0][0]+m4f[0][0]); }\n";
238
VERIFY_UNIFORM(fv,
v2f
, Vector2f);
Completed in 1080 milliseconds