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

1 2 3

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 143 int xpos, ypos, MB_in_width; local
147 ypos = PV_GET_ROW(mbnum, MB_in_width);
148 xpos = mbnum - ypos * MB_in_width;
149 lumstart = (ypos << 4) * (int32)width_Y + (xpos << 4);
150 chrstart = (ypos << 3) * (int32)width_C + (xpos << 3);
mb_motion_comp.cpp 136 int ypos, xpos; local
178 ypos = video->mbnum_row << 4 ;
184 /* ypos*width -> row, +x -> column */
185 offset = (int32)ypos * width + xpos;
191 /* imv = (xpos/8) + ((ypos/8) * mvwidth) */
250 /* luminance_pred_mode_inter4v(xpos, ypos, px, py, c_prev,
257 ypred = (int)((ypos << 1) + py[0]);
293 ypred = (int)((ypos << 1) + py[1]);
329 ypred = (int)(((ypos + B_SIZE) << 1) + py[2]);
366 ypred = (int)(((ypos + B_SIZE) << 1) + py[3])
554 int ypos, xpos; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
accum.c 190 GLint xpos, GLint ypos, GLint width, GLint height,
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
248 GLint xpos, GLint ypos, GLint width, GLint height,
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
342 GLint xpos, GLint ypos, GLint width, GLint height)
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
455 GLint xpos, ypos, width, height; local
466 ypos = ctx->DrawBuffer->_Ymin
    [all...]
  /external/grub/docs/
kernel.c 39 static int ypos; variable
155 /* Clear the screen and initialize VIDEO, XPOS and YPOS. */
167 ypos = 0;
224 ypos++;
225 if (ypos >= LINES)
226 ypos = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
  /external/mesa3d/src/mesa/main/
accum.c 190 GLint xpos, GLint ypos, GLint width, GLint height,
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
248 GLint xpos, GLint ypos, GLint width, GLint height,
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
342 GLint xpos, GLint ypos, GLint width, GLint height)
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
455 GLint xpos, ypos, width, height; local
466 ypos = ctx->DrawBuffer->_Ymin
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-gcm.c 148 u8 *ypos = y; local
158 aes_encrypt(aes, cb, ypos);
159 xor_block(ypos, xpos);
161 ypos += AES_BLOCK_SIZE;
170 *ypos++ = *xpos++ ^ tmp[i];
  /external/jpeg/
jccoefct.c 150 JDIMENSION ypos, xpos; local
173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
180 ypos, xpos, (JDIMENSION) blockcnt);
198 ypos += DCTSIZE;
  /external/qemu/distrib/jpeg-6b/
jccoefct.c 150 JDIMENSION ypos, xpos; local
173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
180 ypos, xpos, (JDIMENSION) blockcnt);
198 ypos += DCTSIZE;
  /frameworks/native/include/input/
VelocityTracker.h 216 float ypos, yvel, yaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State
223 void initState(State& state, nsecs_t eventTime, float xpos, float ypos) const;
224 void updateState(State& state, nsecs_t eventTime, float xpos, float ypos) const;
  /frameworks/native/services/surfaceflinger/
Transform.cpp 239 int ypos = floorf(ty() + 0.5f); local
240 out = reg.translate(xpos, ypos);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 37 Int EncGetPredOutside(Int xpos, Int ypos, UChar *c_prev, UChar *rec,
104 Int ypos, xpos; local
123 ypos = ind_y << 4 ;
139 ypred = (ypos << 1) + dy ;
152 ypred = ypos + dy;
167 EncPrediction_INTER4V(xpos, ypos, mot, c_prev, c_rec,
178 ypred = ypos + dy;
241 Int ypos, /* i */
252 ypred = (Int)((ypos << 1) + mot[1].y);
260 ypred = (Int)((ypos << 1) + mot[2].y)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 90 GLint xpos, ypos; member in struct:bitmap_cache
649 cache->xpos, cache->ypos);
669 cache->ypos,
706 py = y - cache->ypos;
724 cache->ypos = y - py;
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java 194 int ypos = yPosition.get(yPosition.size() - 1); local
218 if (y == 0 && ypos < yLimitf && getym(lineLength) > ypos - 2) {
219 y = ypos + 2;
220 } else if (y == 1 && ypos > yLimits && getym(lineLength) < ypos + 2) {
221 y = ypos - 2;
222 } else if (y == 2 && getym(lineLength) > ypos - 2 && getym(lineLength) < ypos + 2) {
223 y = ypos;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 90 GLint xpos, ypos; member in struct:bitmap_cache
649 cache->xpos, cache->ypos);
669 cache->ypos,
706 py = y - cache->ypos;
724 cache->ypos = y - py;
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 138 float ypos; local
167 ypos = slope * (xpos - segmentStartX) + segmentStartY;
168 plot(xpos, ypos, sample, bitmapSize);
176 ypos = slope * (xpos - segmentStartX) + segmentStartY;
177 plot(xpos, ypos, sample, bitmapSize);
183 ypos = (float) Math.ceil(segmentStartY);
186 while (ypos < segmentEndY) {
187 xpos = invertSlope * (ypos - segmentStartY) + segmentStartX;
188 plot(xpos, ypos, sample, bitmapSize);
189 ypos++
    [all...]
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 755 float ypos = yo; local
757 outPos->add(ypos);
762 outBounds->join(xpos + metrics.fLeft, ypos + metrics.fTop,
763 xpos + metrics.fLeft + metrics.fWidth, ypos + metrics.fTop + metrics.fHeight);
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_matching.cpp 2699 int i,xi,yi,xpos,ypos,nr; local
2734 int i,xi,yi,xpos,ypos,nr; local
2787 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2831 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2878 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
    [all...]
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_feature_matching.cpp 2699 int i,xi,yi,xpos,ypos,nr; local
2734 int i,xi,yi,xpos,ypos,nr; local
2787 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2831 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2878 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_matching.cpp 2699 int i,xi,yi,xpos,ypos,nr; local
2734 int i,xi,yi,xpos,ypos,nr; local
2787 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2831 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
2878 int i,xi,yi,xpos,ypos,nr,wxi,wyi; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/glx/
egl_glx.c 816 int xpos, ypos; local
818 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
xm_api.c 276 int xpos, ypos; local
278 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmwgfx_drm.h 486 * @ypos: Y position of cursor.
497 int32_t ypos; member in struct:drm_vmw_cursor_bypass_arg
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_api.c 227 int xpos, ypos; local
229 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth);
    [all...]
  /external/mesa3d/src/egl/drivers/glx/
egl_glx.c 816 int xpos, ypos; local
818 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.c 276 int xpos, ypos; local
278 stat = XGetGeometry(dpy, d, &root, &xpos, &ypos, &w, &h, &bw, &depth);
    [all...]

Completed in 723 milliseconds

1 2 3