/external/opencore/codecs_v2/video/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);
|
/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...] |
/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; }
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidateView.java | 434 float xPos; 435 xPos = 0; 436 xPos += mSeparatorDrawable.getIntrinsicWidth(); 437 while (xPos < mContentWidth && pStart + pSize < candSize) { 445 if (xPos + itemWidth < mContentWidth || 0 == pSize) { 446 xPos += itemWidth; 459 float marginExtra = (mContentWidth - xPos) / pSize / 2; 461 if (mContentWidth - xPos > lastItemWidth) { 500 float xPos = mPaddingLeft; 504 xPos += drawVerticalSeparator(canvas, xPos) [all...] |
/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/WebCore/rendering/ |
RenderBR.h | 43 virtual unsigned width(unsigned /*from*/, unsigned /*len*/, const Font&, int /*xpos*/) const { return 0; } 44 virtual unsigned width(unsigned /*from*/, unsigned /*len*/, int /*xpos*/, bool /*firstLine = false*/) const { return 0; }
|
RenderFieldset.cpp | 73 int xPos; 77 xPos = borderLeft() + paddingLeft(); 80 xPos = (width() - legend->width()) / 2; 83 xPos = width() - paddingRight() - borderRight() - legend->width() - legend->marginRight(); 88 xPos = width() - paddingRight() - borderRight() - legend->width(); 91 xPos = (width() - legend->width()) / 2; 94 xPos = borderLeft() + paddingLeft() + legend->marginLeft(); 99 legend->setLocation(xPos, max((b-h)/2, 0));
|
InlineFlowBox.cpp | 254 int InlineFlowBox::placeBoxesHorizontally(int xPos, bool& needsWordSpacing) 257 setX(xPos); 259 int leftLayoutOverflow = xPos; 260 int rightLayoutOverflow = xPos; 261 int leftVisualOverflow = xPos; 262 int rightVisualOverflow = xPos; 268 leftVisualOverflow = min(xPos + boxShadowLeft, leftVisualOverflow); 270 int startX = xPos; 271 xPos += borderLeft() + paddingLeft(); 279 xPos += rt->style(m_firstLine)->font().wordSpacing() [all...] |
RenderFrameSet.cpp | 142 int xPos = 0; 145 xPos += m_cols.m_sizes[c]; 147 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height())); 148 xPos += borderThickness; 537 int xPos = 0; 546 child->setX(xPos); 567 xPos += child->width() + borderThickness; 572 maxWidth = max(xPos, maxWidth); 611 int xPos = 0; 614 child->setLocation(xPos, yPos) [all...] |
/packages/wallpapers/Basic/res/raw/ |
grass.rs | 41 float xpos = randf2(-State->width, State->width); 42 bladeStruct->xPos = xpos; 43 bladeStruct->turbulencex = xpos * 0.006f; 94 float xpos = bladeStruct->xPos + xOffset; 105 float bottomX = xpos;
|
/external/skia/src/gl/ |
SkGLDevice_SWLayer.cpp | 65 const SkScalar xpos[], SkScalar y, 67 draw.drawPosText((const char*)text, len, xpos, y, scalarsPerPos, paint);
|
/packages/apps/Gallery/src/com/android/camera/ |
GridViewSpecial.java | 68 Bitmap b, int xPos, int yPos, int w, int h); 70 int xPos, int yPos, int w, int h); 672 int xPos = mSpec.mLeftEdgePadding; 678 mDrawAdapter.drawDecoration(canvas, image, xPos, yPos, 684 xPos = mSpec.mLeftEdgePadding; 688 xPos += mSpec.mCellWidth + mSpec.mCellSpacing; 701 int xPos = leftSpacing + (col * (mSpec.mCellWidth + spacing)); 708 canvas.drawBitmap(mOutline[type], xPos, yTop, null); 933 private void drawEmptyBlock(Canvas canvas, int xPos, int yPos, int row) { 935 canvas.drawRect(xPos, yPos, xPos + mBlockWidth, yPos + mBlockHeight [all...] |
/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/astl/include/ |
string | 271 // Find the lowest position xpos, if possible, such that: 272 // pos <= xpos && xpos < size() 273 // at(xpos) == c 274 // @return xpos if it exists, npos otherwise. 279 // Find the highest position xpos, if possible, such that: 280 // xpos <= pos && xpos < size() 281 // at(xpos) == c 282 // @return xpos if it exists, npos otherwise [all...] |
/external/openssl/apps/ |
engine.c | 207 int xpos = 0; local 253 if(xpos == 0) 255 xpos = BIO_puts(bio_out, indent); 258 xpos += BIO_printf(bio_out, ", "); 262 if((xpos > (int)strlen(indent)) && 263 (xpos + (int)strlen(name) > line_wrap)) 266 xpos = BIO_puts(bio_out, indent); 268 xpos += BIO_printf(bio_out, "%s", name); 279 xpos = 0; 288 if(xpos > 0 [all...] |
/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/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/opencore/codecs_v2/video/m4v_h263/enc/src/ |
motion_comp.cpp | 38 Int EncGetPredOutside(Int xpos, Int ypos, UChar *c_prev, UChar *rec, 105 Int ypos, xpos; local 125 xpos = ind_x << 4 ; 139 xpred = (xpos << 1) + dx ; 152 xpred = xpos + dx; 168 EncPrediction_INTER4V(xpos, ypos, mot, c_prev, c_rec, 180 xpred = xpos + dx; 241 Int xpos, /* i */ 252 xpred = (Int)((xpos << 1) + mot[1].x); 260 xpred = (Int)(((xpos + B_SIZE) << 1) + mot[2].x) [all...] |
/external/skia/include/core/ |
SkDraw.h | 106 const SkPath* next(SkScalar* xpos); //!< returns nil when there are no more paths 118 SkScalar fXPos; // accumulated xpos, returned in next
|