HomeSort by relevance Sort by last modified time
    Searched refs:zoff (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 1018 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1029 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1040 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1051 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1121 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
RenderScript.java 467 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes);
468 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) {
470 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
472 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes);
473 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) {
475 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
477 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes);
478 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) {
480 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes);
482 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes)
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 304 void Allocation::validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w,
309 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
315 void Allocation::copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w,
317 validate3DRange(xoff, yoff, zoff, w, h, d);
318 tryDispatch(mRS, RS::dispatch->Allocation3DData(mRS->getContext(), getIDSafe(), xoff, yoff, zoff,
324 void Allocation::copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d,
326 validate3DRange(xoff, yoff, zoff, dataXoff, dataYoff, dataZoff);
327 tryDispatch(mRS, RS::dispatch->AllocationCopy3DRange(mRS->getContext(), getIDSafe(), xoff, yoff, zoff,
rsCppStructs.h 330 void validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff,
478 * @param[in] zoff Z offset of region to update in this Allocation
484 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w,
491 * @param[in] zoff Z offset of region to update in this Allocation
500 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff,
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 1196 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d, local
1242 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
RenderScript.java 503 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
505 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
508 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
    [all...]
  /frameworks/rs/driver/
rsdAllocation.h 113 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
128 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsdAllocation.cpp 93 uint32_t xoff, uint32_t yoff, uint32_t zoff,
97 ptr += zoff * alloc->mHal.drvState.lod[lod].dimY * alloc->mHal.drvState.lod[lod].stride;
876 uint32_t xoff, uint32_t yoff, uint32_t zoff,
890 for (uint32_t z = zoff; z < d; z++) {
    [all...]
  /frameworks/rs/
rsAllocation.h 117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsAllocation.cpp 138 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
141 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
179 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
187 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
606 void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
609 a->data(rsc, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
rs_hal.h 194 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
206 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAllocation.h 117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs_hal.h 175 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
187 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs.spec 165 param uint32_t zoff
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAllocation.h 117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs_hal.h 175 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
187 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs.spec 165 param uint32_t zoff
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAllocation.h 117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs_hal.h 175 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
187 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rs.spec 165 param uint32_t zoff
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 558 nAllocationData3D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod,
562 LOG_API("nAllocation3DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, zoff, w, h, d, len);
564 rsAllocation3DData(con, (RsAllocation)alloc, xoff, yoff, zoff, lod, w, h, d, ptr, sizeBytes, 0);
569 nAllocationData3D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod,
573 LOG_API("nAllocation3DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, zoff, w, h, d, len);
575 rsAllocation3DData(con, (RsAllocation)alloc, xoff, yoff, zoff, lod, w, h, d, ptr, sizeBytes, 0);
580 nAllocationData3D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod,
584 LOG_API("nAllocation3DData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, zoff, w, h, d, len);
586 rsAllocation3DData(con, (RsAllocation)alloc, xoff, yoff, zoff, lod, w, h, d, ptr, sizeBytes, 0);
591 nAllocationData3D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /prebuilts/sdk/tools/darwin/renderscript/lib/
renderscript-v8.jar 
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h 329 void validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff,
477 * @param[in] zoff Z offset of region to update in this Allocation
483 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w,
490 * @param[in] zoff Z offset of region to update in this Allocation
499 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff,
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h 329 void validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff,
477 * @param[in] zoff Z offset of region to update in this Allocation
483 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w,
490 * @param[in] zoff Z offset of region to update in this Allocation
499 void copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff,
    [all...]

Completed in 444 milliseconds

1 2