Searched refs:alloc2 (Results 1 – 8 of 8) sorted by relevance
/aosp12/art/libartbase/base/ |
H A D | arena_allocator_test.cc | 80 void* alloc2 = allocator.Alloc(arena_allocator::kArenaDefaultSize * 2 / 8); in TEST_F() local 81 ASSERT_NE(alloc1, alloc2); in TEST_F() 88 void* alloc2 = allocator.Alloc(arena_allocator::kArenaDefaultSize * 11 / 16); in TEST_F() local 89 ASSERT_NE(alloc1, alloc2); in TEST_F() 93 ASSERT_NE(alloc2, alloc3); in TEST_F() 100 void* alloc2 = allocator.Alloc(arena_allocator::kArenaDefaultSize * 9 / 16); in TEST_F() local 101 ASSERT_NE(alloc1, alloc2); in TEST_F() 106 ASSERT_NE(alloc2, alloc3); in TEST_F() 113 void* alloc2 = allocator.Alloc(arena_allocator::kArenaDefaultSize * 13 / 16); in TEST_F() local 114 ASSERT_NE(alloc1, alloc2); in TEST_F() [all …]
|
/aosp12/art/test/104-growth-limit/src/ |
H A D | Main.java | 40 int alloc2 = allocateTillOOME(); in main() local 42 if (alloc1 > alloc2) { in main() 44 "limit cleared (" + alloc1 + " MBs > " + alloc2 + " MBs"); in main()
|
/aosp12/frameworks/base/rs/java/android/renderscript/ |
H A D | RenderScript.java | 503 native void rsnAllocationShareBufferQueue(long con, long alloc1, long alloc2); in rsnAllocationShareBufferQueue() argument 504 synchronized void nAllocationShareBufferQueue(long alloc1, long alloc2) { in nAllocationShareBufferQueue() argument 506 rsnAllocationShareBufferQueue(mContext, alloc1, alloc2); in nAllocationShareBufferQueue()
|
/aosp12/frameworks/rs/ |
H A D | rs.spec | 91 param RsAllocation alloc2
|
H A D | rsApiStubs.cpp | 370 … void rsAllocationShareBufferQueue (RsContext ctxWrapper, RsAllocation alloc1, RsAllocation alloc2) in rsAllocationShareBufferQueue() argument 372 RS_DISPATCH(ctxWrapper, AllocationShareBufferQueue, alloc1, alloc2); in rsAllocationShareBufferQueue()
|
H A D | rsAllocation.cpp | 868 Allocation *alloc2 = static_cast<Allocation *>(valloc2); in rsi_AllocationShareBufferQueue() local 869 alloc1->shareBufferQueue(rsc, alloc2); in rsi_AllocationShareBufferQueue()
|
H A D | rsApiStubs.h | 100 RsAllocation alloc2) __DEPRECATED_IN(31);
|
/aosp12/frameworks/base/rs/jni/ |
H A D | android_renderscript_RenderScript.cpp | 1250 nAllocationShareBufferQueue(JNIEnv *_env, jobject _this, jlong con, jlong alloc1, jlong alloc2) in nAllocationShareBufferQueue() argument 1254 (RsAllocation)alloc1, (RsAllocation)alloc2); in nAllocationShareBufferQueue() 1257 rsAllocationShareBufferQueue((RsContext)con, (RsAllocation)alloc1, (RsAllocation)alloc2); in nAllocationShareBufferQueue()
|