/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
FloatQuad.cpp | 80 // Check if point is in triangle 128 FloatPoint point; local 130 point.setY(rect.maxY()); 132 point.setY(rect.y()); 134 point.setX(rect.x()); 136 point.setX(rect.maxX()); 137 return point; 196 // If distance between the center point and the line > the radius, 201 // The nearest point on the line is between p0 and p1?
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
fixed-dtoa.cc | 214 // we simply switch the first digit to '1' and update the decimal-point 215 // (indicating that the point is now one digit to the right). 223 // The given fractionals number represents a fixed-point number with binary 224 // point at bit (-exponent). 230 // generated by this function might be updated, and the decimal-point variable 238 // 'fractionals' is a fixed-point number, with binary point at bit 240 // is a fixed-point number, with binary point at bit 'point' 244 int point = -exponent; local 272 int point = 128; local [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
Image9.cpp | 320 POINT point = {rect.left, rect.top}; local 335 result = device->UpdateSurface(surf, &rect, destSurface, &point); 343 HRESULT result = device->UpdateSurface(sourceSurface, &rect, destSurface, &point);
|
/external/chromium_org/third_party/freetype/src/base/ |
ftoutln.c | 62 FT_Vector* point; local 69 FT_UInt first; /* index of first point in contour */ 70 FT_Int tag; /* current point's state */ 85 FT_Int last; /* index of last point in contour */ 105 point = outline->points + first; 109 /* A contour cannot start with a cubic control point! */ 113 /* check first point to determine origin */ 116 /* first point is conic control. Yes, this happens. */ 119 /* start at last point if it is on the curve */ 133 point-- [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_setup_context.h | 30 * The setup code is concerned with point/line/triangle setup and 62 * Point/line/triangle setup context. 148 void (*point)( struct lp_setup_context *, member in struct:lp_setup_context
|
lp_setup_point.c | 203 * Compute the point->coef[] array dadx, dady, a0 values. 305 /* x/y positions in fixed point */ 312 /* Point size as fixed point integer, remove rounding errors 322 struct lp_rast_triangle *point; local 357 point = lp_setup_alloc_triangle(scene, 361 if (!point) 365 point->v[0][0] = v0[0][0]; 366 point->v[0][1] = v0[0][1]; 374 info.a0 = GET_A0(&point->inputs) [all...] |
/external/chromium_org/third_party/mesa/src/src/glx/ |
glxextensions.c | 502 char *point; local 514 point = ext_str; 518 (void) memcpy(point, ext[i].name, ext[i].name_len); 519 point += ext[i].name_len; 521 *point = ' '; 522 point++; 526 *point = '\0';
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
ecparam.c | 100 * -conv_form arg - specifies the point conversion form 273 "point conversion form \n"); 480 const EC_POINT *point; local 508 if ((point = EC_GROUP_get0_generator(group)) == NULL) 510 if (!EC_POINT_point2bn(group, point, 559 BIO_printf(out, "\tEC_POINT *point = NULL;\n"); 588 BIO_printf(out, "\tif (point == NULL)\n\t\tgoto err;\n"); 595 BIO_printf(out, "\tif (!EC_GROUP_set_generator(group, point," 602 BIO_printf(out, "\tif (point)\n\t\tEC_POINT_free(point);\n") [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec_key.c | 309 EC_POINT *point = NULL; local 325 if ((point = EC_POINT_new(eckey->group)) == NULL) 334 /* testing whether pub_key * order is the point at infinity */ 341 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) 346 if (!EC_POINT_is_at_infinity(eckey->group, point)) 361 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, 367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, 378 if (point != NULL) 379 EC_POINT_free(point); 387 EC_POINT *point = NULL local [all...] |
/external/chromium_org/ui/gfx/ |
render_text_mac.cc | 36 SelectionModel RenderTextMac::FindCursorPosition(const Point& point) { 300 SkPoint* point = &run->glyph_positions[glyph]; local 301 point->set(x + SkDoubleToScalar(positions_ptr[glyph].x),
|
transform.cc | 15 #include "ui/gfx/point.h" 396 void Transform::TransformPoint(Point* point) const { 397 DCHECK(point); 398 TransformPointInternal(matrix_, point); 401 void Transform::TransformPoint(Point3F* point) const { 402 DCHECK(point); 403 TransformPointInternal(matrix_, point); 406 bool Transform::TransformPointReverse(Point* point) const 459 gfx::Point3F point = box->origin(); local [all...] |
/external/chromium_org/v8/src/ |
fixed-dtoa.cc | 215 // we simply switch the first digit to '1' and update the decimal-point 216 // (indicating that the point is now one digit to the right). 224 // The given fractionals number represents a fixed-point number with binary 225 // point at bit (-exponent). 231 // generated by this function might be updated, and the decimal-point variable 239 // 'fractionals' is a fixed-point number, with binary point at bit 241 // is a fixed-point number, with binary point at bit 'point' 245 int point = -exponent; local 273 int point = 128; local [all...] |
/external/clang/test/Analysis/ |
array-struct-region.c | 61 struct point { int x; int y; }; struct 62 struct circle { struct point o; int r; }; 66 result.o = (struct point){0, 0}; 79 struct circle_f { struct point o; float r; }; 83 result.o = (struct point){0, 0}; 258 struct point center; 261 extern int test13116945(struct point x); 262 static void radar13116945(struct point centerCoordinate) {
|
/external/clang/test/Sema/ |
flexible-array-init.c | 39 struct point { struct 45 struct point points[]; // expected-note{{initialized flexible array member 'points' is here}}
|
/external/freetype/src/base/ |
ftoutln.c | 62 FT_Vector* point; local 69 FT_UInt first; /* index of first point in contour */ 70 FT_Int tag; /* current point's state */ 85 FT_Int last; /* index of last point in contour */ 105 point = outline->points + first; 109 /* A contour cannot start with a cubic control point! */ 113 /* check first point to determine origin */ 116 /* first point is conic control. Yes, this happens. */ 119 /* start at last point if it is on the curve */ 133 point-- [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Line.java | 111 public float distanceSquared(Vector3f point) {
117 point.subtract(origin, compVec1);
120 compVec2.subtract(point, compVec1);
126 public float distance(Vector3f point) {
127 return FastMath.sqrt(distanceSquared(point));
190 * <code>random</code> determines a random point along the line.
191 * @return a random point on the line.
198 * <code>random</code> determines a random point along the line.
201 * @return a random point on the line.
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_context.h | 30 * The setup code is concerned with point/line/triangle setup and 62 * Point/line/triangle setup context. 148 void (*point)( struct lp_setup_context *, member in struct:lp_setup_context
|
lp_setup_point.c | 203 * Compute the point->coef[] array dadx, dady, a0 values. 305 /* x/y positions in fixed point */ 312 /* Point size as fixed point integer, remove rounding errors 322 struct lp_rast_triangle *point; local 357 point = lp_setup_alloc_triangle(scene, 361 if (!point) 365 point->v[0][0] = v0[0][0]; 366 point->v[0][1] = v0[0][1]; 374 info.a0 = GET_A0(&point->inputs) [all...] |
/external/mesa3d/src/glx/ |
glxextensions.c | 502 char *point; local 514 point = ext_str; 518 (void) memcpy(point, ext[i].name, ext[i].name_len); 519 point += ext[i].name_len; 521 *point = ' '; 522 point++; 526 *point = '\0';
|
/external/openssl/apps/ |
ecparam.c | 100 * -conv_form arg - specifies the point conversion form 273 "point conversion form \n"); 480 const EC_POINT *point; local 508 if ((point = EC_GROUP_get0_generator(group)) == NULL) 510 if (!EC_POINT_point2bn(group, point, 559 BIO_printf(out, "\tEC_POINT *point = NULL;\n"); 588 BIO_printf(out, "\tif (point == NULL)\n\t\tgoto err;\n"); 595 BIO_printf(out, "\tif (!EC_GROUP_set_generator(group, point," 602 BIO_printf(out, "\tif (point)\n\t\tEC_POINT_free(point);\n") [all...] |
/external/openssl/crypto/ec/ |
ec_key.c | 309 EC_POINT *point = NULL; local 325 if ((point = EC_POINT_new(eckey->group)) == NULL) 334 /* testing whether pub_key * order is the point at infinity */ 341 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) 346 if (!EC_POINT_is_at_infinity(eckey->group, point)) 361 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, 367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, 378 if (point != NULL) 379 EC_POINT_free(point); 387 EC_POINT *point = NULL local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysvideo.cc | 578 BPoint point; local 584 (SDL_Win->View())->GetMouse(&point, &buttons, true); 586 point.x = -1; 587 point.y = -1; 591 if ( (point.x >= 0) && (point.x < SDL_VideoSurface->w) && 592 (point.y >= 0) && (point.y < SDL_VideoSurface->h) ) { 595 (Sint16)point.x, (Sint16)point.y) [all...] |
/external/v8/src/ |
fixed-dtoa.cc | 215 // we simply switch the first digit to '1' and update the decimal-point 216 // (indicating that the point is now one digit to the right). 224 // The given fractionals number represents a fixed-point number with binary 225 // point at bit (-exponent). 231 // generated by this function might be updated, and the decimal-point variable 239 // 'fractionals' is a fixed-point number, with binary point at bit 241 // is a fixed-point number, with binary point at bit 'point' 245 int point = -exponent; local 273 int point = 128; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Type_Names_Suite.py | 22 class point(aetools.ComponentItem): class in inherits:aetools.ComponentItem 23 """point - point coordinates """ 79 """fixed point - """ 95 """long fixed point - """ 107 """long point - """ 186 point._superclassnames = [] 187 point._privpropdict = { 189 point._privelemdict = { 387 'QDpt' : point, [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingBox.java | 128 Vector3f point;
local 130 point = tris[i].get(0);
131 checkMinMax(min, max, point);
132 point = tris[i].get(1);
133 checkMinMax(min, max, point);
134 point = tris[i].get(2);
135 checkMinMax(min, max, point);
161 Vector3f point;
local 165 point = triangle.get(0);
166 checkMinMax(min, max, point);
746 Vector3f point = new Vector3f(ray.direction).multLocal(t[0]).addLocal(ray.origin); local [all...] |