Searched defs:yoff (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/rs/
H A DrsAdapter.cpp164 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) argument
175 for (uint32_t line=yoff; line < (yoff+h); line++) {
238 void rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) argument
241 a->subData(xoff, yoff, w, h, data);
H A DrsAllocation.cpp254 void Allocation::subData(uint32_t xoff, uint32_t yoff, argument
263 dst += eSize * (xoff + yoff * destW);
270 for (uint32_t line=yoff; line < (yoff+h); line++) {
280 void Allocation::subData(uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
604 void rsi_Allocation2DSubData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, uint32_t sizeBytes) argument
607 a->subData(xoff, yoff, w, h, data, sizeBytes);
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java112 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { argument
114 mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4);
117 public void subData2D(int xoff, int yoff, int w, int h, float[] d) { argument
119 mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4);
211 public void subData(int xoff, int yoff, int w, int h, int[] d) { argument
213 mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d);
216 public void subData(int xoff, int yoff, int w, int h, float[] d) { argument
218 mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d);
H A DRenderScript.java113 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes); argument
114 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes); argument
132 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d); argument
133 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d); argument
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java799 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
804 registerForScrollChanged(anchor, xoff, yoff);
812 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff));
1007 int xoff, int yoff) {
1011 p.y = mDrawingLocation[1] + anchor.getHeight() + yoff;
1029 scrollY + mPopupHeight + anchor.getHeight() + yoff);
1036 p.y = mDrawingLocation[1] + anchor.getHeight() + yoff;
1041 onTop = (displayFrame.bottom - mScreenLocation[1] - anchor.getHeight() - yoff) <
1042 (mScreenLocation[1] - yoff - displayFrame.top);
1045 p.y = root.getHeight() - mDrawingLocation[1] + yoff;
1006 findDropDownPosition(View anchor, WindowManager.LayoutParams p, int xoff, int yoff) argument
1323 update(View anchor, int xoff, int yoff, int width, int height) argument
1327 update(View anchor, boolean updateLocation, int xoff, int yoff, boolean updateDimension, int width, int height) argument
1390 registerForScrollChanged(View anchor, int xoff, int yoff) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp619 nAllocationSubData2D_i(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jintArray data, int sizeBytes) argument
623 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
625 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
630 nAllocationSubData2D_f(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jfloatArray data, int sizeBytes) argument
634 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
636 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
815 nAdapter2DSubData_i(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jintArray data) argument
819 LOG_API("nAdapter2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(
827 nAdapter2DSubData_f(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jfloatArray data) argument
[all...]

Completed in 218 milliseconds