Home
last modified time | relevance | path

Searched refs:buffer_bool (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/tests/lldb/cpp/Allocations/
DAllocations.cpp129 char *buffer_bool = new char[mAllocSize]; in initSignedAllocations() local
136 buffer_bool[i] = (char) (0x01 & i); in initSignedAllocations()
167 mBoolAllocation->copy1DRangeFrom(0, mAllocSize, buffer_bool); in initSignedAllocations()
169 delete [] buffer_bool; in initSignedAllocations()
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
Djniallocations.cpp133 char *buffer_bool = new char[mAllocSize]; in initSignedAllocations() local
140 buffer_bool[i] = (char) (0x01 & i); in initSignedAllocations()
171 mBoolAllocation->copy1DRangeFrom(0, mAllocSize, buffer_bool); in initSignedAllocations()
173 delete [] buffer_bool; in initSignedAllocations()
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
DMainActivity.java183 byte[] buffer_bool = new byte[mAllocSize]; in initSignedAllocations()
190 buffer_bool[i] = (byte) (0x01 & i); in initSignedAllocations()
213 mBoolAllocation.copyFromUnchecked(buffer_bool); in initSignedAllocations()