OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:v1s
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
vector-assign.c
4
typedef signed int
v1s
__attribute__ ((vector_size (4)));
typedef
11
v1s
v3;
16
v1 = v3; // expected-error {{assigning to 'v2s' (vector of 2 'int' values) from incompatible type '
v1s
' (vector of 1 'int' value)}}
21
v2 = v3; // expected-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type '
v1s
' (vector of 1 'int' value)}}
25
v3 = v1; // expected-error {{assigning to '
v1s
' (vector of 1 'int' value) from incompatible type 'v2s' (vector of 2 'int' values)}}
26
v3 = v2; // expected-error {{assigning to '
v1s
' (vector of 1 'int' value) from incompatible type 'v2u' (vector of 2 'unsigned int' values)}}
27
v3 = v4; // expected-error {{assigning to '
v1s
' (vector of 1 'int' value) from incompatible type 'v2f' (vector of 2 'float' values)}}
28
v3 = v5; // expected-error {{assigning to '
v1s
' (vector of 1 'int' value) from incompatible type 'v4ss'}}
32
v4 = v3; // expected-error {{assigning to 'v2f' (vector of 2 'float' values) from incompatible type '
v1s
' (vector of 1 'int' value)}}
37
v5 = v3; // expected-error {{assigning to 'v4ss' (vector of 4 'short' values) from incompatible type '
v1s
' (vector of 1 'int' value)}
[
all
...]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
matrix-decomposition.js
89
function combine(v1, v2,
v1s
, v2s) {
90
return [
v1s
* v1[0] + v2s * v2[0],
v1s
* v1[1] + v2s * v2[1],
91
v1s
* v1[2] + v2s * v2[2]];
/external/skia/tests/
PathOpsAngleIdeas.cpp
454
SkDVector
v1s
= quad1[1] - quad1[0];
458
double vDir[2] = {
v1s
.cross(v1e), v2s.cross(v2e) };
459
bool ray1In2 =
v1s
.cross(v2s) * vDir[1] <= 0 &&
v1s
.cross(v2e) * vDir[1] >= 0;
460
bool ray2In1 = v2s.cross(
v1s
) * vDir[0] <= 0 && v2s.cross(v1e) * vDir[0] >= 0;
467
bool ctrl2In1 = v2e.cross(
v1s
) * vDir[0] <= 0 && v2e.cross(v1e) * vDir[0] >= 0;
[
all
...]
Completed in 696 milliseconds