Searched refs:buffer_float (Results 1 – 3 of 3) sorted by relevance
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/ |
D | MainActivity.java | 362 float[] buffer_float = new float[mAllocSize]; in initFloatAllocations() local 371 buffer_float[i] = (float) 1 / i; in initFloatAllocations() 380 mFloatAllocation.copyFrom(buffer_float); in initFloatAllocations() 381 mFloat2Allocation.copyFrom(buffer_float); in initFloatAllocations() 382 mFloat3Allocation.copyFrom(buffer_float); in initFloatAllocations() 383 mFloat4Allocation.copyFrom(buffer_float); in initFloatAllocations() 410 float[] buffer_float = new float[mAllocSize]; in overwriteFloatAllocations() local 414 buffer_float[i] = -1f / i; in overwriteFloatAllocations() 417 mFloatAllocation.copyFrom(buffer_float); in overwriteFloatAllocations() 418 mFloat2Allocation.copyFrom(buffer_float); in overwriteFloatAllocations() [all …]
|
/frameworks/rs/tests/lldb/cpp/Allocations/ |
D | Allocations.cpp | 297 float *buffer_float = new float[mAllocSize]; in initFloatAllocations() local 302 buffer_float[i] = (float) 1 / i; in initFloatAllocations() 313 mFloatAllocation->copy1DRangeFrom(0, mAllocSize, buffer_float); in initFloatAllocations() 314 mFloat2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_float); in initFloatAllocations() 315 mFloat3Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_float); in initFloatAllocations() 316 mFloat4Allocation->copy2DRangeFrom(0, 0, 3, 2, buffer_float); in initFloatAllocations() 318 delete [] buffer_float; in initFloatAllocations()
|
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/ |
D | jniallocations.cpp | 301 float *buffer_float = new float[mAllocSize]; in initFloatAllocations() local 306 buffer_float[i] = (float) 1 / i; in initFloatAllocations() 317 mFloatAllocation->copy1DRangeFrom(0, mAllocSize, buffer_float); in initFloatAllocations() 318 mFloat2Allocation->copy1DRangeFrom(0, mAllocSize/2, buffer_float); in initFloatAllocations() 319 mFloat3Allocation->copy1DRangeFrom(0, mAllocSize/4, buffer_float); in initFloatAllocations() 320 mFloat4Allocation->copy2DRangeFrom(0, 0, 3, 2, buffer_float); in initFloatAllocations() 322 delete [] buffer_float; in initFloatAllocations()
|