Searched refs:objects (Results 1 - 12 of 12) sorted by relevance

/art/test/407-arrays/src/
H A DMain.java33 int[] ints, Object[] objects, long[] longs, float[] floats,
50 assertNull(objects[0]);
51 assertNull(objects[index]);
64 int[] ints, Object[] objects, long[] longs, float[] floats,
101 objects[0] = o1;
102 assertEquals(o1, objects[0]);
104 objects[index] = o2;
105 assertEquals(o2, objects[index]);
32 $opt$testReads(boolean[] bools, byte[] bytes, char[] chars, short[] shorts, int[] ints, Object[] objects, long[] longs, float[] floats, double[] doubles, int index) argument
63 $opt$testWrites(boolean[] bools, byte[] bytes, char[] chars, short[] shorts, int[] ints, Object[] objects, long[] longs, float[] floats, double doubles[], int index) argument
/art/runtime/gc/collector/
H A Dgarbage_collector.h48 : objects(num_objects), bytes(num_bytes) {}
50 objects += other.objects;
53 // Number of objects which were freed.
54 uint64_t objects; member in struct:art::gc::collector::ObjectBytePair
55 // Freed bytes are signed since the GC can free negative bytes if it promotes objects to a space
83 return freed_.objects;
86 return freed_los_.objects;
180 // Record a free of normal objects.
182 // Record a free of large objects
[all...]
H A Dgarbage_collector.cc114 // bits of dead objects in the live bitmap.
177 heap_->RecordFree(freed.objects, freed.bytes);
181 heap_->RecordFree(freed.objects, freed.bytes);
211 << " objects with total size " << PrettySize(freed_bytes) << "\n"
H A Dmark_sweep.cc188 // Handle the dirty objects if we are a concurrent GC.
192 // Scan dirty objects, this is only required if we are not doing concurrent GC.
241 // TODO: Empty allocation stack to reduce the number of objects we need to test / mark as live
328 // Reclaim unmarked objects.
485 // Verify all the objects have the correct pointer installed.
526 // Verify all the objects have the correct pointer installed.
547 // Used to mark objects when processing the mark stack. If an object is null, it is not marked.
773 // Scans all of the objects
993 // Scans all of the objects
1002 // Populates the mark stack based on the set of marked objects an
1195 StackReference<mirror::Object>* objects = allocations->Begin(); local
[all...]
/art/runtime/gc/space/
H A Dbump_pointer_space.h144 // Go through all of the blocks and visit the continuous objects.
150 // Record objects / bytes freed.
151 void RecordFree(int32_t objects, int32_t bytes) { argument
152 objects_allocated_.FetchAndSubSequentiallyConsistent(objects);
169 // The main block is an unbounded block where objects go when there are no other blocks. This
170 // enables us to maintain tightly packed objects when you are not using thread local buffers for
178 // The objects at the start of the space are stored in the main block. The main block doesn't
H A Dmalloc_space.cc173 // stored in between objects.
244 // Use a bulk free, that merges consecutive objects before freeing or free per object?
247 context->freed.objects += num_ptrs;
H A Dlarge_object_space.cc44 // Keep valgrind happy if there is any large objects such as dex cache arrays which aren't
594 context->freed.objects += num_ptrs;
/art/test/100-reflect2/src/
H A DMain.java163 private static Object[] sort(Object[] objects, Comparator<Object> comp) { argument
164 Arrays.sort(objects, comp);
165 return objects;
/art/runtime/
H A Dreflection.cc610 auto* objects = soa.Decode<mirror::ObjectArray<mirror::Object>*>(javaArgs); local
614 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0;
640 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method)) {
/art/runtime/arch/
H A Dstub_test.cc668 static constexpr size_t kNumberOfLocks = 10; // Number of objects = lock
698 // Keep a number of objects and their locks in flight. Randomly lock or unlock one of them in
708 Handle<mirror::String> objects[kNumberOfLocks]; variable
714 objects[i] = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), ""));
724 objects[index]->IdentityHashCode();
726 LockWord lock_iter = objects[index]->GetLockWord(false);
745 test->Invoke3(reinterpret_cast<size_t>(objects[index].Get()), 0U, 0U, art_quick_lock_object,
749 test->Invoke3(reinterpret_cast<size_t>(objects[index].Get()), 0U, 0U,
757 LockWord lock_iter = objects[index]->GetLockWord(true);
762 MonitorInfo info(objects[inde
[all...]
/art/test/046-reflect/src/
H A DMain.java413 final Object[] objects = new Object[2];
425 m.invoke(null, objects, 0, 1);
436 m.invoke(s, objects, 0, 1);
/art/runtime/jdwp/
H A Djdwp_handler.cc67 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
69 expandBufAdd4BE(reply, objects.size());
70 for (size_t i = 0; i < objects.size(); ++i) {
71 JdwpError rc = WriteTaggedObject(reply, objects[i]);
266 * (Ctrl-Shift-I in Eclipse on an array of objects causes it to create the

Completed in 286 milliseconds