Searched refs:xoff (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/libs/rs/
H A DrsHandcode.h25 static inline void rsHCAPI_Allocation1DSubData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t count, const void * data, uint32_t sizeBytes) argument
34 cmd->xoff = xoff;
H A DrsAllocation.h60 void subData(uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes);
61 void subData(uint32_t xoff, uint32_t yoff,
63 void subData(uint32_t xoff, uint32_t yoff, uint32_t zoff,
H A DrsAdapter.cpp57 void Adapter1D::subData(uint32_t xoff, uint32_t count, const void *data) argument
60 void *ptr = getElement(xoff);
115 void rsi_Adapter1DSubData(Context *rsc, RsAdapter1D va, uint32_t xoff, uint32_t count, const void *data) argument
118 a->subData(xoff, count, data);
164 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) argument
176 memcpy(getElement(xoff, line), src, lineSize);
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 DrsAdapter.h50 void subData(uint32_t xoff, uint32_t count, const void *data);
83 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
H A DrsAllocation.cpp237 void Allocation::subData(uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes) argument
241 ptr += eSize * xoff;
254 void Allocation::subData(uint32_t xoff, uint32_t yoff, argument
263 dst += eSize * (xoff + yoff * destW);
280 void Allocation::subData(uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
598 void rsi_Allocation1DSubData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes) argument
601 a->subData(xoff, count, data, sizeBytes);
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);
H A Drs.spec148 param uint32_t xoff
158 param uint32_t xoff
193 param uint32_t xoff
220 param uint32_t xoff
/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) {
1010 p.x = mDrawingLocation[0] + xoff;
1028 Rect r = new Rect(scrollX, scrollY, scrollX + mPopupWidth + xoff,
1035 p.x = mDrawingLocation[0] + xoff;
1318 * @param xoff x offset from the view's left edge
1323 public void update(View anchor, int xoff, int yoff, int width, int height) { argument
1324 update(anchor, true, xoff, yof
1006 findDropDownPosition(View anchor, WindowManager.LayoutParams p, int xoff, int yoff) 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(
827 nAdapter2DSubData_f(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jfloatArray data) argument
[all...]

Completed in 603 milliseconds