HomeSort by relevance Sort by last modified time
    Searched defs:xmax (Results 1 - 19 of 19) sorted by null

  /external/e2fsprogs/intl/
xsize.h 88 xmax (size_t size1, size_t size2) function
  /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 );
  /device/samsung/crespo/alsa-lib/src/control/
control_ext.c 148 int64_t xmin, xmax, xstep; local
151 &xmax,
154 info->value.integer64.max = xmax;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/bsd/
SDL_sysjoystick.c 130 int xmax; member in struct:joystick_hwdata
270 hw->xmax = 0;
404 if (joy->hwdata->x > joy->hwdata->xmax) {
405 joy->hwdata->xmax = joy->hwdata->x;
407 if (joy->hwdata->xmin == joy->hwdata->xmax) {
409 joy->hwdata->xmax++;
412 v -= (joy->hwdata->xmax + joy->hwdata->xmin + 1)/2;
413 v *= 32768/((joy->hwdata->xmax - joy->hwdata->xmin + 1)/2);
  /external/libvpx/vp8/encoder/
ssim.c 330 const int xmax = (xo + KERNEL > W - 1) ? W - 1 : xo + KERNEL; local
342 for (x = xmin; x <= xmax; ++x)
  /external/qemu/android/skin/
argb.h 269 int xmin = gsx, xmax = gsx + 65536, ymin = gsy, ymax = gsy + 65536; local
274 if (xmax > sx2) xmax = sx2;
278 ww = (unsigned)(xmax-xmin);
  /external/quake/quake/src/WinQuake/
screen.cpp 531 unsigned short xmin,ymin,xmax,ymax; member in struct:__anon7222
567 pcx->xmax = LittleShort((short)(width-1));
gl_warp.cpp 410 unsigned short xmin,ymin,xmax,ymax; member in struct:__anon7090
448 || pcx->xmax >= 320
461 count = (pcx->xmax+1) * (pcx->ymax+1);
466 pix = pcx_rgb + 4*y*(pcx->xmax+1);
gl_rmain.cpp 1011 float xmin, xmax, ymin, ymax; local
1017 xmax = ymax * aspect;
1019 glFrustumf( xmin, xmax, ymin, ymax, zNear, zFar );
1027 GLdouble xmin, xmax, ymin, ymax; local
1033 xmax = ymax * aspect;
1035 glFrustum( xmin, xmax, ymin, ymax, zNear, zFar );
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 505 GLfloat xmin, xmax, ymin, ymax; local
510 xmax = ymax * aspect;
512 glFrustumx((GLfixed)(xmin * 65536), (GLfixed)(xmax * 65536),
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 205 final float xmax = mHorizontalBound; local
209 if (x > xmax) {
210 mPosX = xmax;
211 } else if (x < -xmax) {
212 mPosX = -xmax;
  /external/quake/quake/src/QW/client/
gl_rmain.c 912 float xmin, xmax, ymin, ymax; local
918 xmax = ymax * aspect;
920 glFrustumf( xmin, xmax, ymin, ymax, zNear, zFar );
928 GLdouble xmin, xmax, ymin, ymax; local
934 xmax = ymax * aspect;
936 glFrustum( xmin, xmax, ymin, ymax, zNear, zFar );
gl_warp.c 361 unsigned short xmin,ymin,xmax,ymax; member in struct:__anon6729
399 || pcx->xmax >= 320
412 count = (pcx->xmax+1) * (pcx->ymax+1);
417 pix = pcx_rgb + 4*y*(pcx->xmax+1);
client.h 496 unsigned short xmin,ymin,xmax,ymax; member in struct:__anon6686
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 604 bbox.xMax += dx;
610 bbox.xMax = (bbox.xMax + 63) & ~63;
613 glyph->fWidth = SkToU16((bbox.xMax - bbox.xMin) >> 6);
918 SkScalar xmax = SkIntToScalar(face->bbox.xMax) / upem; local
970 mx->fXMax = xmax;
981 my->fXMax = xmax;
    [all...]