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

1 2 3

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_outside.cpp 23 xpos = x half-pixel of (x,y) coordinates within a VOP; motion
78 is outside, i.e., left, right, top, bottom. xpos is compared to the left and
242 int xpos, /* i */
264 /* saturate xpos and ypos */
265 if (xpos < -16) xpos = -16;
266 if (xpos > ((width - 1) << 1)) xpos = (width - 1) << 1;
270 if (xpos < 0)
295 ptr = pred + (((ypos >> 1) + 8) << 4) + (xpos >> 1) + 8
    [all...]
mb_motion_comp.cpp 136 int ypos, xpos; local
180 xpos = video->mbnum_col << 4 ;
185 offset = (int32)ypos * width + xpos;
191 /* imv = (xpos/8) + ((ypos/8) * mvwidth) */
192 imv = (offset >> 6) - (xpos >> 6) + (xpos >> 3);
250 /* luminance_pred_mode_inter4v(xpos, ypos, px, py, c_prev,
256 xpred = (int)((xpos << 1) + px[0]);
292 xpred = (int)(((xpos + B_SIZE) << 1) + px[1]);
328 xpred = (int)((xpos << 1) + px[2])
554 int ypos, xpos; local
    [all...]
conceal.cpp 143 int xpos, ypos, MB_in_width; local
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);
mp4dec_lib.h 157 int xpos, /* i */
207 int xpos,
248 int xpos,
  /external/webkit/WebCore/platform/graphics/
TextRun.h 36 TextRun(const UChar* c, int len, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
40 , m_xpos(xpos)
55 TextRun(const String& s, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
59 , m_xpos(xpos)
83 int xPos() const { return m_xpos; }
  /external/grub/docs/
kernel.c 37 static int xpos; variable
155 /* Clear the screen and initialize VIDEO, XPOS and YPOS. */
166 xpos = 0;
223 xpos = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
233 xpos++;
234 if (xpos >= COLUMNS)
kernel.c.texi 37 static int xpos;
155 /* @r{Clear the screen and initialize VIDEO, XPOS and YPOS.} */
166 xpos = 0;
223 xpos = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
233 xpos++;
234 if (xpos >= COLUMNS)
  /external/grub/stage2/
char_io.c 311 int xpos, lpos, c, section; local
343 else if (xpos - count < 1)
347 xpos -= count;
357 gotoxy (xpos, getxy () & 0xFF);
367 if (xpos + count >= CMDLINE_WIDTH)
371 xpos += count;
386 gotoxy (xpos, getxy () & 0xFF);
396 int pos = xpos;
435 offset = xpos - plen;
438 xpos = lpos + plen
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 66 Int xpos, Int ypos, Int *xhmin, Int *yhmin, Int hp_guess)
93 imin = xpos + (mot[0].x >> 1);
95 ilow = xpos - range;
185 UChar *mode, Int xpos, Int ypos, Int *xhmin, Int *yhmin, UChar *hp_mem)
215 imin = xpos + ((comp & 1) << 3) + (mot[comp+1].x >> 1);
217 ilow = xpos + ((comp & 1) << 3) - range;
motion_comp.cpp 37 Int EncGetPredOutside(Int xpos, Int ypos, UChar *c_prev, UChar *rec,
104 Int ypos, xpos; local
124 xpos = ind_x << 4 ;
138 xpred = (xpos << 1) + dx ;
151 xpred = xpos + dx;
167 EncPrediction_INTER4V(xpos, ypos, mot, c_prev, c_rec,
179 xpred = xpos + dx;
240 Int xpos, /* i */
251 xpred = (Int)((xpos << 1) + mot[1].x);
259 xpred = (Int)(((xpos + B_SIZE) << 1) + mot[2].x)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 137 float xpos; local
163 xpos = (float) Math.ceil(segmentStartX);
166 while (xpos < segmentEndX) {
167 ypos = slope * (xpos - segmentStartX) + segmentStartY;
168 plot(xpos, ypos, sample, bitmapSize);
169 xpos++;
172 xpos = (float) Math.ceil(segmentEndX);
175 while (xpos < segmentStartX) {
176 ypos = slope * (xpos - segmentStartX) + segmentStartY;
177 plot(xpos, ypos, sample, bitmapSize);
    [all...]
  /external/openssl/apps/
engine.c 202 int xpos = 0; local
248 if(xpos == 0)
250 xpos = BIO_puts(bio_out, indent);
253 xpos += BIO_printf(bio_out, ", ");
257 if((xpos > (int)strlen(indent)) &&
258 (xpos + (int)strlen(name) > line_wrap))
261 xpos = BIO_puts(bio_out, indent);
263 xpos += BIO_printf(bio_out, "%s", name);
274 xpos = 0;
283 if(xpos > 0
    [all...]
  /external/skia/src/gl/
SkGLDevice_SWLayer.cpp 65 const SkScalar xpos[], SkScalar y,
67 draw.drawPosText((const char*)text, len, xpos, y, scalarsPerPos, paint);
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 330 int xpos = nofilter_trans_preamble(s, &xy, x, y); local
342 if (xpos < 0) {
343 n = -xpos;
353 xpos = 0;
357 if (xpos < width) {
358 n = width - xpos;
362 fill_sequential(xptr, xpos, n);
378 int xpos = nofilter_trans_preamble(s, &xy, x, y); local
387 int start = sk_int_mod(xpos, width);
418 int xpos = nofilter_trans_preamble(s, &xy, x, y) local
    [all...]
SkDevice.cpp 83 const SkScalar xpos[], SkScalar y,
85 draw.drawPosText((const char*)text, len, xpos, y, scalarsPerPos, paint);
  /external/wpa_supplicant/
crypto.c 108 u8 *xpos = x; local
138 os_memcpy(xpos, _t, 20);
143 carry += xkey[k] + xpos[k];
148 xpos += 20;
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_openssl.c 110 u8 *xpos = x; local
140 os_memcpy(xpos, _t, 20);
145 carry += xkey[k] + xpos[k];
150 xpos += 20;
  /external/chromium/base/
string_piece.cc 48 const size_type xpos = result - ptr_; local
49 return xpos + s.length_ <= length_ ? xpos : npos;
  /external/skia/include/core/
SkDraw.h 109 const SkPath* next(SkScalar* xpos); //!< returns nil when there are no more paths
121 SkScalar fXPos; // accumulated xpos, returned in next
  /external/skia/include/utils/
SkNWayCanvas.h 54 const SkScalar xpos[], SkScalar constY,
SkDumpCanvas.h 94 const SkScalar xpos[], SkScalar constY,
SkProxyCanvas.h 66 const SkScalar xpos[], SkScalar constY,
  /external/skia/src/utils/
SkProxyCanvas.cpp 126 const SkScalar xpos[], SkScalar constY,
128 fProxy->drawPosTextH(text, byteLength, xpos, constY, paint);
SkDumpCanvas.cpp 125 const SkScalar xpos[] = NULL) {
349 const SkScalar xpos[], SkScalar constY,
352 toString(text, byteLength, paint.getTextEncoding(), &str, paint, xpos);
354 str.c_str(), byteLength, SkScalarToFloat(xpos[0]),
  /external/jpeg/
jccoefct.c 150 JDIMENSION ypos, xpos; local
172 xpos = MCU_col_num * compptr->MCU_sample_width;
180 ypos, xpos, (JDIMENSION) blockcnt);

Completed in 1774 milliseconds

1 2 3