Searched refs:yoff (Results 1 - 25 of 25) sorted by relevance

/frameworks/support/v4/kitkat/android/support/v4/widget/
H A DPopupWindowCompatKitKat.java28 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
30 popup.showAsDropDown(anchor, xoff, yoff, gravity);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAppCompatPopupWindow.java63 public void showAsDropDown(View anchor, int xoff, int yoff) {
66 yoff -= anchor.getHeight();
68 super.showAsDropDown(anchor, xoff, yoff);
73 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
76 yoff -= anchor.getHeight();
78 super.showAsDropDown(anchor, xoff, yoff, gravity);
82 public void update(View anchor, int xoff, int yoff, int width, int height) {
85 yoff -= anchor.getHeight();
87 super.update(anchor, xoff, yoff, width, height);
/frameworks/support/v4/java/android/support/v4/widget/
H A DPopupWindowCompat.java32 void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, int gravity); argument
44 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
46 popup.showAsDropDown(anchor, xoff, yoff);
90 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
92 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity);
166 * @param yoff A vertical offset from the anchor in pixels
169 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
171 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java796 * @param yoff
802 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
810 if(yoff < 0) {
827 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1032 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
1037 if (xoff < 0 || yoff < 0) {
1043 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1049 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array, argument
1052 validate2DRange(xoff, yoff, w, h);
1068 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLO
1083 copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) argument
1099 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
1115 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
1131 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
1147 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
1165 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1184 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1198 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1216 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
1252 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
1273 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
1567 copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array, Element.DataType dt, int arrayLen) argument
1599 copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) argument
1614 copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) argument
1629 copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) argument
1644 copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) argument
1659 copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) argument
[all...]
H A DRenderScript.java466 native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes);
467 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) {
469 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
493 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, argument
496 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, argument
500 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
503 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b); argument
504 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { argument
506 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
528 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, in argument
531 nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
563 rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
566 nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java848 * @param yoff
853 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) { argument
861 if(yoff < 0) {
878 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1089 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
1094 if (xoff < 0 || yoff < 0) {
1100 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1106 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array, argument
1111 validate2DRange(xoff, yoff, w, h);
1127 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLO
1145 copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) argument
1166 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
1182 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
1198 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
1214 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
1232 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1256 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1275 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1299 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
1340 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
1366 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
1492 copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) argument
1705 copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array, Element.DataType dt, int arrayLen) argument
1742 copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) argument
1757 copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) argument
1772 copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) argument
1787 copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) argument
1802 copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) argument
1816 copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
1855 copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
[all...]
H A DRenderScript.java517 native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes); argument
518 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) { argument
520 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
543 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, argument
546 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, argument
550 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
553 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b); argument
554 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { argument
556 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
577 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, in argument
580 nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
602 rsnAllocationElementRead(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
604 nAllocationElementRead(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
610 rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
613 nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
620 rsnAllocationRead3D(long con, long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
623 nAllocationRead3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp283 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) { argument
287 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
293 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
295 validate2DRange(xoff, yoff, w, h);
301 yoff, mSelectedLOD, mSelectedFace,
307 yoff, mSelectedLOD, mSelectedFace,
313 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
315 validate2DRange(xoff, yoff, w, h);
316 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
322 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_ argument
342 copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, size_t stride) argument
354 copy2DStridedTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, void *data, size_t stride) argument
366 validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d) argument
377 copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, const void* data) argument
397 copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, sp<const Allocation> data, uint32_t dataXoff, uint32_t dataYoff, uint32_t dataZoff) argument
405 copy3DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, void* data) argument
[all...]
H A DrsCppStructs.h338 void validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h);
339 void validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff,
447 * @param[in] yoff Y offset of region to update in this Allocation
452 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
459 * @param[in] yoff Y offset of region to copy from this Allocation
464 void copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
470 * @param[in] yoff Y offset of region to update in this Allocation
477 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
483 * @param[in] yoff Y offset of region to update in this Allocation
489 void copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_
[all...]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_alloc_copy.java269 int yoff = random.nextInt(height);
271 int ycount = height - yoff;
281 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
282 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
304 int yoff = random.nextInt(height);
306 int ycount = height - yoff;
319 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
320 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
342 int yoff = random.nextInt(height);
344 int ycount = height - yoff;
[all...]
H A DUT_alloc_copyPadded.java917 int yoff = random.nextInt(height);
919 int ycount = height - yoff;
930 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
931 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
953 int yoff = random.nextInt(height);
955 int ycount = height - yoff;
969 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
970 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
992 int yoff = random.nextInt(height);
994 int ycount = height - yoff;
[all...]
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_alloc_copy.java269 int yoff = random.nextInt(height);
271 int ycount = height - yoff;
281 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
282 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
304 int yoff = random.nextInt(height);
306 int ycount = height - yoff;
319 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
320 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
342 int yoff = random.nextInt(height);
344 int ycount = height - yoff;
[all...]
H A DUT_alloc_copyPadded.java917 int yoff = random.nextInt(height);
919 int ycount = height - yoff;
930 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
931 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
953 int yoff = random.nextInt(height);
955 int ycount = height - yoff;
969 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
970 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
992 int yoff = random.nextInt(height);
994 int ycount = height - yoff;
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1064 * @param yoff A vertical offset from the anchor in pixels
1068 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
1069 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY);
1087 * @param yoff A vertical offset from the anchor in pixels
1092 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { argument
1099 registerForScrollChanged(anchor, xoff, yoff, gravity);
1107 final boolean aboveAnchor = findDropDownPosition(anchor, p, xoff, yoff, gravity);
1390 * @param yoff vertical offset used to adjust for background padding
1395 int yoff, int gravity) {
1399 yoff
1394 findDropDownPosition(View anchor, WindowManager.LayoutParams p, int xoff, int yoff, int gravity) argument
1846 update(View anchor, int xoff, int yoff, int width, int height) argument
1850 update(View anchor, boolean updateLocation, int xoff, int yoff, boolean updateDimension, int width, int height) argument
1915 registerForScrollChanged(View anchor, int xoff, int yoff, int gravity) argument
[all...]
/frameworks/rs/driver/
H A DrsdAllocation.h113 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
118 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
128 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
133 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A DrsdAllocation.cpp92 uint32_t xoff, uint32_t yoff, uint32_t zoff,
97 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
104 uint32_t xoff, uint32_t yoff, uint32_t lod,
116 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
864 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
876 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
884 for (uint32_t line=yoff; line < (yoff+h); line++) {
906 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
908 for (uint32_t line=(yoff >>
91 GetOffsetPtr(const android::renderscript::Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
103 Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h) argument
863 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
923 rsdAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
974 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
1003 rsdAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp199 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
201 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
205 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
208 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
228 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
243 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
246 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, argument
254 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
681 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
684 a->data(rsc, xoff, yoff, lo
687 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
865 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
872 rsi_Allocation3DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
H A DrsAllocation.h130 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
132 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
136 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
138 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A DrsAdapter.h79 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
H A Drs.spec194 param uint32_t yoff
206 param uint32_t yoff
246 param uint32_t yoff
258 param uint32_t yoff
H A Drs_hal.h219 uint32_t xoff, uint32_t yoff, uint32_t lod,
223 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
231 uint32_t xoff, uint32_t yoff, uint32_t lod,
235 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1304 jint xoff, jint yoff, jint zoff,
1309 ALOGD("nAllocationElementData, con(%p), alloc(%p), xoff(%i), yoff(%i), zoff(%i), comp(%i), len(%i), "
1310 "sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, compIdx, len,
1315 xoff, yoff, zoff,
1323 nAllocationData2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint lod, jint _face, argument
1330 ALOGD("nAllocation2DData, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i) "
1331 "type(%i)", (RsContext)con, alloc, xoff, yoff, w, h, sizeBytes, dataType);
1335 (RsContext)con, alloc, xoff, yoff, lod, face, w, h, ptr, sizeBytes, 0);
1368 nAllocationData3D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint zoff, jint lod, argument
1374 ALOGD("nAllocation3DData, con(%p), alloc(%p), xoff(%i), yoff(
1303 nAllocationElementData(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint xoff, jint yoff, jint zoff, jint lod, jint compIdx, jbyteArray data, jint sizeBytes) argument
1441 nAllocationElementRead(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint xoff, jint yoff, jint zoff, jint lod, jint compIdx, jbyteArray data, jint sizeBytes) argument
1460 nAllocationRead2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint lod, jint _face, jint w, jint h, jobject data, jint sizeBytes, jint dataType, jint mSize, jboolean usePadding) argument
1477 nAllocationRead3D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jobject data, int sizeBytes, int dataType, jint mSize, jboolean usePadding) argument
[all...]
/frameworks/minikin/libs/minikin/
H A DLayout.cpp798 float yoff = -HBFixedToFloat(positions[i].y_offset); local
799 xoff += yoff * ctx->paint.skewX;
800 LayoutGlyph glyph = {font_ix, glyph_ix, x + xoff, y + yoff};
808 glyphBounds.offset(x + xoff, y + yoff);
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp1197 jint xoff, jint yoff, jint zoff,
1201 LOG_API("nAllocationElementData, con(%p), alloc(%p), xoff(%i), yoff(%i), zoff(%i), comp(%i), len(%i), "
1202 "sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, compIdx, len,
1206 xoff, yoff, zoff,
1214 nAllocationData2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint lod, jint _face, argument
1220 LOG_API("nAllocation2DData, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i) "
1221 "type(%i)", (RsContext)con, alloc, xoff, yoff, w, h, sizeBytes, dataType);
1224 (RsContext)con, alloc, xoff, yoff, lod, face, w, h, ptr, sizeBytes, 0);
1253 nAllocationData3D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint zoff, jint lod, argument
1258 LOG_API("nAllocation3DData, con(%p), alloc(%p), xoff(%i), yoff(
1334 nAllocationRead2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint lod, jint _face, jint w, jint h, jobject data, jint sizeBytes, jint dataType, jint mSize, jboolean usePadding) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1631 // int yoff;
1635 // yoff = mScroller.getCurrY();
1638 // yoff = mScrollY;
1641 // layerCanvas.translate(0, -yoff);
2657 private boolean drawSoftware(Surface surface, AttachInfo attachInfo, int xoff, int yoff, argument
2706 if (!canvas.isOpaque() || yoff != 0 || xoff != 0) {
2721 canvas.translate(-xoff, -yoff);

Completed in 2853 milliseconds