/external/chromium_org/third_party/freetype/src/smooth/ |
ftsmooth.c | 143 cbox.xMax = FT_PIX_CEIL( cbox.xMax ); 146 if ( cbox.xMin < 0 && cbox.xMax > FT_INT_MAX + cbox.xMin ) 149 " xMin = %d, xMax = %d\n", 150 cbox.xMin >> 6, cbox.xMax >> 6 )); 154 width = (FT_UInt)( ( cbox.xMax - cbox.xMin ) >> 6 );
|
/external/freetype/src/smooth/ |
ftsmooth.c | 155 cbox.xMax = FT_PIX_CEIL( cbox.xMax ); 158 if ( cbox.xMin < 0 && cbox.xMax > FT_INT_MAX + cbox.xMin ) 161 " xMin = %d, xMax = %d\n", 162 cbox.xMin >> 6, cbox.xMax >> 6 )); 167 width = ( cbox.xMax - cbox.xMin ) >> 6;
|
/external/libgsm/src/ |
rpe.c | 267 word xmax, xmaxc, temp, temp1, temp2; local 271 /* Find the maximum absolute value xmax of xM[0..12]. 274 xmax = 0; 278 if (temp > xmax) xmax = temp; 281 /* Qantizing and coding of xmax to get xmaxc. 285 temp = SASR( xmax, 9 ); 301 xmaxc = gsm_add( SASR(xmax, temp), exp << 3 );
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/ |
SDL_sysjoystick.c | 141 int xmax; member in struct:joystick_hwdata 283 hw->xmax = 0; 421 if (joy->hwdata->x > joy->hwdata->xmax) { 422 joy->hwdata->xmax = joy->hwdata->x; 424 if (joy->hwdata->xmin == joy->hwdata->xmax) { 426 joy->hwdata->xmax++; 429 v -= (joy->hwdata->xmax + joy->hwdata->xmin + 1)/2; 430 v *= 32768/((joy->hwdata->xmax - joy->hwdata->xmin + 1)/2);
|
/external/opencv/cv/src/ |
cvfloodfill.cpp | 104 int XMin, XMax, YMin = seed.y, YMax = seed.y; 108 L = R = XMin = XMax = seed.x; 138 XMax = --R; 158 if( XMax < R ) XMax = R; 214 region->rect.width = XMax - XMin + 1; 236 int XMin, XMax, YMin = seed.y, YMax = seed.y; 240 L = R = XMin = XMax = seed.x; 270 XMax = --R; 290 if( XMax < R ) XMax = R [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
HillHeightMap.java | 173 int xMax = Math.round(x + radius + 1);
182 if (xMax > size) {
183 xMax = size - 1;
193 for (int i = xMin; i <= xMax; i++) {
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree9.test | 91 CREATE VIRTUAL TABLE rt2 USING rtree(id, xmin, xmax, ymin, ymax); 121 UPDATE rt2 SET xmin=xmin+5, ymin=ymin+5, xmax=xmax+5, ymax=ymax+5;
|
/external/sfntly/cpp/src/sfntly/table/core/ |
font_header_table.h | 75 virtual int32_t XMax(); 76 virtual void SetXMax(int32_t xmax); 125 int32_t XMax();
|
/external/chromium_org/third_party/freetype/src/base/ |
ftglyph.c | 127 cbox->xMax = cbox->xMin + ( glyph->bitmap.width << 6 ); 463 acbox->xMin = acbox->yMin = acbox->xMax = acbox->yMax = 0; 483 acbox->xMax = FT_PIX_CEIL( acbox->xMax ); 493 acbox->xMax >>= 6;
|
/external/freetype/src/base/ |
ftglyph.c | 129 cbox->xMax = cbox->xMin + ( glyph->bitmap.width << 6 ); 465 acbox->xMin = acbox->yMin = acbox->xMax = acbox->yMax = 0; 485 acbox->xMax = FT_PIX_CEIL( acbox->xMax ); 495 acbox->xMax >>= 6;
|
ftoutln.c | 471 FT_Pos xMin, yMin, xMax, yMax; 480 xMax = 0; 489 xMin = xMax = vec->x; 500 if ( x > xMax ) xMax = x; 508 acbox->xMax = xMax; 1045 xshift = FT_MSB( FT_ABS( cbox.xMax ) | FT_ABS( cbox.xMin ) ) - 14;
|
/system/core/libpixelflinger/ |
trap.cpp | 742 const int xmax = c->state.scissor.right; local 746 const int32_t xr = min(right_x >> TRI_ITERATORS_BITS, xmax); 959 const int xmax = c->state.scissor.right; local 960 if (xmin >= xmax) return; 981 memset(covPtr+xmin, 0, (xmax-xmin)*sizeof(*covPtr)); 997 c->iterators.xl = xmax; 1005 // compute xmin and xmax for the left edge 1012 // compute xmin and xmax for the right edge 1025 if (gglFixedToIntFloor(l_min) >= xmax) l_min = gglIntToFixed(xmax)-1 [all...] |
/external/chromium_org/third_party/ots/test/ |
side-by-side.cc | 79 bbox.xMax = (bbox.xMax + 63) & ~63; 83 const int w = (bbox.xMax - bbox.xMin) >> 6;
|
/external/chromium_org/third_party/icu/source/test/letest/ |
FontObject.h | 121 le_int16 xMax;
|
/external/icu4c/samples/layout/ |
sfnt.h | 158 le_int16 xMax;
|
/external/icu4c/test/letest/ |
FontObject.h | 121 le_int16 xMax;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
ctor_func.pass.cpp | 16 // discrete_distribution(size_t nw, double xmin, double xmax,
|
param_ctor_func.pass.cpp | 16 // param_type(size_t nw, double xmin, double xmax,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ |
ctor_func.pass.cpp | 17 // result_type xmax, UnaryOperation fw);
|
param_ctor_func.pass.cpp | 16 // param_type(size_t nw, double xmin, double xmax,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ |
ctor_func.pass.cpp | 17 // result_type xmax, UnaryOperation fw);
|
/external/chromium_org/cc/base/ |
math_util_unittest.cc | 42 // and y. However, if there is a bug where the initial xmin/xmax/ymin/ymax are 60 // However, if there is a bug where the initial xmin/xmax/ymin/ymax are
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
bezier.c | 584 float xmax = bez->x1; local 590 else if (bez->x2 > xmax) 591 xmax = bez->x2; 594 else if (bez->x3 > xmax) 595 xmax = bez->x3; 598 else if (bez->x4 > xmax) 599 xmax = bez->x4; 616 bounds[2] = xmax - xmin; /* width */
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_state_dump.c | 127 batch_out(brw, name, offset, 8, "vp xmax %f\n", clip->viewport_xmax); 317 vp->scissor.xmax, vp->scissor.ymax); 330 batch_out(brw, name, offset, 1, "xmax = %f\n", vp->xmax); 351 batch_out(brw, name, offset, 7, "guardband xmax = %f\n", vp->guardband.xmax); 436 batch_out(brw, name, offset, 1, "xmax %d, ymax %d\n", 437 scissor->xmax, scissor->ymax);
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
ConstraintLocLimit.java | 50 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue();
68 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue();
|