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

1 2 3

  /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/v4/kitkat/android/support/v4/widget/
PopupWindowCompatKitKat.java 28 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
30 popup.showAsDropDown(anchor, xoff, yoff, gravity);
  /frameworks/support/v4/java/android/support/v4/widget/
PopupWindowCompat.java 32 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
41 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
43 popup.showAsDropDown(anchor, xoff, yoff);
52 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
54 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity);
88 * @param yoff A vertical offset from the anchor in pixels
91 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
93 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AppCompatPopupWindow.java 48 public void showAsDropDown(View anchor, int xoff, int yoff) {
50 // If we're pre-L, emulate overlapAnchor by modifying the yOff
51 yoff -= anchor.getHeight();
53 super.showAsDropDown(anchor, xoff, yoff);
58 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
60 // If we're pre-L, emulate overlapAnchor by modifying the yOff
61 yoff -= anchor.getHeight();
63 super.showAsDropDown(anchor, xoff, yoff, gravity);
67 public void update(View anchor, int xoff, int yoff, int width, int height) {
69 // If we're pre-L, emulate overlapAnchor by modifying the yOff
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 843 private void validate2DRange(int xoff, int yoff, int w, int h) {
848 if (xoff < 0 || yoff < 0) {
854 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
860 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) {
862 validate2DRange(xoff, yoff, w, h);
863 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
867 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) {
869 validate2DRange(xoff, yoff, w, h);
870 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
874 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, int[] data)
877 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
884 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
965 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
991 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
1018 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1029 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1040 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1051 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1121 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
RenderScript.java 423 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
424 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] 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, short[] d, int sizeBytes);
429 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
431 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
433 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
434 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
436 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
438 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
AllocationThunker.java 304 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
306 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
311 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
313 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
318 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
320 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
325 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
327 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
333 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
337 mN.copy2DRangeFrom(xoff, yoff, w, h, at.mN, dataXoff, dataYoff)
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 243 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) {
247 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
253 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
255 validate2DRange(xoff, yoff, w, h);
257 yoff, mSelectedLOD, mSelectedFace,
262 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
264 validate2DRange(xoff, yoff, w, h);
265 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
271 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
273 validate2DRange(xoff, yoff, w, h)
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 1034 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h, local
1138 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
1166 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
1196 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d, local
1242 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
AllocationAdapter.java 73 public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
74 super.copy2DRangeFrom(xoff, yoff, w, h, d);
79 public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
80 super.copy2DRangeFrom(xoff, yoff, w, h, d);
  /frameworks/base/core/java/android/widget/
PopupWindow.java     [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...]
  /external/chromium_org/third_party/skia/src/core/
SkAAClip.cpp 101 YOffset* yoff = head->yoffsets(); local
102 yoff->fY = bounds.height() - 1;
103 yoff->fOffset = 0;
200 const YOffset* yoff = head->yoffsets(); local
201 const YOffset* ystop = yoff + head->fRowCount;
207 while (yoff < ystop) {
208 SkASSERT(prevY < yoff->fY);
209 SkASSERT(yoff->fY <= lastY);
210 prevY = yoff->fY;
211 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
447 YOffset* yoff = head->yoffsets(); local
523 YOffset* yoff = head->yoffsets(); local
603 const YOffset* yoff = head->yoffsets(); local
736 const YOffset* yoff = head->yoffsets(); local
876 const YOffset* yoff = fRunHead->yoffsets(); local
    [all...]
  /external/skia/src/core/
SkAAClip.cpp 101 YOffset* yoff = head->yoffsets(); local
102 yoff->fY = bounds.height() - 1;
103 yoff->fOffset = 0;
200 const YOffset* yoff = head->yoffsets(); local
201 const YOffset* ystop = yoff + head->fRowCount;
207 while (yoff < ystop) {
208 SkASSERT(prevY < yoff->fY);
209 SkASSERT(yoff->fY <= lastY);
210 prevY = yoff->fY;
211 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
407 YOffset* yoff = head->yoffsets(); local
483 YOffset* yoff = head->yoffsets(); local
563 const YOffset* yoff = head->yoffsets(); local
808 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 108 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
113 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
128 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);
816 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
828 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
836 for (uint32_t line=yoff; line < (yoff+h); line++) {
858 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
860 for (uint32_t line=(yoff >> 1); line < ((yoff+h)>>1); line++)
    [all...]
  /frameworks/rs/
rsAllocation.h 117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
119 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
125 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsAdapter.h 79 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAllocation.h 115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
121 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsAdapter.h 79 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAllocation.h 115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
121 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAllocation.h 115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
121 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
  /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...]

Completed in 1008 milliseconds

1 2 3