HomeSort by relevance Sort by last modified time
    Searched full:xoffset (Results 1 - 25 of 348) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/vp8/encoder/arm/
variance_arm.c 22 int xoffset,
33 HFilter = vp8_bilinear_filters[xoffset];
50 int xoffset,
62 if (xoffset == 4 && yoffset == 0)
67 else if (xoffset == 0 && yoffset == 4)
72 else if (xoffset == 4 && yoffset == 4)
79 HFilter = vp8_bilinear_filters[xoffset];
103 int xoffset,
110 if (xoffset == 4 && yoffset == 0)
112 else if (xoffset == 0 && yoffset == 4
    [all...]
  /external/libvpx/vp8/encoder/x86/
variance_ssse3.c 62 int xoffset,
72 int xoffset,
84 if (xoffset == 4 && yoffset == 0)
91 else if (xoffset == 0 && yoffset == 4)
98 else if (xoffset == 4 && yoffset == 4)
110 xoffset, yoffset,
122 int xoffset,
133 if (xoffset == 4 && yoffset == 0)
140 else if (xoffset == 0 && yoffset == 4)
147 else if (xoffset == 4 && yoffset == 4
    [all...]
variance_sse2.c 79 int xoffset,
259 int xoffset,
271 vp8_vp7_bilinear_filters_mmx[xoffset], vp8_vp7_bilinear_filters_mmx[yoffset],
283 int xoffset,
293 if (xoffset == 4 && yoffset == 0)
300 else if (xoffset == 0 && yoffset == 4)
307 else if (xoffset == 4 && yoffset == 4)
319 xoffset, yoffset,
331 int xoffset,
344 if (xoffset == 4 && yoffset == 0
    [all...]
variance_mmx.c 261 int xoffset,
273 vp8_vp7_bilinear_filters_mmx[xoffset], vp8_vp7_bilinear_filters_mmx[yoffset],
285 int xoffset,
298 vp8_vp7_bilinear_filters_mmx[xoffset], vp8_vp7_bilinear_filters_mmx[yoffset],
309 int xoffset,
324 vp8_vp7_bilinear_filters_mmx[xoffset], vp8_vp7_bilinear_filters_mmx[yoffset],
332 vp8_vp7_bilinear_filters_mmx[xoffset], vp8_vp7_bilinear_filters_mmx[yoffset],
348 int xoffset,
355 vp8_sub_pixel_variance16x16_mmx(src_ptr, src_pixels_per_line, xoffset, yoffset, dst_ptr, dst_pixels_per_line, sse);
363 int xoffset,
    [all...]
  /external/libvpx/vp8/common/arm/
bilinearfilter_arm.c 43 int xoffset,
52 HFilter = vp8_bilinear_filters[xoffset];
62 int xoffset,
71 HFilter = vp8_bilinear_filters[xoffset];
81 int xoffset,
90 HFilter = vp8_bilinear_filters[xoffset];
100 int xoffset,
109 HFilter = vp8_bilinear_filters[xoffset];
filter_arm.c 72 int xoffset,
83 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
87 if (xoffset && !yoffset)
95 else if (!xoffset && yoffset)
120 int xoffset,
130 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
133 if (xoffset && !yoffset)
138 else if (!xoffset && yoffset)
162 int xoffset,
172 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap *
    [all...]
  /external/libvpx/vp8/common/x86/
vp8_asm_stubs.c 125 int xoffset,
133 HFilter = vp8_six_tap_mmx[xoffset];
145 int xoffset,
157 HFilter = vp8_six_tap_mmx[xoffset];
177 int xoffset,
188 HFilter = vp8_six_tap_mmx[xoffset];
203 int xoffset,
214 HFilter = vp8_six_tap_mmx[xoffset];
230 int xoffset,
236 vp8_bilinear_predict8x8_mmx(src_ptr, src_pixels_per_line, xoffset, yoffset, dst_ptr, dst_pitch)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.h 73 virtual void copySubImage(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, RenderbufferStorage *source) = 0;
121 bool subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img);
123 bool subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *img);
124 void copyNonRenderable(Image *image, GLenum internalFormat, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, IDirect3DSurface9 *renderTarget);
162 void loadImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type,
165 void loadAlphaImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
167 void loadAlphaFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
169 void loadAlphaHalfFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
171 void loadLuminanceImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
173 void loadLuminanceFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height
    [all...]
Texture.cpp 244 // Store the pixel rectangle designated by xoffset,yoffset,width,height with pixels stored as format/type at input
246 void Texture::loadImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type,
257 loadAlphaImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output);
260 loadLuminanceImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output, description->Format == D3DFMT_L8);
263 loadLuminanceAlphaImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output, description->Format == D3DFMT_A8L8);
266 loadRGBUByteImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output);
269 loadRGBAUByteImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output);
272 loadBGRAImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output);
281 loadRGB565ImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output);
290 loadRGBA4444ImageData(xoffset, yoffset, width, height, inputPitch, input, outputPitch, output)
    [all...]
Blit.h 32 // sourceRect, xoffset, yoffset are in D3D coordinates (0,0 in upper-left)
34 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
51 void setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PointsActivity.java 93 private void drawPoints(Canvas canvas, Paint p, float xOffset, float yOffset) {
104 float xOffset = 0;
108 canvas.drawPoint(100 + xOffset, 100 + yOffset, p);
109 xOffset += 5;
112 canvas.drawPoint(100 + xOffset, 100 + yOffset, p);
113 xOffset += 15;
116 canvas.drawPoint(100 + xOffset, 100 + yOffset, p);
117 xOffset += 30;
120 canvas.drawPoint(100 + xOffset, 100 + yOffset, p);
Lines2Activity.java 75 private void drawLines(Canvas canvas, Paint p, float xOffset, float yOffset) {
76 canvas.drawLine(10 + xOffset, yOffset, 10 + xOffset, 40 + yOffset, p);
77 canvas.drawLine(30 + xOffset, yOffset, 40 + xOffset, 40 + yOffset, p);
78 canvas.drawLine(40 + xOffset, yOffset, 75 + xOffset, 35 + yOffset, p);
79 canvas.drawLine(50 + xOffset, 5+ yOffset, 100 + xOffset, 15 + yOffset, p);
80 canvas.drawLine(60 + xOffset, yOffset, 110 + xOffset, 2 + yOffset, p)
    [all...]
  /external/libvpx/vp8/common/
filter.c 156 int xoffset,
165 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
174 int xoffset,
184 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
200 int xoffset,
210 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
226 int xoffset,
237 HFilter = vp8_sub_pel_filters[xoffset]; /* 6 tap */
403 int xoffset,
412 HFilter = vp8_bilinear_filters[xoffset];
    [all...]
  /external/proguard/src/proguard/gui/splash/
ShadowedSprite.java 32 private final VariableInt xOffset;
44 * @param xOffset the variable x-offset of the shadow, relative to the sprite itself.
51 public ShadowedSprite(VariableInt xOffset,
57 this.xOffset = xOffset;
87 int xo = xOffset.getInt(time) - b/2;
  /frameworks/base/opengl/libs/GLES2/
gl2ext_api.in 25 void API_ENTRY(glTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels) {
26 CALL_GL_API(glTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
28 void API_ENTRY(glCopyTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
29 CALL_GL_API(glCopyTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, x, y, width, height);
34 void API_ENTRY(glCompressedTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data) {
35 CALL_GL_API(glCompressedTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
157 void API_ENTRY(glExtGetTexSubImageQCOM)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels) {
158 CALL_GL_API(glExtGetTexSubImageQCOM, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, texels);
  /external/libvpx/vp8/encoder/
variance_c.c 320 int xoffset,
331 HFilter = vp8_bilinear_filters[xoffset];
348 int xoffset,
359 HFilter = vp8_bilinear_filters[xoffset];
372 int xoffset,
383 HFilter = vp8_bilinear_filters[xoffset];
433 int xoffset,
440 vp8_sub_pixel_variance16x16_c(src_ptr, src_pixels_per_line, xoffset, yoffset, dst_ptr, dst_pixels_per_line, sse);
448 int xoffset,
459 HFilter = vp8_bilinear_filters[xoffset];
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
text_test.rs 60 int xOffset = 0, yOffset = 0;
63 xOffset = textOffsets[fillI * 2];
70 rsgDrawText(sampleText, xOffset + textWidth * h, yPos);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 472 int xOffset, int yOffset,
487 A.copy2DRangeFrom(xOffset, yOffset, width, height, src);
492 for (int x = xOffset + width - 1; x >= xOffset ; x--) {
499 int xOffset, int yOffset,
514 A.copy2DRangeFrom(xOffset, yOffset, width, height, src);
519 for (int x = xOffset + width - 1; x >= xOffset ; x--) {
526 int xOffset, int yOffset,
541 A.copy2DRangeFrom(xOffset, yOffset, width, height, src)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
info_bubble_view.mm 65 CGFloat xOffset =
68 NSPoint arrowTip = NSMakePoint(xOffset, NSMaxY(bounds));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Icon.java 54 int xoffset = p.left + (width - mReqWidth) / 2; local
57 mIcon.draw(canvas, xoffset, yoffset, mReqWidth, mReqHeight);
  /packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
NexusRS.java 58 public void setOffset(float xOffset, float yOffset, int xPixels, int yPixels) {
59 mXOffset = xOffset;
60 mScript.set_gXOffset(xOffset);
163 // nexus.rs ignores the xOffset when rotated; we shall endeavor to do so as well
168 // "dw=%d, bw=%d, xOffset=%g, x=%d",
169 // dw, bw, mWorldState.xOffset, x));
  /frameworks/base/opengl/java/android/opengl/
GLUtils.java 185 * @param xoffset
189 public static void texSubImage2D(int target, int level, int xoffset, int yoffset,
198 if (native_texSubImage2D(target, level, xoffset, yoffset, bitmap, -1, type)!=0) {
209 * @param xoffset
214 public static void texSubImage2D(int target, int level, int xoffset, int yoffset,
222 if (native_texSubImage2D(target, level, xoffset, yoffset, bitmap, format, type)!=0) {
278 native private static int native_texSubImage2D(int target, int level, int xoffset, int yoffset,
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
phasebeam.rs 47 float xOffset = 0.5;
112 newOffset = xOffset*2;
118 vert->offsetX = -xOffset/2.0;
  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptWallpaper.java 89 public void onOffsetsChanged(float xOffset, float yOffset,
91 mRenderer.setOffset(xOffset, yOffset, xPixels, yPixels);
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
Galaxy4Wallpaper.java 121 public void onOffsetsChanged(float xOffset, float yOffset, float xOffsetStep,
123 // mWallpaperRS.setOffset(xOffset, yOffset, xPixelOffset, yPixelOffset);

Completed in 8591 milliseconds

1 2 3 4 5 6 7 8 91011>>