Home
last modified time | relevance | path

Searched refs:Entry (Results 1 – 17 of 17) sorted by relevance

/art/runtime/
Dtype_lookup_table.cc50 return SupportedSize(num_class_defs) ? RoundUpToPowerOfTwo(num_class_defs) * sizeof(Entry) : 0u; in RawDataLength()
75 entries_(storage != nullptr ? reinterpret_cast<Entry*>(storage) : new Entry[mask_ + 1]), in TypeLookupTable()
77 static_assert(alignof(Entry) == 4u, "Expecting Entry to be 4-byte aligned."); in TypeLookupTable()
78 DCHECK_ALIGNED(storage, alignof(Entry)); in TypeLookupTable()
88 Entry entry; in TypeLookupTable()
102 Entry entry; in TypeLookupTable()
112 entries_(reinterpret_cast<Entry*>(const_cast<uint8_t*>(raw_data))), in TypeLookupTable()
115 bool TypeLookupTable::SetOnInitialPos(const Entry& entry, uint32_t hash) { in SetOnInitialPos()
125 void TypeLookupTable::Insert(const Entry& entry, uint32_t hash) { in Insert()
138 const Entry* entry = &entries_[pos]; in FindLastEntryInBucket()
Dtype_lookup_table.h48 const Entry* entry = &entries_[pos]; in Lookup()
99 struct Entry { struct
104 Entry() : str_offset(0), data(0), next_pos_delta(0) {} in Entry() argument
149 bool SetOnInitialPos(const Entry& entry, uint32_t hash);
152 void Insert(const Entry& entry, uint32_t hash);
159 std::unique_ptr<Entry[]> entries_;
/art/test/062-character-encodings/src/
DMain.java19 for (Map.Entry<String, Charset> e : all.entrySet()) { in main()
/art/test/063-process-manager/src/
DMain.java29 for (Map.Entry<Thread, StackTraceElement[]> entry : in checkManager()
/art/tools/ahat/src/
DObjectHandler.java146 List<Map.Entry<Field, Object>> fields in printClassInfo()
147 = new ArrayList<Map.Entry<Field, Object>>(clsobj.getStaticFieldValues().entrySet()); in printClassInfo()
148 SubsetSelector<Map.Entry<Field, Object>> selector in printClassInfo()
150 for (Map.Entry<Field, Object> field : selector.selected()) { in printClassInfo()
DQuery.java94 for (Map.Entry<String, String> entry : params.entrySet()) { in with()
/art/tools/ahat/test/
DTestDump.java68 for (Map.Entry<Field, Object> fields : main.getStaticFieldValues().entrySet()) { in getDumpedThing()
/art/compiler/utils/arm64/
Dassembler_arm64.h71 vixl::Label* Entry() { return &exception_entry_; } in Entry() function
Dassembler_arm64.cc616 ___ Cbnz(reg_x(scratch.AsXRegister()), exception_blocks_.back()->Entry()); in ExceptionPoll()
625 ___ Bind(exception->Entry()); in EmitExceptionPoll()
/art/compiler/utils/
Dassembler.h71 Label* Entry() { return &entry_; } in Entry() function
/art/compiler/utils/arm/
Dassembler_arm.cc853 b(slow->Entry(), NE); in ExceptionPoll()
/art/compiler/utils/mips64/
Dassembler_mips64.h94 Mips64Label* Entry() { return &exception_entry_; } in Entry() function
Dassembler_mips64.cc2452 Bnezc(scratch.AsGpuRegister(), exception_blocks_.back().Entry()); in ExceptionPoll()
2456 Bind(exception->Entry()); in EmitExceptionPoll()
/art/compiler/utils/mips/
Dassembler_mips.h94 MipsLabel* Entry() { return &exception_entry_; } in Entry() function
Dassembler_mips.cc2900 Bnez(scratch.AsCoreRegister(), exception_blocks_.back().Entry()); in ExceptionPoll()
2904 Bind(exception->Entry()); in EmitExceptionPoll()
/art/compiler/utils/x86/
Dassembler_x86.cc2385 j(kNotEqual, slow->Entry()); in ExceptionPoll()
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc3150 j(kNotEqual, slow->Entry()); in ExceptionPoll()