Searched defs:xBytesSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp2205 nIncAllocationCreateTyped(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong alloc, jlong type, jint xBytesSize) argument
2217 * By definition stride is a roundup of xBytesSize with requiredAlignment, so requiredAlignment must
2218 * be strictly larger than the difference of (stride - xBytesSize).
2228 size_t minRequiredAlignment = strideIn - xBytesSize;
2241 nAllocationGetByteBuffer(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint xBytesSize, jint dimY, jint dimZ) argument
2244 size_t strideIn = xBytesSize;
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java486 native ByteBuffer rsnAllocationGetByteBuffer(long con, long alloc, long[] stride, int xBytesSize, int dimY, int dimZ); argument
487 synchronized ByteBuffer nAllocationGetByteBuffer(long alloc, long[] stride, int xBytesSize, int dimY, int dimZ) { argument
489 return rsnAllocationGetByteBuffer(mContext, alloc, stride, xBytesSize, dimY, dimZ);
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp2776 jlongArray strideArr, jint xBytesSize,
2788 size_t strideIn = xBytesSize;
2775 nAllocationGetByteBuffer(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jlongArray strideArr, jint xBytesSize, jint dimY, jint dimZ) argument
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DRenderScript.java450 native ByteBuffer rsnAllocationGetByteBuffer(long con, long alloc, int xBytesSize, int dimY, int dimZ); argument
451 synchronized ByteBuffer nAllocationGetByteBuffer(long alloc, int xBytesSize, int dimY, int dimZ) { argument
453 return rsnAllocationGetByteBuffer(mContext, alloc, xBytesSize, dimY, dimZ);
1039 native long rsnIncAllocationCreateTyped(long con, long incCon, long alloc, long type, int xBytesSize); argument
1040 synchronized long nIncAllocationCreateTyped(long alloc, long type, int xBytesSize) { argument
1042 return rsnIncAllocationCreateTyped(mContext, mIncCon, alloc, type, xBytesSize);

Completed in 52 milliseconds