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

1 2

  /external/qemu/distrib/sdl-1.2.15/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/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 820 private void validate2DRange(int xoff, int yoff, int w, int h) {
825 if (xoff < 0 || yoff < 0) {
831 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
837 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) {
839 validate2DRange(xoff, yoff, w, h);
840 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
844 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) {
846 validate2DRange(xoff, yoff, w, h);
847 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
851 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, int[] data)
854 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
861 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
942 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
968 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
995 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1006 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1017 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1028 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1098 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
AllocationThunker.java 178 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
179 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
181 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
182 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
184 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
185 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
187 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
188 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
191 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
194 mN.copy2DRangeFrom(xoff, yoff, w, h, at.mN, dataXoff, dataYoff)
    [all...]
RenderScript.java 336 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
337 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] 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, short[] d, int sizeBytes);
342 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] 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, int[] d, int sizeBytes);
347 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
349 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
351 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 878 private void validate2DRange(int xoff, int yoff, int w, int h) {
883 if (xoff < 0 || yoff < 0) {
889 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
895 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) {
897 validate2DRange(xoff, yoff, w, h);
898 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
905 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
912 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
919 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
1000 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
1026 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
1053 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1064 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1075 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1086 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1156 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
AllocationAdapter.java 78 public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
79 super.copy2DRangeFrom(xoff, yoff, w, h, d);
84 public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
85 super.copy2DRangeFrom(xoff, yoff, w, h, d);
RenderScript.java 413 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
414 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
416 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
418 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
419 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
421 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
423 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
424 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
426 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
428 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 216 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) {
220 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
226 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
228 validate2DRange(xoff, yoff, w, h);
229 rsAllocation2DData(mRS->getContext(), getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace,
233 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
235 validate2DRange(xoff, yoff, w, h);
236 rsAllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
242 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
244 validate2DRange(xoff, yoff, w, h)
    [all...]
rsCppStructs.h 215 void validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h);
236 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
239 void copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
242 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
245 void copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
249 void copy2DStridedTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
  /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 879 public void showAsDropDown(View anchor, int xoff, int yoff) {
884 registerForScrollChanged(anchor, xoff, yoff);
892 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff));
    [all...]
  /external/skia/legacy/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...]
  /external/skia/src/core/
SkAAClip.cpp 99 YOffset* yoff = head->yoffsets(); local
100 yoff->fY = bounds.height() - 1;
101 yoff->fOffset = 0;
198 const YOffset* yoff = head->yoffsets(); local
199 const YOffset* ystop = yoff + head->fRowCount;
205 while (yoff < ystop) {
206 SkASSERT(prevY < yoff->fY);
207 SkASSERT(yoff->fY <= lastY);
208 prevY = yoff->fY;
209 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
405 YOffset* yoff = head->yoffsets(); local
481 YOffset* yoff = head->yoffsets(); local
561 const YOffset* yoff = head->yoffsets(); local
806 const YOffset* yoff = fRunHead->yoffsets(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 152 public void showAsDropDown(View anchor, int xoff, int yoff) {
154 yOffset = yoff;
  /frameworks/rs/driver/
rsdAllocation.h 124 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
129 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
139 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
144 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsdAllocation.cpp 93 uint32_t xoff, uint32_t yoff, uint32_t zoff,
98 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
117 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
849 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
861 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
869 for (uint32_t line=yoff; line < (yoff+h); line++) {
882 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
884 for (uint32_t line=(yoff >> 1); line < ((yoff+h)>>1); line++)
    [all...]
  /frameworks/rs/
rsAllocation.h 101 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
103 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
107 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
109 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsAllocation.cpp 105 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
107 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
111 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
114 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
132 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
146 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
149 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
157 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
517 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
520 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride)
    [all...]
rsAdapter.h 79 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
rs_hal.h 163 uint32_t xoff, uint32_t yoff, uint32_t lod,
167 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
175 uint32_t xoff, uint32_t yoff, uint32_t lod,
179 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs.spec 152 param uint32_t yoff
164 param uint32_t yoff
204 param uint32_t yoff
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 490 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
494 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);
496 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
501 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
505 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);
507 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
512 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
516 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/graphics/jni/
android_renderscript_RenderScript.cpp 660 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
664 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);
666 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
671 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
675 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);
677 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
682 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
686 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 1452 int yoff; local
2298 int yoff; local
    [all...]

Completed in 1120 milliseconds

1 2