HomeSort by relevance Sort by last modified time
    Searched refs:destY (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
sample.rs 34 float destY = (float)rsAllocationGetDimY(destAlloc) - 1.0f;
38 uv.y = (float)y / destY;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 584 * If Pixel.ZoomY is -1, *destY will be changed to be the first row which
585 * we'll actually write. Beforehand, *destY-1 is the first drawing row.
592 GLint *destX, GLint *destY,
620 if (*destY < buffer->_Ymin) {
621 unpack->SkipRows += (buffer->_Ymin - *destY);
622 *height -= (buffer->_Ymin - *destY);
623 *destY = buffer->_Ymin;
626 if (*destY + *height > buffer->_Ymax)
627 *height -= (*destY + *height - buffer->_Ymax);
631 if (*destY > buffer->_Ymax)
    [all...]
image.h 105 GLint *destX, GLint *destY,
118 GLint *destX, GLint *destY,
  /external/mesa3d/src/mesa/main/
image.c 584 * If Pixel.ZoomY is -1, *destY will be changed to be the first row which
585 * we'll actually write. Beforehand, *destY-1 is the first drawing row.
592 GLint *destX, GLint *destY,
620 if (*destY < buffer->_Ymin) {
621 unpack->SkipRows += (buffer->_Ymin - *destY);
622 *height -= (buffer->_Ymin - *destY);
623 *destY = buffer->_Ymin;
626 if (*destY + *height > buffer->_Ymax)
627 *height -= (*destY + *height - buffer->_Ymax);
631 if (*destY > buffer->_Ymax)
    [all...]
image.h 105 GLint *destX, GLint *destY,
118 GLint *destX, GLint *destY,
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/
ImageDecoder.h 98 for (int destY = startY + 1; destY < endY; ++destY)
99 memcpy(getAddr(startX, destY), startAddr, rowBytes);
  /frameworks/av/media/libstagefright/yuv/
YUVCanvas.cpp 72 int32_t destY = destStartY + offsetY;
79 mYUVImage.setPixelValue(destX, destY, yValue, uValue, vValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 285 int destY = vi.translate(0);
291 destX, destY, destWidth, destHeight);
294 SwtUtils.drawRectangleShadow(gc, destX, destY, destWidth, destHeight);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 123 int destY = targetRectangle.y + (targetRectangle.height - newImageHeight) / 2;
124 gc.drawImage(image, 0, 0, imageWidth, imageHeight, destX, destY, newImageWidth, newImageHeight);
316 int destY = srcData.width - srcX - 1;
317 int destIndex = destY * destBytesPerLine + destX * bytesPerPixel;
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.cpp 237 bool PluginTest::NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace)
239 return browser->convertpoint(m_npp, sourceX, sourceY, sourceSpace, destX, destY, destSpace);
PluginTest.h 96 bool NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 182 int destY = -selection - mOrigin.y;
184 scroll(0, destY, 0, 0, imageBounds.width, imageBounds.height, false);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ImageBuffer.cpp 401 int destY = destPoint.y() + sourceRect.y();
402 ASSERT(destY >= 0);
403 ASSERT(destY < m_size.height());
409 int numRows = endY - destY;
422 context()->writePixels(srcBitmap, destX, destY, config8888);
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_texture.c 718 GLint destX, GLint destY, GLint destZ,
752 destX, destY, width, height);
917 GLint destX, GLint destY, GLint destZ,
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 718 GLint destX, GLint destY, GLint destZ,
752 destX, destY, width, height);
917 GLint destX, GLint destY, GLint destZ,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_reg.h     [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h     [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 209 * @param destY the Y-axis coordinate.
215 public boolean dragTo(int destX, int destY, int steps) throws UiObjectNotFoundException {
217 return getInteractionController().swipe(srcRect.centerX(), srcRect.centerY(), destX, destY,
    [all...]
  /frameworks/uiautomator/src/com/android/uiautomator/core/
UiObject.java 209 * @param destY the Y-axis coordinate.
215 public boolean dragTo(int destX, int destY, int steps) throws UiObjectNotFoundException {
217 return getInteractionController().swipe(srcRect.centerX(), srcRect.centerY(), destX, destY,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 749 int destY = 0;
778 p.dest.y = destY;
795 destY += p.dest.height;
  /external/chromium_org/third_party/npapi/bindings/
npfunctions.h 125 typedef NPBool (*NPN_ConvertPointPtr)(NPP instance, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
  /external/chromium_org/content/child/npapi/
plugin_host.cc     [all...]
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 

Completed in 623 milliseconds

1 2