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

/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp2203 nIncAllocationCreateTyped(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong alloc, jlong type, jint xBytesSize) argument
2215 * By definition stride is a roundup of xBytesSize with requiredAlignment, so requiredAlignment must
2216 * be strictly larger than the difference of (stride - xBytesSize).
2226 size_t minRequiredAlignment = strideIn - xBytesSize;
2239 nAllocationGetByteBuffer(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint xBytesSize, jint dimY, jint dimZ) argument
2242 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.cpp2777 jlongArray strideArr, jint xBytesSize,
2789 size_t strideIn = xBytesSize;
2776 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.java438 native ByteBuffer rsnAllocationGetByteBuffer(long con, long alloc, int xBytesSize, int dimY, int dimZ); argument
439 synchronized ByteBuffer nAllocationGetByteBuffer(long alloc, int xBytesSize, int dimY, int dimZ) { argument
441 return rsnAllocationGetByteBuffer(mContext, alloc, xBytesSize, dimY, dimZ);
1027 native long rsnIncAllocationCreateTyped(long con, long incCon, long alloc, long type, int xBytesSize); argument
1028 synchronized long nIncAllocationCreateTyped(long alloc, long type, int xBytesSize) { argument
1030 return rsnIncAllocationCreateTyped(mContext, mIncCon, alloc, type, xBytesSize);

Completed in 622 milliseconds