HomeSort by relevance Sort by last modified time
    Searched refs:vec (Results 251 - 275 of 515) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Rotation2D.h 77 Vector2 operator* (const Vector2& vec) const
78 { return toRotationMatrix() * vec; }
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 82 Vector2 operator* (const Vector2& vec) const
83 { return toRotationMatrix() * vec; }
  /external/freetype/src/base/
ftbbox.c 566 FT_Vector* vec; local
588 vec = outline->points;
589 bbox.xMin = bbox.xMax = cbox.xMin = cbox.xMax = vec->x;
590 bbox.yMin = bbox.yMax = cbox.yMin = cbox.yMax = vec->y;
591 vec++;
595 FT_Pos x = vec->x;
596 FT_Pos y = vec->y;
616 vec++;
  /external/skia/include/core/
SkPoint.h 428 SkScalar cross(const SkPoint& vec) const {
429 return CrossProduct(*this, vec);
432 SkScalar dot(const SkPoint& vec) const {
433 return DotProduct(*this, vec);
491 * Make this vector be orthogonal to vec. Looking down vec the
495 void setOrthog(const SkPoint& vec, Side side = kLeft_Side) {
496 // vec could be this
497 SkScalar tmp = vec.fX;
499 fX = -vec.fY
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
matrix.h 443 static INLINE void vector_unit(float *vec)
445 float len = sqrt(vec[0] * vec[0] + vec[1] * vec[1]);
446 vec[0] /= len;
447 vec[1] /= len;
450 static INLINE void line_normal_vector(float *line, float *vec)
456 vec[0] = normal[2] - normal[0];
457 vec[1] = normal[3] - normal[1]
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 443 static INLINE void vector_unit(float *vec)
445 float len = sqrt(vec[0] * vec[0] + vec[1] * vec[1]);
446 vec[0] /= len;
447 vec[1] /= len;
450 static INLINE void line_normal_vector(float *line, float *vec)
456 vec[0] = normal[2] - normal[0];
457 vec[1] = normal[3] - normal[1]
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 824 * @param vec
828 public Vector3f mult(Vector3f vec) {
829 return mult(vec, null);
833 * Multiplies this 3x3 matrix by the 1x3 Vector vec and stores the result in
836 * @param vec
840 * the same as vec.
843 public Vector3f mult(Vector3f vec, Vector3f product) {
849 float x = vec.x;
850 float y = vec.y;
851 float z = vec.z
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 417 FT_Vector* vec = outline->points; local
418 FT_Vector* limit = vec + outline->n_points;
428 ras.min_ex = ras.max_ex = vec->x;
429 ras.min_ey = ras.max_ey = vec->y;
431 vec++;
433 for ( ; vec < limit; vec++ )
435 TPos x = vec->x;
436 TPos y = vec->y;
1536 FT_Vector vec; local
1557 FT_Vector vec; local
1625 FT_Vector vec; local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 457 FT_Vector* vec = outline->points; local
458 FT_Vector* limit = vec + outline->n_points;
468 ras.min_ex = ras.max_ex = vec->x;
469 ras.min_ey = ras.max_ey = vec->y;
471 vec++;
473 for ( ; vec < limit; vec++ )
475 TPos x = vec->x;
476 TPos y = vec->y;
1600 FT_Vector vec; local
1621 FT_Vector vec; local
1689 FT_Vector vec; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_emit.c 98 float vec[4],
107 /* vec should either be (0, 0, 0, 1), which should be a relatively safe
116 vec[0] = 1.0 / tex->tex.width0;
117 vec[1] = 1.0 / tex->tex.height0;
118 vec[2] = 0;
119 vec[3] = 1;
125 vec[0] = tex->b.b.width0 / (tex->tex.width0 + 0.001f);
126 vec[1] = tex->b.b.height0 / (tex->tex.height0 + 0.001f);
127 vec[2] = tex->b.b.depth0 / (tex->tex.depth0 + 0.001f);
128 vec[3] = 1
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 98 float vec[4],
107 /* vec should either be (0, 0, 0, 1), which should be a relatively safe
116 vec[0] = 1.0 / tex->tex.width0;
117 vec[1] = 1.0 / tex->tex.height0;
118 vec[2] = 0;
119 vec[3] = 1;
125 vec[0] = tex->b.b.width0 / (tex->tex.width0 + 0.001f);
126 vec[1] = tex->b.b.height0 / (tex->tex.height0 + 0.001f);
127 vec[2] = tex->b.b.depth0 / (tex->tex.depth0 + 0.001f);
128 vec[3] = 1
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
login_database.h 111 Pickle SerializeVector(const std::vector<string16>& vec) const;
  /external/chromium_org/media/mp4/
box_reader.cc 52 bool BufferReader::ReadVec(std::vector<uint8>* vec, int count) {
54 vec->clear();
55 vec->insert(vec->end(), buf_ + pos_, buf_ + pos_ + count);
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_vector.h 80 extern void _mesa_vector4f_clean_elem( GLvector4f *vec, GLuint nr, GLuint elt );
  /external/chromium_org/third_party/skia/src/utils/
SkCullPoints.cpp 42 SkIPoint vec; local
45 vec.set(x1 - x0, y1 - y0);
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/chromium_org/v8/tools/
generate-ten-powers.scm 92 (vec (make-vector nb-elements))
110 (vector-set! vec (-fx offset i)
127 (vector-set! vec (+fx i offset)
133 vec))
  /external/clang/test/Modules/
module-private.cpp 25 vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \ local
27 // expected-error{{use of undeclared identifier 'vec'}}
  /external/clang/test/Sema/
transparent-union.c 70 int4 vec; // expected-warning{{first field of a transparent union cannot have vector type 'int4'; transparent_union attribute ignored}} member in union:__anon18750
  /external/mesa3d/src/mesa/math/
m_vector.h 80 extern void _mesa_vector4f_clean_elem( GLvector4f *vec, GLuint nr, GLuint elt );
  /external/openfst/src/include/fst/
string.h 81 vector<char *> vec; local
83 SplitToVector(c_str, separator.c_str(), &vec, true);
84 for (size_t i = 0; i < vec.size(); ++i) {
86 if (!ConvertSymbolToLabel(vec[i], &label))
  /external/skia/src/utils/
SkCullPoints.cpp 42 SkIPoint vec; local
45 vec.set(x1 - x0, y1 - y0);
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
  /external/srec/srec/include/
swicms.h 38 imeldata vec[MAX_CHAN_DIM]; member in struct:__anon28346
  /external/v8/tools/
generate-ten-powers.scm 92 (vec (make-vector nb-elements))
110 (vector-set! vec (-fx offset i)
127 (vector-set! vec (+fx i offset)
133 vec))
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 62 Word16 sign[L_SUBFR], vec[L_SUBFR], dn2[L_SUBFR]; local
121 vec[i] = -32768;
125 vec[i] = 32767;
210 psign = vec;
  /frameworks/native/services/sensorservice/
Fusion.h 24 #include "vec.h"
72 vec<vec3_t, 3> mData;

Completed in 1180 milliseconds

<<11121314151617181920>>