Home
last modified time | relevance | path

Searched defs:memory (Results 1 – 20 of 20) sorted by relevance

/art/test/004-UnsafeTest/
Dunsafe_test.cc42 void* memory = malloc(dchecked_integral_cast<size_t>(size)); in Java_Main_unsafeTestMalloc() local
47 extern "C" JNIEXPORT void JNICALL Java_Main_unsafeTestFree(JNIEnv*, jclass, jlong memory) { in Java_Main_unsafeTestFree()
/art/test/2235-JdkUnsafeTest/
Dunsafe_test.cc42 void* memory = malloc(dchecked_integral_cast<size_t>(size)); in Java_Main_jdkUnsafeTestMalloc() local
47 extern "C" JNIEXPORT void JNICALL Java_Main_jdkUnsafeTestFree(JNIEnv*, jclass, jlong memory) { in Java_Main_jdkUnsafeTestFree()
/art/compiler/optimizing/
Dstack_map_test.cc65 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
151 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
321 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
376 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
435 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
481 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
580 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
716 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
Dcode_generator.cc145 void* memory = allocator.Alloc<CodeGenerationData>(kArenaAllocCodeGenerator); in Create() local
/art/test/1004-checker-volatile-ref-load/src/
DMain.java90 public static Object[] memory = new Object[1024]; field in Main
/art/test/163-app-image-methods/src/
DMain.java28 Object memory = eatAllMemory(); in main() local
/art/dex2oat/linker/
Dcode_info_table_deduper_test.cc46 ScopedArenaVector<uint8_t> memory = stream.Encode(); in TEST() local
/art/test/004-UnsafeTest/src/
DMain.java258 long memory = unsafeTestMalloc(size); in testCopyMemoryPrimitiveArrays() local
302 private static native void unsafeTestFree(long memory); in unsafeTestFree()
/art/runtime/interpreter/
Dshadow_frame.h77 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; in CreateDeoptimizedFrame() local
84 uint8_t* memory = reinterpret_cast<uint8_t*>(sf); in DeleteDeoptimizedFrame() local
320 void* memory) { in CreateShadowFrameImpl()
/art/test/080-oom-throw/src/
DMain.java172 Object memory = eatAllMemory(); in triggerReflectionOOM2() local
/art/runtime/verifier/
Dregister_line-inl.h184 void* memory = allocator.Alloc(ComputeSize(num_regs)); in Create() local
/art/runtime/jit/
Ddebugger_interface.cc243 jit::JitMemoryRegion* memory = jit_code_cache->GetCurrentRegion(); in Memory() local
311 const void* memory = NativeInfo::Alloc(sizeof(JITCodeEntry)); in CreateJITCodeEntryInternal() local
Djit.h214 void* memory[0]; member
Djit_code_cache.cc1889 const uint8_t* memory = region_->AllocateData( in Initialize() local
/art/runtime/
Doat.cc56 void* memory = operator new (needed_size); in Create() local
Dthread.cc458 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create() local
463 uint8_t* memory = reinterpret_cast<uint8_t*>(f); in Delete() local
/art/test/2235-JdkUnsafeTest/src/
DMain.java518 private static native void jdkUnsafeTestFree(long memory); in jdkUnsafeTestFree()
/art/libdexfile/dex/
Ddex_file_loader.cc225 std::vector<uint8_t>&& memory, in Open()
/art/test/159-app-image-fields/src/
DMain.java26 Object memory = eatAllMemory(); in main() local
/art/test/160-read-barrier-stress/src/
DMain.java482 public static Object[] memory = new Object[1024]; field in Main