HomeSort by relevance Sort by last modified time
    Searched full:width (Results 376 - 400 of 5869) sorted by null

<<11121314151617181920>>

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_luma.cpp 25 int width,
47 incr = width - BLKSIZE;
50 for (MB_H = 0; MB_H < width; MB_H += MBSIZE)
62 ptr = &Rec_Y[(int32)(BLK_V) * width + MB_H + BLK_H];
97 thr, width, max_diff);
109 max_diff = (QP_store[((((int32)MB_V*width)>>4))>>4] >> 2) + 4;
117 ptr = &Rec_Y[(int32)(MB_V + BLK_V) * width + BLK_H];
151 thr, width, max_diff);
158 for (MB_H = MBSIZE; MB_H < width; MB_H += MBSIZE)
160 max_diff = (QP_store[((((int32)MB_V*width)>>4)+MB_H)>>4] >> 2) + 4
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.People.html 81 <TABLE summary="Changed Methods" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
90 <TD VALIGN="TOP" WIDTH="30%">
96 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="30%">
106 <TD VALIGN="TOP" WIDTH="25%">
110 <TD VALIGN="TOP" WIDTH="30%">
116 <TD VALIGN="TOP" WIDTH="25%">
120 <TD VALIGN="TOP" WIDTH="30%">
126 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
android.webkit.Plugin.html 80 <TABLE summary="Changed Constructors" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
89 <TD VALIGN="TOP" WIDTH="30%">
99 <TABLE summary="Changed Methods" WIDTH="100%">
104 <TD VALIGN="TOP" WIDTH="25%">
108 <TD VALIGN="TOP" WIDTH="30%">
114 <TD VALIGN="TOP" WIDTH="25%">
118 <TD VALIGN="TOP" WIDTH="30%">
124 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="30%"
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
android.view.MotionEvent.html 81 <TABLE summary="Removed Methods" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
96 <TABLE summary="Added Methods" WIDTH="100%">
101 <TD VALIGN="TOP" WIDTH="25%">
108 <TD VALIGN="TOP" WIDTH="25%">
115 <TD VALIGN="TOP" WIDTH="25%">
122 <TD VALIGN="TOP" WIDTH="25%">
129 <TD VALIGN="TOP" WIDTH="25%">
136 <TD VALIGN="TOP" WIDTH="25%">
143 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
java.sql.ResultSet.html 81 <TABLE summary="Added Methods" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
142 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.cpp 78 Int width = currVop->width; local
131 if (lx != width) input -= (ind_y << 9); /* non-padded offset */
151 dctMode = ((width << 3) - 8);
163 if (lx != width) input -= (ind_y << 7);
165 width >>= 1;
168 sad = getBlockSum(input, width);
178 sad = Sad8x8(input, pred, width);
184 if (lx != width) input -= (ind_y << 7);
187 sad = getBlockSum(input, width);
309 Int width = currVop->width; local
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 205 FloatRect(rect.x(), rect.y(), rect.width(), 1),
206 FloatRect(rect.x(), rect.bottom() - 1, rect.width(), 1),
225 float width = strokeThickness(); local
232 // works out. For example, with a border width of 3, KHTML will pass us (y1+y2)/2, e.g.,
233 // (50+53)/2 = 103/2 = 51 when we want 51.5. It is always true that an even width gave
234 // us a perfect position, but an odd width gave us a position that is off by exactly 0.5.
237 p1.move(0, width);
238 p2.move(0, -width);
240 p1.move(width, 0);
241 p2.move(-width, 0)
386 float width = strokeThickness(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 40 private static final int WIDTH = 100;
50 Bitmap b = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888);
60 Bitmap expected = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888);
66 for (int i = 0; i <= WIDTH + SQUARE; i += ADVANCE) {
74 for (int x = 0; x < WIDTH; x++) {
86 p.lineTo(WIDTH, HEIGHT / 2);
ShaderTest.java 53 int width = 80; local
55 int[] color = new int[width * height];
56 Bitmap bitmap = Bitmap.createBitmap(color, width, height, Bitmap.Config.RGB_565);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 45 private static final int WIDTH = 150;
47 private static final int STRIDE = 320; // must be >= WIDTH
59 Bitmap src = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
70 for (int x = 0; x < WIDTH; x++) {
71 int r = x * 255 / (WIDTH - 1);
105 canvas.drawText(String.valueOf(mDecodingCount), WIDTH / 2 - 20,
  /external/skia/src/images/
SkFlipPixelRef.cpp 5 SkFlipPixelRef::SkFlipPixelRef(SkBitmap::Config config, int width, int height)
6 : fFlipper(width, height) {
8 fSize = SkBitmap::ComputeSize(config, width, height);
23 device->setConfig(fConfig, fFlipper.width(), fFlipper.height());
88 const size_t bytes = rect.width() << shift;
120 const SkIRect bounds = {0, 0, dst.width(), dst.height()};
  /external/webkit/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 122 int width = 10;
123 GetTextExtent(*m_platformData.font(), (wxChar)glyph, &width, NULL);
124 return width;
149 int width; local
150 GetCharWidthI(hdc, glyph, 1, 0, &width);
153 return width;
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 108 void GetTextExtent( const wxFont& font, const wxString& str, wxCoord *width, wxCoord *height,
115 wxDouble width, height, descent, externalLeading;
117 gc->GetTextExtent(str, &e.width, &e.height, &e.descent, &e.externalLeading);
118 if ( width )
119 *width = wxCoord(e.width + .5);
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.view.KeyEvent.html 79 <TABLE summary="Added Constructors" WIDTH="100%">
84 <TD VALIGN="TOP" WIDTH="25%">
91 <TD VALIGN="TOP" WIDTH="25%">
102 <TABLE summary="Added Methods" WIDTH="100%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
146 <TABLE summary="Added Fields" WIDTH="100%"
    [all...]
  /frameworks/base/include/ui/
Rect.h 53 // a valid rectangle has a non negative width and height
55 return (width()>=0) && (height()>=0);
58 // an empty rect has a zero width or height, or is invalid
60 return (width()<=0) || (height()<=0);
67 // rectangle's width
68 inline int32_t width() const { function in class:android::Rect
  /packages/inputmethods/PinyinIME/res/xml/
skb_sym1.xml 19 width="10%p"
46 <row width="10.205%p">
47 <key code="-5" width="14.286%p" key_type="2" label="ALT"/>
72 <row width="14.696%p" key_type="1">
73 <key code="-2" label="? ?" width="20%p" repeat="true">
77 <key code="62" key_type="5" width="30.608%p"/>
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 44 Visualization3RS(int width, int height) {
45 super(width, height, R.drawable.ice);
120 final int width = mWidth; local
125 for (int i = 0; i < width; i++) {
131 if (cnt > width) {
133 cnt -= width;
  /bionic/libc/stdio/
vfscanf.c 105 size_t width; /* field width, or 0 */ local
137 width = 0;
192 width = width * 10 + c - '0';
337 if (width == 0)
338 width = 1;
342 if ((n = fp->_r) < (int)width) {
344 width -= n;
352 sum += width;
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 35 void SkBlitter::blitH(int x, int y, int width)
60 void SkBlitter::blitRect(int x, int y, int width, int height)
63 this->blitH(x, y++, width);
179 int width = clip.width(); local
180 SkAutoSTMalloc<64, int16_t> runStorage(width + 1);
184 sk_memset16((uint16_t*)runs, 1, width);
185 runs[width] = 0;
219 this->blitRect(cr.fLeft, cr.fTop, cr.width(), cr.height());
229 this->blitRect(cr.fLeft, cr.fTop, cr.width(), cr.height())
267 int width = 0; local
408 int width = compute_anti_width(runs); local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/4/changes/
android.R.attr.html 81 <TABLE summary="Added Fields" WIDTH="100%">
86 <TD VALIGN="TOP" WIDTH="25%">
93 <TD VALIGN="TOP" WIDTH="25%">
100 <TD VALIGN="TOP" WIDTH="25%">
107 <TD VALIGN="TOP" WIDTH="25%">
114 <TD VALIGN="TOP" WIDTH="25%">
121 <TD VALIGN="TOP" WIDTH="25%">
128 <TD VALIGN="TOP" WIDTH="25%">
135 <TD VALIGN="TOP" WIDTH="25%">
142 <TD VALIGN="TOP" WIDTH="25%"
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayout_LayoutParamsTest.java 93 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
98 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
106 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
110 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
123 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
132 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
137 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
147 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
152 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
162 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
RegisterMapper.java 31 * Gets the count of registers (really, the total register width, since
32 * category width is counted) in the new namespace.
33 * @return >= 0 width of new namespace.
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.c 24 fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize)
29 for (nn = 0; nn < width; nn++)
55 for (nn = 0; nn < width; nn++) {
  /external/bison/lib/
mbswidth.c 73 width 1. */
112 int width; local
114 width = 0;
143 width++;
164 width++;
177 width++;
191 width += w;
195 width += (iswcntrl (wc) ? 0 : 1);
205 return width;
214 width++
    [all...]
  /external/chromium/base/
sys_info_mac.cc 46 void SysInfo::GetPrimaryDisplayDimensions(int* width, int* height) {
48 if (width)
49 *width = CGDisplayPixelsWide(main_display);

Completed in 1988 milliseconds

<<11121314151617181920>>