HomeSort by relevance Sort by last modified time
    Searched refs:yoff (Results 1 - 25 of 31) 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...]
  /frameworks/rs/cpp/
Allocation.cpp 275 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) {
279 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
285 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
287 validate2DRange(xoff, yoff, w, h);
288 rsAllocation2DData(mRS->mContext, getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace,
292 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
294 validate2DRange(xoff, yoff, w, h);
295 rsAllocation2DData(mRS->mContext, getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace,
299 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
301 validate2DRange(xoff, yoff, w, h)
    [all...]
Allocation.h 66 void validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h);
96 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
98 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
100 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
102 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
104 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
  /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);
Allocation.java 780 private void validate2DRange(int xoff, int yoff, int w, int h) {
785 if (xoff < 0 || yoff < 0) {
791 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
802 * @param yoff Y offset of the region to update
807 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
809 validate2DRange(xoff, yoff, w, h);
810 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
814 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
816 validate2DRange(xoff, yoff, w, h);
817 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID local
824 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
831 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
851 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
870 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
    [all...]
RenderScript.java 378 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
379 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
381 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
383 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
384 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
386 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
388 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
389 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
391 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
393 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
  /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/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...]
  /frameworks/rs/
rsAdapter.cpp 159 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) {
168 for (uint32_t line=yoff; line < (yoff+h); line++) {
232 void rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) {
234 a->subData(xoff, yoff, w, h, data);
rsAllocation.h 94 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
96 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
rsAdapter.h 85 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
rs_hal.h 137 uint32_t xoff, uint32_t yoff, uint32_t lod,
141 uint32_t xoff, uint32_t yoff, uint32_t zoff,
rsAllocation.cpp 94 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
99 //ALOGE("data2d %p, %i %i %i %i %i %i %p %i", this, xoff, yoff, lod, face, w, h, data, sizeBytes);
107 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes);
111 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
562 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
565 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
rs.spec 197 param uint32_t yoff
  /external/skia/src/core/
SkAAClip.cpp 99 YOffset* yoff = head->yoffsets(); local
100 yoff->fY = bounds.height() - 1;
101 yoff->fOffset = 0;
197 const YOffset* yoff = head->yoffsets(); local
198 const YOffset* ystop = yoff + head->fRowCount;
204 while (yoff < ystop) {
205 SkASSERT(prevY < yoff->fY);
206 SkASSERT(yoff->fY <= lastY);
207 prevY = yoff->fY;
208 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
396 YOffset* yoff = head->yoffsets(); local
467 YOffset* yoff = head->yoffsets(); local
547 const YOffset* yoff = head->yoffsets(); local
792 const YOffset* yoff = fRunHead->yoffsets(); local
    [all...]
  /frameworks/rs/driver/
rsdAllocation.cpp 83 uint32_t xoff, uint32_t yoff, uint32_t lod,
94 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
531 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
541 dst += alloc->mHal.state.type->getLODFaceOffset(lod, face, xoff, yoff);
543 for (uint32_t line=yoff; line < (yoff+h); line++) {
554 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h);
559 uint32_t xoff, uint32_t yoff, uint32_t zoff,
573 uint32_t xoff, uint32_t yoff, uint32_t lod,
576 ptr += alloc->getType()->getLODOffset(lod, xoff, yoff);
    [all...]
rsdAllocation.h 89 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
94 uint32_t xoff, uint32_t yoff, uint32_t zoff,
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp 647 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
651 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);
653 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes);
658 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
662 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);
664 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes);
669 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
673 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...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java 1435 int yoff; local
2080 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/guava/guava/lib/
jdiff.jar 
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 412 milliseconds

1 2