HomeSort by relevance Sort by last modified time
    Searched defs:xmin (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/ots/src/
head.h 19 int16_t xmin, xmax; member in struct:ots::OpenTypeHEAD
glyf.cc 217 int16_t num_contours, xmin, ymin, xmax, ymax; local
219 !table.ReadS16(&xmin) ||
232 if ((xmin == 32767) &&
236 OTS_WARNING("bad xmin/xmax/ymin/ymax values");
237 xmin = xmax = ymin = ymax = 0;
240 if (xmin > xmax || ymin > ymax) {
  /external/chromium_org/third_party/sqlite/src/src/
test_rtree.c 28 double xmin; member in struct:Circle::Box
56 double xmin, xmax; /* X dimensions of box being tested */ local
97 pCircle->aBox[0].xmin = pCircle->centerx;
101 pCircle->aBox[1].xmin = pCircle->centerx + pCircle->radius;
108 xmin = aCoord[0];
118 double x = (i&0x01) ? xmax : xmin;
135 if( xmin<=pCircle->aBox[i].xmin
  /external/chromium_org/cc/base/
math_util.cc 86 static inline void ExpandBoundsToIncludePoint(float* xmin,
91 *xmin = std::min(p.x(), *xmin);
232 float xmin = std::numeric_limits<float>::max(); local
238 ExpandBoundsToIncludePoint(&xmin, &xmax, &ymin, &ymax, vertices[i]);
240 return gfx::RectF(gfx::PointF(xmin, ymin),
241 gfx::SizeF(xmax - xmin, ymax - ymin));
270 float xmin = std::numeric_limits<float>::max(); local
276 ExpandBoundsToIncludePoint(&xmin, &xmax, &ymin, &ymax,
280 ExpandBoundsToIncludePoint(&xmin,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_points.c 195 GLint xmin, xmax, ymin, ymax, iy; local
204 xmin = (GLint) (x - iRadius);
212 xmin = (GLint) (x + 0.501) - iRadius;
213 xmax = xmin + iSize - 1;
227 span.x = xmin;
229 span.end = xmax - xmin + 1;
312 const GLint xmin = (GLint) (x - radius); local
321 span.x = xmin;
323 span.end = xmax - xmin + 1;
326 for (ix = xmin; ix <= xmax; ix++)
411 GLint xmin, xmax, ymin, ymax, ix, iy; local
    [all...]
s_span.c 703 const GLint xmin = ctx->DrawBuffer->_Xmin; local
721 mask[i] &= (x[i] >= xmin) & (x[i] < xmax)
729 mask[i] = (x[i] >= xmin) & (x[i] < xmax)
743 if (y < ymin || y >= ymax || x + n <= xmin || x >= xmax) {
755 if (x < xmin) {
756 const GLint leftClip = xmin - x;
760 ASSERT(x + n > xmin);
810 span->x = xmin;
815 ASSERT(span->x >= xmin);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_points.c 195 GLint xmin, xmax, ymin, ymax, iy; local
204 xmin = (GLint) (x - iRadius);
212 xmin = (GLint) (x + 0.501) - iRadius;
213 xmax = xmin + iSize - 1;
227 span.x = xmin;
229 span.end = xmax - xmin + 1;
312 const GLint xmin = (GLint) (x - radius); local
321 span.x = xmin;
323 span.end = xmax - xmin + 1;
326 for (ix = xmin; ix <= xmax; ix++)
411 GLint xmin, xmax, ymin, ymax, ix, iy; local
    [all...]
s_span.c 703 const GLint xmin = ctx->DrawBuffer->_Xmin; local
721 mask[i] &= (x[i] >= xmin) & (x[i] < xmax)
729 mask[i] = (x[i] >= xmin) & (x[i] < xmax)
743 if (y < ymin || y >= ymax || x + n <= xmin || x >= xmax) {
755 if (x < xmin) {
756 const GLint leftClip = xmin - x;
760 ASSERT(x + n > xmin);
810 span->x = xmin;
815 ASSERT(span->x >= xmin);
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 463 FT_Pos xMin, yMin, xMax, yMax;
470 xMin = 0;
481 xMin = xMax = vec->x;
491 if ( x < xMin ) xMin = x;
499 acbox->xMin = xMin;
826 FT_Pos xmin;
838 xmin = first->x;
843 if ( point->x < xmin )
978 FT_Pos xmin = 32768L; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
SDL_sysjoystick.c 139 int xmin; member in struct:joystick_hwdata
281 hw->xmin = 0xffff;
418 if (joy->hwdata->x < joy->hwdata->xmin) {
419 joy->hwdata->xmin = joy->hwdata->x;
424 if (joy->hwdata->xmin == joy->hwdata->xmax) {
425 joy->hwdata->xmin--;
429 v -= (joy->hwdata->xmax + joy->hwdata->xmin + 1)/2;
430 v *= 32768/((joy->hwdata->xmax - joy->hwdata->xmin + 1)/2);
  /external/chromium_org/third_party/libwebp/enc/
filter.c 256 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL; local
262 for (x = xmin; x <= xmax; ++x) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 583 float xmin = bez->x1; local
588 if (bez->x2 < xmin)
589 xmin = bez->x2;
592 if (bez->x3 < xmin)
593 xmin = bez->x3;
596 if (bez->x4 < xmin)
597 xmin = bez->x4;
614 bounds[0] = xmin; /* x */
616 bounds[2] = xmax - xmin; /* width */
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 92 GLint xmin, ymin, xmax, ymax; member in struct:bitmap_cache
565 cache->xmin = 1000000;
644 assert(cache->xmin <= cache->xmax);
647 cache->xmax - cache->xmin,
733 if (x < cache->xmin)
734 cache->xmin = x;
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 583 float xmin = bez->x1; local
588 if (bez->x2 < xmin)
589 xmin = bez->x2;
592 if (bez->x3 < xmin)
593 xmin = bez->x3;
596 if (bez->x4 < xmin)
597 xmin = bez->x4;
614 bounds[0] = xmin; /* x */
616 bounds[2] = xmax - xmin; /* width */
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 92 GLint xmin, ymin, xmax, ymax; member in struct:bitmap_cache
565 cache->xmin = 1000000;
644 assert(cache->xmin <= cache->xmax);
647 cache->xmax - cache->xmin,
733 if (x < cache->xmin)
734 cache->xmin = x;
  /external/qemu/android/skin/
argb.h 267 int xmin = gsx, xmax = gsx + 65536, ymin = gsy, ymax = gsy + 65536; local
271 if (xmin < sx1) xmin = sx1;
276 ww = (unsigned)(xmax-xmin);
  /external/qemu/hw/
goldfish_fb.c 255 int xmin, ymin, xmax, ymax; member in struct:__anon27197
283 rect->xmin = rect->ymin = INT_MAX;
429 if (xx1 < rect->xmin) rect->xmin = xx1;
519 rect.xmin = 0;
538 rect.ymin, rect.ymax-rect.ymin, rect.xmin, rect.xmax-rect.xmin);
541 dpy_update(s->ds, rect.xmin, rect.ymin, rect.xmax-rect.xmin, rect.ymax-rect.ymin);
  /external/webp/src/enc/
filter.c 256 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL; local
262 for (x = xmin; x <= xmax; ++x) {
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 505 GLfloat xmin, xmax, ymin, ymax; local
509 xmin = ymin * aspect;
512 glFrustumx((GLfixed)(xmin * 65536), (GLfixed)(xmax * 65536),
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_setup.c 1350 const int xmin = (int) (x + 0.75 - halfSize); local
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType.cpp 550 int16_t width = bbox.xMax - bbox.xMin;
586 info->fBBox = SkIRect::MakeLTRB(face->bbox.xMin, face->bbox.yMax,
1266 SkScalar xmin = SkIntToScalar(face->bbox.xMin) \/ upem; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 1350 const int xmin = (int) (x + 0.75 - halfSize); local
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 1141 int xmin = 0, ymin = 0, xmax = -1, ymax = -1, i, j, k; local
1186 xmin = size.width;
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 505 GLfloat xmin, xmax, ymin, ymax; local
509 xmin = ymin * aspect;
512 glFrustumx((GLfixed)(xmin * 65536), (GLfixed)(xmax * 65536),
  /system/core/libpixelflinger/
trap.cpp 741 const int xmin = c->state.scissor.left; local
745 const int32_t xl = max(left_x >> TRI_ITERATORS_BITS, xmin);
958 const int xmin = c->state.scissor.left; local
960 if (xmin >= xmax) return;
981 memset(covPtr+xmin, 0, (xmax-xmin)*sizeof(*covPtr));
998 c->iterators.xr = xmin;
1005 // compute xmin and xmax for the left edge
1012 // compute xmin and xmax for the right edge
1037 const int xml = max(xmin, gglFixedToIntFloor(l_min_i))
    [all...]

Completed in 1048 milliseconds

1 2