Home
last modified time | relevance | path

Searched refs:buffer_int (Results 1 – 6 of 6) sorted by relevance

/frameworks/rs/tests/lldb/cpp/Allocations/
DAllocations.cpp127 int *buffer_int = new int[mAllocSize]; in initSignedAllocations() local
134 buffer_int[i] = (int) i; in initSignedAllocations()
153 mIntAllocation->copy1DRangeFrom(0, mAllocSize, buffer_int); in initSignedAllocations()
154 mInt2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_int); in initSignedAllocations()
155 mInt3Allocation->copy2DRangeFrom(0, 0, 3, 2, buffer_int); in initSignedAllocations()
156 mInt4Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_int); in initSignedAllocations()
158 delete [] buffer_int; in initSignedAllocations()
215 int *buffer_int = new int[mAllocSize]; in initUnsignedAllocations() local
221 buffer_int[i] = (int) i; in initUnsignedAllocations()
239 mUIntAllocation->copy1DRangeFrom(0, mAllocSize, buffer_int); in initUnsignedAllocations()
[all …]
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
Djniallocations.cpp131 int *buffer_int = new int[mAllocSize]; in initSignedAllocations() local
138 buffer_int[i] = (int) i; in initSignedAllocations()
157 mIntAllocation->copy1DRangeFrom(0, mAllocSize, buffer_int); in initSignedAllocations()
158 mInt2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_int); in initSignedAllocations()
159 mInt3Allocation->copy2DRangeFrom(0, 0, 3, 2, buffer_int); in initSignedAllocations()
160 mInt4Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_int); in initSignedAllocations()
162 delete [] buffer_int; in initSignedAllocations()
219 int *buffer_int = new int[mAllocSize]; in initUnsignedAllocations() local
225 buffer_int[i] = (int) i; in initUnsignedAllocations()
243 mUIntAllocation->copy1DRangeFrom(0, mAllocSize, buffer_int); in initUnsignedAllocations()
[all …]
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
DMainActivity.java181 int[] buffer_int = new int[mAllocSize]; in initSignedAllocations() local
188 buffer_int[i] = (int) i; in initSignedAllocations()
203 mIntAllocation.copyFrom(buffer_int); in initSignedAllocations()
204 mInt2Allocation.copyFrom(buffer_int); in initSignedAllocations()
205 mInt3Allocation.copyFrom(buffer_int); in initSignedAllocations()
206 mInt4Allocation.copyFrom(buffer_int); in initSignedAllocations()
275 int[] buffer_int = new int[mAllocSize]; in initUnsignedAllocations() local
281 buffer_int[i] = (int) i; in initUnsignedAllocations()
295 mUIntAllocation.copyFrom(buffer_int); in initUnsignedAllocations()
296 mUInt2Allocation.copyFrom(buffer_int); in initUnsignedAllocations()
[all …]
/frameworks/rs/tests/lldb/cpp/KernelVariables/
DKernelVariables.cpp39 static const int buffer_int[] = {1, 2, 3, 4}; in main() local
41 int_allocation->copy1DRangeFrom(0, 4, buffer_int); in main()
/frameworks/rs/tests/lldb/jni/KernelVariables/jnikernelvariables/
Djnikernelvariables.cpp48 static const int buffer_int[] = {1, 2, 3, 4}; in Java_com_android_rs_jnikernelvariables_MainActivity_nativeRS() local
50 int_allocation->copy1DRangeFrom(0, 4, buffer_int); in Java_com_android_rs_jnikernelvariables_MainActivity_nativeRS()
/frameworks/rs/tests/lldb/java/KernelVariables/src/com/android/rs/kernelvariables/
DMainActivity.java66 int[] buffer_int = {1, 2, 3, 4}; in updateImage() local
68 int_allocation.copyFrom(buffer_int); in updateImage()