Searched refs:set (Results 1 - 25 of 50) sorted by relevance

12

/art/runtime/arch/mips/
H A Dportable_entrypoints_mips.S19 .set noreorder
25 # Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
53 # Begin argument set up.
H A Djni_entrypoints_mips.S19 .set noreorder
/art/runtime/gc/accounting/
H A Dheap_bitmap.h51 SpaceSetMap* set = GetDiscontinuousSpaceObjectSet(obj); local
52 DCHECK(set != NULL);
53 set->Clear(obj);
62 SpaceSetMap* set = GetDiscontinuousSpaceObjectSet(obj); local
63 DCHECK(set != NULL);
64 set->Set(obj);
98 // Find and replace a object set pointer, this is used by for the bitmap swapping in the GC.
108 void AddDiscontinuousObjectSet(SpaceSetMap* set);
H A Dheap_bitmap.cc42 LOG(FATAL) << "object set " << static_cast<const void*>(old_set) << " not found";
58 void HeapBitmap::AddDiscontinuousObjectSet(SpaceSetMap* set) { argument
59 DCHECK(set != NULL);
60 discontinuous_space_sets_.push_back(set);
H A Dmod_union_table.h24 #include <set>
53 typedef std::set<byte*, std::less<byte*>, GCAllocator<byte*> > CardSet;
H A Dmod_union_table.cc139 const std::set<const Object*>& references)
166 const std::set<const Object*>& references_;
172 const std::set<const Object*>& references)
186 const std::set<const Object*>& references_;
203 std::set<const Object*> reference_set(it.second.begin(), it.second.end());
H A Dspace_bitmap.h27 #include <set>
96 // even if a bit has not been set for it.
213 typedef std::set<
/art/compiler/sea_ir/ir/
H A Dsea.h21 #include <set>
107 // Returns the ordered set of Instructions that define the input operands of this instruction.
163 // and returns true if the reaching definitions set changed.
165 // Returns the set of reaching definitions for the current region.
166 std::map<int, std::set<sea_ir::InstructionNode*>* >* GetReachingDefs();
188 const std::set<Region*>* GetIDominatedSet() {
197 std::set<Region*>* GetDominanceFrontier() {
243 std::map<int, std::set<sea_ir::InstructionNode*>* > reaching_defs_;
248 // The set of nodes immediately dominated by the region.
249 std::set<Regio
[all...]
H A Dsea.cc79 std::set<Region*> processedNodes;
104 // For all other predecessors p of b, if idom is not set,
160 // Iterate until the reaching definitions set doesn't change anymore.
292 std::map<int, std::set<Region*> > blocks;
293 // The set @globals records registers whose use
295 std::set<int> globals;
298 std::set<int> var_kill;
314 blocks.insert(std::pair<int, std::set<Region*> >(reg_def, std::set<Region*>()));
315 std::set<Regio
[all...]
/art/compiler/utils/
H A Ddedupe_set.h20 #include <set>
41 typedef std::set<HashedKey, Comparator> Keys;
/art/test/100-reflect2/src/
H A DMain.java85 f.set(null, Boolean.valueOf(true));
87 f.set(null, Byte.valueOf((byte) 6));
89 f.set(null, Character.valueOf('z'));
91 f.set(null, Double.valueOf(1.3));
93 f.set(null, Float.valueOf(1.3f));
95 f.set(null, Integer.valueOf(30));
97 f.set(null, Long.valueOf(62));
98 f.set(null, Integer.valueOf(62));
100 f.set(null, Short.valueOf((short) 14));
121 f.set(nul
[all...]
/art/test/045-reflect-array/src/
H A DMain.java54 Array.set(intArray, 0, x123);
55 Array.set(intArray, 1, x456);
169 Array.set(strArray, 1, "entry one");
171 Array.set(strArray, 2, "entry two");
189 Array.set(strArray, 0, new Integer(5));
/art/runtime/base/
H A Dstringpiece.h68 void set(const char* data, int len) { function in class:art::StringPiece
72 void set(const char* str) { function in class:art::StringPiece
79 void set(const void* data, int len) { function in class:art::StringPiece
/art/runtime/
H A Dtrace.h21 #include <set>
112 void GetVisitedMethods(size_t end_offset, std::set<mirror::ArtMethod*>* visited_methods);
113 void DumpMethodList(std::ostream& os, const std::set<mirror::ArtMethod*>& visited_methods)
/art/test/092-locale/src/
H A DMain.java71 usaCal.set(2012, Calendar.JANUARY, 1);
87 franceCal.set(2012, Calendar.JANUARY, 2);
142 * Test that we can set and get an ISO3 language code. Support for this
/art/runtime/arch/arm/
H A Dportable_entrypoints_arm.S53 mov ip, #0 @ set ip to 0
68 @ Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
86 @ Begin argument set up.
100 @ Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
142 @ Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
/art/test/046-reflect/src/
H A DMain.java187 field.set(instance, new String("a new string"));
194 field.set(instance, new Object());
231 field.set(instance, null);
256 field.set(instance, new Integer(20202));
266 field.set(instance, new Long(123));
280 field.set(instance, new String("abc"));
339 System.out.println("ERROR: set-final failed");
350 field.set(instance, 88); // exercise Object version
/art/test/201-built-in-exception-detail-messages/src/
H A DMain.java358 field.set(new A(), 5);
367 field.set(new A(), null);
376 field.set(new A(), "hello, world!");
/art/compiler/dex/
H A Darena_bit_vector.h41 // Return the position of the next set bit. -1 means end-of-element reached.
93 void MarkAllBits(bool set);
H A Dlocal_value_numbering.h137 std::set<uint16_t> null_checked_;
/art/compiler/
H A Dimage_writer.h23 #include <set>
213 std::set<mirror::DexCache*> dex_caches_;
/art/compiler/sea_ir/debug/
H A Ddot_gen.cc36 const std::set<Region*>* dominated_regions = current_region->GetIDominatedSet();
37 for (std::set<Region*>::const_iterator cit = dominated_regions->begin();
/art/runtime/gc/space/
H A Dlarge_object_space.h25 #include <set>
213 // Removes header from the free blocks set by finding the corresponding iterator and erasing it.
219 typedef std::set<AllocationHeader*, AllocationHeader::SortByPrevFree,
/art/compiler/driver/
H A Dcompiler_driver.h20 #include <set>
86 typedef std::set<std::string> DescriptorSet;
386 std::set<ClassReference> freezing_constructor_classes_ GUARDED_BY(freezing_constructor_lock_);
/art/runtime/verifier/
H A Dmethod_verifier.h20 #include <set>
118 // Initialize the RegisterTable. Every instruction address can have a different set of information
186 // Dump the state of the verifier, namely each instruction, what flags are set on it, register
287 * The "new_instance_count_" and "monitor_enter_count_" fields in vdata are also set.
303 * Call this after widths have been set in "insn_flags".
358 // Perform static checks on a field get or set instruction. All we do here is ensure that the
423 * The basic strategy is as outlined in v3 4.11.1.2: set the "changed" bit on the first
475 * addresses. Does not set or clear any other flags in "insn_flags_".
488 // Perform verification of an aget instruction. The destination register's type will be set to
572 * set appropriatel
[all...]

Completed in 552 milliseconds

12