/external/chromium-trace/trace-viewer/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...] |
/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/chromium-trace/trace-viewer/third_party/gl-matrix/dist/ |
gl-matrix.js | 1094 * @name vec4 1097 var vec4 = {}; 1100 * Creates a new, empty vec4 1102 * @returns {vec4} a new 4D vector 1104 vec4.create = function() { 1114 * Creates a new vec4 initialized with values from an existing vector 1116 * @param {vec4} a vector to clone 1117 * @returns {vec4} a new 4D vector 1119 vec4.clone = function(a) { 1129 * Creates a new vec4 initialized with the given value [all...] |
/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_casts.c | 11 float4 vec4, vec4_2; local 18 vec4 = 5.0f; 19 vec4 = (float4)5.0f; 20 vec4 = (float4)5; 21 vec4 = (float4)vec4_3; 32 vec4 = (float4)vec2; // expected-error {{invalid conversion between ext-vector type 'float4' and 'float2'}} 37 vec4 /= 5.2f; 38 vec4 %= 4; // expected-error {{invalid operands to binary expression ('float4' and 'int')}} 40 ivec4 += vec4; // expected-error {{can't convert between vector values of different size ('int4' and 'float4')}} 41 ivec4 += (int4)vec4; [all...] |
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...] |
/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 | 107 __attribute((vector_size(16))) typedef int vec4; typedef 110 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);
|