Searched defs:USAGE_IO_INPUT (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java203 public static final int USAGE_IO_INPUT = 0x0020; field in class:Allocation
389 USAGE_IO_INPUT |
395 if ((usage & USAGE_IO_INPUT) != 0) {
398 if ((usage & ~(USAGE_IO_INPUT |
582 * is only valid if {@link #USAGE_IO_INPUT} is set on the Allocation.
588 if ((mUsage & USAGE_IO_INPUT) == 0) {
2841 * <p> If the Allocation is created with USAGE_IO_INPUT, the returned ByteBuffer
2861 if (mByteBuffer == null || (mUsage & USAGE_IO_INPUT) != 0) {
2867 if ((mUsage & USAGE_IO_INPUT) != 0) {
2876 * Note: If the input allocation is of usage: USAGE_IO_INPUT,
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DAllocation.java172 public static final int USAGE_IO_INPUT = 0x0020; field in class:Allocation
354 USAGE_IO_INPUT |
360 if ((usage & USAGE_IO_INPUT) != 0) {
363 if ((usage & ~(USAGE_IO_INPUT |
514 * <p> If the Allocation is created with USAGE_IO_INPUT, the returned ByteBuffer
549 if (mByteBuffer == null || (mUsage & USAGE_IO_INPUT) != 0) {
578 * is only valid if {@link #USAGE_IO_INPUT} is set on the Allocation.
582 if ((mUsage & USAGE_IO_INPUT) == 0) {
2563 if(!rs.usingIO() && (usage & (USAGE_IO_INPUT | USAGE_IO_INPUT)) !
[all...]

Completed in 340 milliseconds