Searched refs:buffer_char (Results 1 – 3 of 3) sorted by relevance
/frameworks/rs/tests/lldb/cpp/Allocations/ |
D | Allocations.cpp | 125 char *buffer_char = new char[mAllocSize]; in initSignedAllocations() local 132 buffer_char[i] = (char) i; in initSignedAllocations() 139 mCharAllocation->copy3DRangeFrom(0, 0, 0, 1, 3, 8, buffer_char); in initSignedAllocations() 140 mChar2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_char); in initSignedAllocations() 141 mChar3Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_char); in initSignedAllocations() 142 mChar4Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_char); in initSignedAllocations() 144 delete [] buffer_char; in initSignedAllocations() 213 char *buffer_char = new char[mAllocSize]; in initUnsignedAllocations() local 219 buffer_char[i] = (char) i; in initUnsignedAllocations() 225 mUCharAllocation->copy1DRangeFrom(0, mAllocSize, buffer_char); in initUnsignedAllocations() [all …]
|
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/ |
D | jniallocations.cpp | 129 char *buffer_char = new char[mAllocSize]; in initSignedAllocations() local 136 buffer_char[i] = (char) i; in initSignedAllocations() 143 mCharAllocation->copy3DRangeFrom(0, 0, 0, 1, 3, 8, buffer_char); in initSignedAllocations() 144 mChar2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_char); in initSignedAllocations() 145 mChar3Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_char); in initSignedAllocations() 146 mChar4Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_char); in initSignedAllocations() 148 delete [] buffer_char; in initSignedAllocations() 217 char *buffer_char = new char[mAllocSize]; in initUnsignedAllocations() local 223 buffer_char[i] = (char) i; in initUnsignedAllocations() 229 mUCharAllocation->copy1DRangeFrom(0, mAllocSize, buffer_char); in initUnsignedAllocations() [all …]
|
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/ |
D | MainActivity.java | 179 byte[] buffer_char = new byte[mAllocSize]; in initSignedAllocations() 186 buffer_char[i] = (byte) i; in initSignedAllocations() 193 mCharAllocation.copyFrom(buffer_char); in initSignedAllocations() 194 mChar2Allocation.copyFrom(buffer_char); in initSignedAllocations() 195 mChar3Allocation.copyFrom(buffer_char); in initSignedAllocations() 196 mChar4Allocation.copyFrom(buffer_char); in initSignedAllocations() 273 byte[] buffer_char = new byte[mAllocSize]; in initUnsignedAllocations() 279 buffer_char[i] = (byte) i; in initUnsignedAllocations() 285 mUCharAllocation.copyFrom(buffer_char); in initUnsignedAllocations() 286 mUChar2Allocation.copyFrom(buffer_char); in initUnsignedAllocations() [all …]
|