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

1 2 3 4

  /frameworks/av/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/wpa_supplicant_8/src/crypto/
fips_prf_internal.c 22 u8 *xpos = x; local
53 os_memcpy(xpos, _t, 20);
58 carry += xkey[k] + xpos[k];
63 xpos += SHA1_MAC_LEN;
fips_prf_openssl.c 31 u8 *xpos = x; local
61 os_memcpy(xpos, _t, 20);
66 carry += xkey[k] + xpos[k];
71 xpos += 20;
  /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/webkit/Source/WebCore/platform/graphics/
TextRun.h 45 TextRun(const UChar* c, int len, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
48 , m_xpos(xpos)
65 TextRun(const String& s, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
68 , m_xpos(xpos)
99 float xPos() const { return m_xpos; }
  /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...]
  /external/regex-re2/util/
stringpiece.cc 48 const size_type xpos = result - ptr_; local
49 return xpos + s.length_ <= length_ ? xpos : npos;
  /frameworks/av/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...]
  /frameworks/base/include/androidfw/
VelocityTracker.h 215 float xpos, xvel, xaccel; 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;
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 334 int xpos = nofilter_trans_preamble(s, &xy, x, y); local
346 if (xpos < 0) {
347 n = -xpos;
357 xpos = 0;
361 if (xpos < width) {
362 n = width - xpos;
366 fill_sequential(xptr, xpos, n);
382 int xpos = nofilter_trans_preamble(s, &xy, x, y); local
391 int start = sk_int_mod(xpos, width);
422 int xpos = nofilter_trans_preamble(s, &xy, x, y) local
    [all...]
  /external/harfbuzz/contrib/
harfbuzz-freetype.c 68 hb_uint32 point, HB_Fixed *xpos, HB_Fixed *ypos,
88 *xpos = face->glyph->outline.points[point].x;
  /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 43 const size_type xpos = result - ptr_; local
44 return xpos + s.length_ <= length_ ? xpos : npos;
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java 193 int xpos = xPosition.get(xPosition.size() - 1); local
206 if (xpos >= lineLength * 2) {
314 float xpos = 0; field in class:TestBatchNodeCluster
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
SchedGui.py 150 (xpos, ypos) = self.scroll.GetViewStart()
151 xpos = self.us_to_px(x) / self.scroll_scale
152 self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale, xpos, ypos)
  /external/skia/include/core/
SkDraw.h 138 const SkPath* next(SkScalar* xpos); //!< returns nil when there are no more paths
150 SkScalar fXPos; // accumulated xpos, returned in next
  /external/skia/include/utils/
SkNWayCanvas.h 59 const SkScalar xpos[], SkScalar constY,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
video.h 176 uint32_t xpos; /* 23-22 button color number */ member in struct:video_highlight

Completed in 573 milliseconds

1 2 3 4