HomeSort by relevance Sort by last modified time
    Searched full:yoffset (Results 26 - 50 of 204) sorted by null

12 3 4 5 6 7 8 9

  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
RenderScriptWallpaper.java 100 public void onOffsetsChanged(float xOffset, float yOffset,
103 mRenderer.setOffset(xOffset, yOffset, xStep, yStep, xPixels, yPixels);
RenderScriptScene.java 85 public void setOffset(float xOffset, float yOffset,
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptWallpaper.java 97 public void onOffsetsChanged(float xOffset, float yOffset,
100 mRenderer.setOffset(xOffset, yOffset, xStep, yStep, xPixels, yPixels);
RenderScriptScene.java 85 public void setOffset(float xOffset, float yOffset,
  /external/libvpx/vpx_scale/arm/nds/
yv12extend.c 196 int yoffset, uvoffset;
205 yoffset = border * (ystride + 1);
208 src_y = src_ybc->y_buffer - yoffset;
209 dst_y = dst_ybc->y_buffer - yoffset;
  /packages/apps/Camera/src/com/android/camera/ui/
GLOptionItem.java 132 int yoffset = p.top + (height - title.getHeight()) / 2; local
134 title.draw(root, xoffset, yoffset);
137 yoffset = p.top + (height - checkbox.getHeight()) / 2;
138 checkbox.draw(root, width - checkbox.getWidth(), yoffset);
GLListView.java 175 int yoffset = mScrollY * getHeight() / mScrollHeight; local
178 root, mScrollbar, getWidth() - width, yoffset,
184 root, getWidth() - width, yoffset, width, height);
240 int yoffset = 0; local
245 int nextOffset = yoffset + item.getMeasuredHeight();
246 item.layout(0, yoffset, width, nextOffset);
247 yoffset = nextOffset;
GLView.java 206 int yoffset = component.mBounds.top - mScrollY; local
210 matrix.preTranslate(xoffset, yoffset);
226 matrix.preTranslate(-xoffset, -yoffset);
349 int yoffset = 0; local
355 yoffset += bounds.top;
358 out.set(xoffset, yoffset, xoffset + descendant.getWidth(),
359 yoffset + descendant.getHeight());
HeadUpDisplay.java 210 int yoffset = Math.max(0, anchorY - height / 2); local
212 if (yoffset + height > getHeight()) {
213 yoffset = getHeight() - height;
215 mPopupWindow.setAnchorPosition(anchorY - yoffset);
217 xoffset, yoffset, xoffset + width, yoffset + height);
  /external/webkit/WebCore/rendering/
RenderListItem.cpp 258 int yOffset = 0;
261 yOffset += o->y();
273 int leftLineOffset = leftRelOffset(yOffset, leftOffset(yOffset, false), false);
284 int rightLineOffset = rightRelOffset(yOffset, rightOffset(yOffset, false), false);
297 IntRect markerRect(markerXPos + xOffset, yOffset, m_marker->width(), m_marker->height());
  /system/core/init/
logo.c 86 fb->vi.yoffset = 1;
88 fb->vi.yoffset = 0;
  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptScene.java 85 public void setOffset(float xOffset, float yOffset, int xPixels, int yPixels) {
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES10.spec 18 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
20 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
102 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels )
GLES20.spec 23 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
25 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
112 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels )
  /frameworks/base/opengl/tools/glgen/specs/jsr239/
glspec-1.0 18 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
20 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
102 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels )
  /system/extras/tests/framebuffer/
refresh.c 57 info.yoffset = 0;
152 info.yoffset = 0;
156 info.yoffset = info.yres_virtual/2;
  /external/jpeg/
jctrans.c 284 int blkn, ci, xindex, yindex, yoffset, blockcnt; local
301 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
302 yoffset++) {
314 yindex+yoffset < compptr->last_row_height) {
316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
339 coef->MCU_vert_offset = yoffset;
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.h 92 //void compressedTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, unsigned long width, unsigned long height, unsigned long format, unsigned long imageSize, const void* data);
95 void copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height);
214 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
217 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
219 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
221 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
223 void texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset,
  /frameworks/base/opengl/libs/GLES2/
gl2_api.in 67 void API_ENTRY(glCompressedTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data) {
68 CALL_GL_API(glCompressedTexSubImage2D, target, level, xoffset, yoffset, width, height, format, imageSize, data);
73 void API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
74 CALL_GL_API(glCopyTexSubImage2D, target, level, xoffset, yoffset, x, y, width, height);
331 void API_ENTRY(glTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels) {
332 CALL_GL_API(glTexSubImage2D, target, level, xoffset, yoffset, width, height, format, type, pixels);
  /frameworks/base/opengl/libs/GLES_CM/
gl_api.in 169 void API_ENTRY(glCompressedTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) {
170 CALL_GL_API(glCompressedTexSubImage2D, target, level, xoffset, yoffset, width, height, format, imageSize, data);
175 void API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
176 CALL_GL_API(glCopyTexSubImage2D, target, level, xoffset, yoffset, x, y, width, height);
421 void API_ENTRY(glTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) {
422 CALL_GL_API(glTexSubImage2D, target, level, xoffset, yoffset, width, height, format, type, pixels);
  /external/icu4c/samples/layout/
GDIFontInstance.cpp 86 float yOffset = ps[dyStart * 2 + 1];
89 while (dyEnd < out && yOffset == ps[dyEnd * 2 + 1]) {
93 ExtTextOut(fHdc, x + (le_int32) xOffset, y + (le_int32) yOffset - font->getAscent(), ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
  /external/libvpx/vp8/common/arm/armv6/
sixtappredict8x4_v6.asm 19 ; r3 int yoffset,
31 str r3, [sp], #4 ;store yoffset
122 ldr r3, [sp, #-4] ; load back yoffset
  /bionic/libc/kernel/common/linux/
msm_q6vdec.h 110 int yoffset[4]; member in struct:vdec_vc1_panscan_regions
  /external/libvpx/vp8/common/
reconinter.c 424 int yoffset = i * 8 + j * 2; local
430 temp = x->block[yoffset ].bmi.mv.as_mv.row
431 + x->block[yoffset+1].bmi.mv.as_mv.row
432 + x->block[yoffset+4].bmi.mv.as_mv.row
433 + x->block[yoffset+5].bmi.mv.as_mv.row;
443 temp = x->block[yoffset ].bmi.mv.as_mv.col
444 + x->block[yoffset+1].bmi.mv.as_mv.col
445 + x->block[yoffset+4].bmi.mv.as_mv.col
446 + x->block[yoffset+5].bmi.mv.as_mv.col;
  /external/libvpx/vp8/common/x86/
subpixel_mmx.asm 302 ; int yoffset,
317 ;const short *VFilter = bilinear_filters_mmx[yoffset];
332 movsxd rax, dword ptr arg(3) ;yoffset
459 ; int yoffset,
474 ;const short *VFilter = bilinear_filters_mmx[yoffset];
489 movsxd rax, dword ptr arg(3) ;yoffset
614 ; int yoffset,
629 ;const short *VFilter = bilinear_filters_mmx[yoffset];
644 movsxd rax, dword ptr arg(3) ;yoffset

Completed in 528 milliseconds

12 3 4 5 6 7 8 9