HomeSort by relevance Sort by last modified time
    Searched defs:vec4 (Results 1 - 12 of 12) sorted by null

  /external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
vec4.js 25 * @name vec4
27 var vec4 = {};
30 * Creates a new, empty vec4
32 * @returns {vec4} a new 4D vector
34 vec4.create = function() {
44 * Creates a new vec4 initialized with values from an existing vector
46 * @param {vec4} a vector to clone
47 * @returns {vec4} a new 4D vector
49 vec4.clone = function(a) {
59 * Creates a new vec4 initialized with the given value
    [all...]
quat.js 24 var vec4 = require("./vec4.js"); variable
125 quat.clone = vec4.clone;
137 quat.fromValues = vec4.fromValues;
147 quat.copy = vec4.copy;
160 quat.set = vec4.set;
204 quat.add = vec4.add;
240 quat.scale = vec4.scale;
332 quat.dot = vec4.dot;
344 quat.lerp = vec4.lerp
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_SimplexCollisionShape.cpp 103 btVector3 vec4 = btVector3(); local
104 jmeBulletUtil::convert(env, vector4, &vec4);
105 btBU_Simplex1to4* simplexShape = new btBU_Simplex1to4(vec1, vec2, vec3, vec4);
com_jme3_bullet_joints_HingeJoint.cpp 216 btVector3 vec4 = btVector3(); local
220 jmeBulletUtil::convert(env, axisB, &vec4);
221 btHingeConstraint* joint = new btHingeConstraint(*bodyA, *bodyB, vec1, vec2, vec3, vec4);
  /external/clang/test/CodeGen/
vector.c 15 typedef float vec4 __attribute__((vector_size(16))); typedef
17 void test3 ( vec4* a, char b, float c ) {
ext-vector.c 21 float4 vec4, vec4_2; variable
31 vec2 = vec4.xy; // shorten
33 vec4 = vec4.yyyy; // splat
  /external/clang/test/Sema/
ext_vector_components.c 13 float4 vec4, vec4_2, *vec4p; local
19 vec4.xyzw; // expected-warning {{expression result unused}}
20 vec4.xyzc; // expected-error {{illegal vector component name 'c'}}
21 vec4.s01z; // expected-error {{illegal vector component name 'z'}}
22 vec2 = vec4.s01; // legal, shorten
23 vec2 = vec4.S01; // legal, shorten
25 vec3 = vec4.xyz; // legal, shorten
27 f = vec4.xy.x; // legal, shorten
29 vec4_2.xyzx = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}}
30 vec4_2.xyzz = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}
    [all...]
ext_vector_casts.c 16 float4 vec4, vec4_2; local
24 vec4 += vec3; // expected-error {{can't convert between vector values of different size}}
26 vec4 = 5.0f;
27 vec4 = (float4)5.0f;
28 vec4 = (float4)5;
29 vec4 = (float4)vec4_3;
40 vec4 = (float4)vec2; // expected-error {{invalid conversion between ext-vector type 'float4' (vector of 4 'float' values) and 'float2' (vector of 2 'float' values)}}
44 vec4 /= 5.2f;
45 vec4 %= 4; // expected-error {{invalid operands to binary expression ('float4' (vector of 4 'float' values) and 'int')}}
47 ivec4 += vec4; // expected-error {{can't convert between vector values of different size ('int4' (vector of 4 'i (…)
    [all...]
  /frameworks/native/include/ui/
vec4.h 113 typedef tvec4<float> vec4; typedef in namespace:android
  /external/clang/test/CodeGenCXX/
references.cpp 60 __attribute((vector_size(16))) typedef int vec4; typedef
61 f((vec4){1,2,3,4}[0]);
  /external/clang/test/SemaCXX/
references.cpp 117 __attribute((vector_size(16))) typedef int vec4; typedef
120 vec4 v;
  /external/skia/tests/
Matrix44Test.cpp 514 SkScalar vec4[4] = { 2, 4, 0, 8 }; local
520 a44.mapScalars(vec4, vec4transformed);
522 a44flattened.mapScalars(vec4, vec4transformed2);

Completed in 480 milliseconds