HomeSort by relevance Sort by last modified time
    Searched defs:x_pos (Results 1 - 16 of 16) sorted by null

  /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/harfbuzz/src/
harfbuzz-buffer.h 49 HB_Fixed x_pos; member in struct:HB_PositionRec_
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.h 49 HB_Fixed x_pos; member in struct:HB_PositionRec_
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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...]
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);
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],
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)
vlc_decode.cpp 144 int x_pos = video->mbnum_col; local
147 int pos = (x_pos + y_pos * doubleWidth) << 1;
    [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/av/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/av/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...]
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...]
  /external/qemu/android/skin/
window.c 958 int x_pos; member in struct:SkinWindow
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2026 Int x_pos = video->outputMB->mb_x; \/* 5\/28\/01 *\/ local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 413 milliseconds