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

1 2

  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BView.h 40 xoff = yoff = 0;
50 yoff = y;
54 y = yoff;
58 y = (float)yoff;
86 if(xoff || yoff) {
88 dest.top = updateRect.top + yoff;
90 dest.bottom = updateRect.bottom + yoff;
99 if(xoff || yoff) {
101 dest.top = updateRect.top + yoff;
103 dest.bottom = updateRect.bottom + yoff;
113 int xoff, yoff; member in class:SDL_BView
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFieldset.cpp 146 int yOff = (legend->y() > 0) ? 0 : (legend->height() - borderTop()) / 2;
147 h -= yOff;
148 ty += yOff;
200 int yOff = (legend->y() > 0) ? 0 : (legend->height() - borderTop()) / 2;
201 h -= yOff;
202 ty += yOff;
  /frameworks/base/libs/rs/
rsAdapter.cpp 158 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) {
167 for (uint32_t line=yoff; line < (yoff+h); line++) {
231 void rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) {
233 a->subData(xoff, yoff, w, h, data);
rsAllocation.h 84 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
86 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
rs_hal.h 122 uint32_t xoff, uint32_t yoff, uint32_t lod,
126 uint32_t xoff, uint32_t yoff, uint32_t zoff,
rs.spec 171 param uint32_t yoff
rsAdapter.h 85 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
rsAllocation.cpp 88 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
93 //LOGE("data2d %p, %i %i %i %i %i %i %p %i", this, xoff, yoff, lod, face, w, h, data, sizeBytes);
101 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
105 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
443 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
446 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
  /frameworks/base/graphics/java/android/renderscript/
AllocationAdapter.java 77 public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
78 super.copy2DRangeFrom(xoff, yoff, w, h, d);
83 public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
84 super.copy2DRangeFrom(xoff, yoff, w, h, d);
RenderScript.java 331 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
332 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
334 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
336 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
337 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
339 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
341 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
342 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
344 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
346 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
Allocation.java 660 private void validate2DRange(int xoff, int yoff, int w, int h) {
665 if (xoff < 0 || yoff < 0) {
671 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
682 * @param yoff Y offset of the region to update
687 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
689 validate2DRange(xoff, yoff, w, h);
690 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
694 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
696 validate2DRange(xoff, yoff, w, h);
697 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID local
704 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
711 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
731 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
750 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shapestr.h 79 INT16 yOff B16;
94 INT16 yOff B16;
109 INT16 yOff B16;
123 INT16 yOff B16;
  /frameworks/base/libs/rs/driver/
rsdAllocation.cpp 77 uint32_t xoff, uint32_t yoff, uint32_t lod,
88 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
393 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
404 dst += alloc->mHal.state.type->getLODFaceOffset(lod, face, xoff, yoff);
406 for (uint32_t line=yoff; line < (yoff+h); line++) {
417 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h);
422 uint32_t xoff, uint32_t yoff, uint32_t zoff,
436 uint32_t xoff, uint32_t yoff, uint32_t lod,
439 ptr += alloc->getType()->getLODOffset(lod, xoff, yoff);
    [all...]
rsdAllocation.h 77 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
82 uint32_t xoff, uint32_t yoff, uint32_t zoff,
  /external/jdiff/src/jdiff/
DiffMyers.java 109 private int diag (int xoff, int xlim, int yoff, int ylim)
116 final int dmax = xlim - yoff; // Maximum valid diagonal.
117 final int fmid = xoff - yoff; // Center diagonal of top-down search.
184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) {
217 && fd[fdiagoff + d] - d - yoff > 20)
288 private void compareseq (int xoff, int xlim, int yoff, int ylim) {
290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) {
291 ++xoff; ++yoff;
294 while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1])
    [all...]
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp 575 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
579 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
581 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes);
586 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
590 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
592 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes);
597 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
601 LOG_API("nAllocation2DData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len)
    [all...]
  /hardware/ti/omap4xxx/camera/
ANativeWindowDisplayAdapter.cpp 1057 uint32_t yOff = (dispFrame.mOffset / PAGE_SIZE);
1060 if((mXOff!=xOff) || (mYOff!=yOff))
1062 CAMHAL_LOGDB("Offset %d xOff = %d, yOff = %d", dispFrame.mOffset, xOff, yOff);
1083 xOff/bytesPerPixel, yOff , (xOff/bytesPerPixel)+mPreviewWidth, yOff+mPreviewHeight);
1086 mANativeWindow->set_crop(mANativeWindow, xOff/bytesPerPixel, yOff,
1087 (xOff/bytesPerPixel)+mPreviewWidth, yOff+mPreviewHeight);
1091 mYOff = yOff;
    [all...]
AppCallbackNotifier.cpp 470 uint32_t yOff = offset / stride;
483 bufferSrc_UV = ( uint16_t * ) ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff);
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 877 public void showAsDropDown(View anchor, int xoff, int yoff) {
882 registerForScrollChanged(anchor, xoff, yoff);
890 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff));
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 418 final int yOff = 21;
426 mPopupWindow.showAtLocation(upperAnchor, Gravity.NO_GRAVITY, xOff, yOff);
437 assertEquals(viewInWindowXY[1] + yOff, viewOnScreenXY[1]);
458 final int yOff = 12;
462 mPopupWindow.showAsDropDown(upperAnchor, xOff, yOff);
470 assertEquals(anchorXY[1] + height + yOff + viewInWindowXY[1], viewOnScreenXY[1]);
    [all...]
  /system/extras/tests/framebuffer/
fb_test.c 132 fprintf(stderr,"vi.yoff = %d\n", vi->yoffset);
  /frameworks/base/core/java/android/view/
ViewRootImpl.java 1236 int yoff; local
1849 int yoff; local
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.c 100 static OMX_ERRORTYPE VPP_SetZoom(OMX_HANDLETYPE pHandle, int speed, int factor, int limit, int xoff, int yoff);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]

Completed in 736 milliseconds

1 2