/external/chromium/chrome/browser/ |
ntp_background_util.cc | 20 int x_pos = 0; local 29 x_pos += area.width() - ntp_background->width(); 33 x_pos += area.width() / 2 - ntp_background->width() / 2; 39 } else if (x_pos > 0) { 40 x_pos = x_pos % ntp_background->width() - ntp_background->width(); 50 x_pos += area.x(); 53 canvas->TileImageInt(*ntp_background, x_pos, y_pos, width, height);
|
/external/freetype/src/sfnt/ |
ttsbit0.c | 359 FT_Int x_pos, 365 FT_Int x_pos, 373 FT_Int x_pos, 399 if ( x_pos < 0 || x_pos + width > bit_width || 413 line += y_pos * pitch + ( x_pos >> 3 ); 414 x_pos &= 7; 416 if ( x_pos == 0 ) /* the easy one */ 434 else /* x_pos > 0 */ 446 write[0] = (FT_Byte)( write[0] | ( wval >> x_pos ) ); [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
dcac_prediction.cpp | 41 int x_pos = video->mbnum_col; local 52 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; 79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */ 102 if (x_pos == 0 && y_pos == 0) 108 else if (x_pos == 0) 217 int x_pos = video->mbnum_col; local 223 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; 261 if (x_pos == 0 && y_pos == 0) 266 else if (x_pos == 0)
|
combined_decode.cpp | 350 int x_pos = video->mbnum_col; local 352 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; 554 int x_pos = video->mbnum_col; local 555 int32 offset = (int32)(y_pos << 4) * width + (x_pos << 4); 563 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1); 707 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4], 731 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5], 785 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4], 809 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
|
datapart_decode.cpp | 630 int x_pos = video->mbnum_col; local 653 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1); 715 offset = (int32)(y_pos << 4) * width + (x_pos << 4); 755 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4], 775 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
|
block_idct.cpp | 229 int x_pos = video->mbnum_col; local 235 offset = (int32)(y_pos << 4) * width + (x_pos << 4); 238 cu_comp = currVop->uChan + (offset >> 2) + (x_pos << 2); 239 cv_comp = currVop->vChan + (offset >> 2) + (x_pos << 2);
|
vlc_dequant.cpp | 61 int x_pos = video->mbnum_col; local 62 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; 512 int x_pos = video->mbnum_col; local 513 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; 814 int x_pos = video->mbnum_col; local 815 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; [all...] |
vlc_decode.cpp | 144 int x_pos = video->mbnum_col; local 147 int pos = (x_pos + y_pos * doubleWidth) << 1; [all...] |
/external/harfbuzz/src/ |
harfbuzz-buffer.h | 49 HB_Fixed x_pos; member in struct:HB_PositionRec_
|
harfbuzz-gpos.c | 495 gd->x_pos += x_scale * vr->XPlacement / 0x10000; 510 gd->x_pos += pixel_value << 6; 538 gd->x_pos += value; [all...] |
harfbuzz-shaper.cpp | [all...] |
/external/webkit/Source/WebCore/platform/graphics/gtk/ |
FontGtk.cpp | 427 int x_pos; local 429 x_pos = 0; 431 pango_layout_line_index_to_x(layoutLine, from, FALSE, &x_pos); 432 float beforeWidth = PANGO_PIXELS_FLOOR(x_pos); 434 x_pos = 0; 436 pango_layout_line_index_to_x(layoutLine, to, FALSE, &x_pos); 437 float afterWidth = PANGO_PIXELS(x_pos);
|
/frameworks/base/media/libstagefright/codecs/avc/enc/src/ |
motion_comp.cpp | 48 uint32 x_pos, y_pos; local 93 x_pos = (offset_x << 2) + *mv++; /*quarter pel */ 99 eLumaMotionComp(ref_l, picPitch, picHeight, x_pos, y_pos, 104 eChromaMotionComp(ref_Cb, picWidth >> 1, picHeight >> 1, x_pos, y_pos, 107 eChromaMotionComp(ref_Cr, picWidth >> 1, picHeight >> 1, x_pos, y_pos, 122 int x_pos, int y_pos, 132 dx = x_pos & 3; 134 x_pos = x_pos >> 2; /* round it to full-pel resolution */ 141 ref += y_pos * picpitch + x_pos; [all...] |
avcenc_lib.h | 417 \param "x_pos" "X-coordinate of the predicted block in quarter pel resolution." 426 int x_pos, int y_pos, 456 int x_pos, int y_pos, uint8 *pred, int pred_pitch, [all...] |
intra_est.cpp | 37 int x_pos = (video->mb_x) << 4; local 39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos; 46 if (((x_pos >> 4) != (int)video->PicWidthInMbs - 1) && 67 offset = (y_pos >> 2) * picPitch + (x_pos >> 1); 118 int x_pos = (video->mb_x) << 4; local 143 orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos; 211 int x_pos = (video->mb_x) << 4; local 215 int offset = y_pos * pitch + x_pos; 1368 int x_pos = video->mb_x << 3; local [all...] |
/frameworks/base/media/libstagefright/codecs/avc/common/src/ |
deblock.cpp | 120 int x_pos = video->mb_x; local 127 curL = currPic->Sl + offset + (x_pos << 4); 130 offset += (x_pos << 3); 181 DeblockMb(video, x_pos, y_pos, pred_block + 84, pred_block + 452, pred_block + 596); 206 if (x_pos) /* find the width */ 211 if (x_pos == (int)(video->PicWidthInMbs - 1)) 248 if (x_pos != (int)(video->PicWidthInMbs - 1)) /* now copy from the right-most 4 columns to the left-most 4 columns */ 277 DeblockMb(video, x_pos, y_pos, curL, curCb, curCr); [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
vlc_encode.cpp | 2026 Int x_pos = video->outputMB->mb_x; \/* 5\/28\/01 *\/ local [all...] |
/external/chromium/chrome/browser/ui/views/ |
browser_actions_container.h | 434 void SetDropIndicator(int x_pos);
|
browser_actions_container.cc | [all...] |
/external/qemu/android/skin/ |
window.c | 947 int x_pos; member in struct:SkinWindow [all...] |