Searched refs:memory (Results 1 - 25 of 156) sorted by relevance

1234567

/art/runtime/
H A Druntime_options.cc19 #include <memory>
H A Dbarrier.h30 #include <memory>
/art/test/669-moveable-string-class-equals/src/
H A DMain.java48 // memory (with heap size limited to 16MiB), ensuring we run GC and stress the
60 memory[allocationIndex] = new Object[1024 / 4];
62 if (allocationIndex == memory.length) {
78 // We shall retain some allocated memory and release old allocations
80 public static Object[] memory = new Object[4096]; field in class:Main
/art/dex2oat/linker/
H A Delf_writer_quick.h20 #include <memory>
/art/runtime/gc/
H A Dallocation_listener.h21 #include <memory>
/art/test/945-obsolete-native/
H A Dobsolete_native.cc20 #include <memory>
/art/cmdline/
H A Dmemory_representation.h28 // An integral representation of bytes of memory.
62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) { argument
63 return stream << memory.Value << '*' << kDivisor;
/art/profman/
H A Dboot_image_profile.h21 #include <memory>
/art/runtime/jit/
H A Ddebugger_interface.h21 #include <memory>
37 // Notify native tools about new JITed code by passing in-memory ELF.
47 // Returns approximate memory used by all JITCodeEntries.
/art/test/163-app-image-methods/src/
H A DMain.java22 // Allocate memory for the "AAA.Derived" class name before eating memory.
24 System.out.println("Eating all memory.");
25 // Resolve VMClassLoader before eating all the memory since we can not fail
28 Object memory = eatAllMemory();
51 boolean memoryWasAllocated = (memory != null);
52 memory = null;
/art/compiler/linker/
H A Dbuffered_output_stream.h20 #include <memory>
/art/compiler/utils/
H A Ddedupe_set.h21 #include <memory>
/art/openjdkjvmti/
H A Dti_allocator.h39 #include <memory>
H A Dfixed_up_dex_file.h35 #include <memory>
/art/test/987-agent-bind/
H A Dagent_bind.cc21 #include <memory>
/art/runtime/gc/collector/
H A Dimmune_spaces_test.cc140 // Does not reserve the memory, the caller needs to be sure no other threads will map at the
152 LOG(ERROR) << "Failed to allocate memory region " << error_str;
214 uint8_t* memory = GetContinuousMemoryRegion(kImageSize + kImageOatSize + kOtherSpaceSize); local
216 std::unique_ptr<DummyImageSpace> image_space(CreateImageSpace(memory,
218 memory + kImageSize,
265 uint8_t* memory = GetContinuousMemoryRegion(kMemorySize); local
266 uint8_t* space1_begin = memory;
267 memory += kImage1Size;
268 uint8_t* space2_begin = memory;
269 memory
[all...]
/art/test/080-oom-throw/src/
H A DMain.java157 Object memory = eatAllMemory();
165 boolean memoryWasAllocated = (memory != null);
166 memory = null;
/art/compiler/driver/
H A Dsimple_compiler_options_map.h23 #include <memory>
/art/disassembler/
H A Ddisassembler_arm.h20 #include <memory>
/art/runtime/interpreter/
H A Dlock_count_data.h20 #include <memory>
H A Dshadow_frame.h61 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; local
62 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory);
68 uint8_t* memory = reinterpret_cast<uint8_t*>(sf); local
69 delete[] memory;
335 // Create ShadowFrame for interpreter using provided memory.
340 void* memory) {
341 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
336 CreateShadowFrameImpl(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, uint32_t dex_pc, void* memory) argument
/art/test/992-source-data/
H A Dsource_file.cc20 #include <memory>
/art/libartbase/base/
H A Dos_linux.cc24 #include <memory>
H A Dscoped_flock.h20 #include <memory>
/art/libdexfile/dex/
H A Dbase64_test_util.h23 #include <memory>

Completed in 5557 milliseconds

1234567