Home
last modified time | relevance | path

Searched refs:next (Results 26 – 50 of 78) sorted by relevance

1234

/art/test/504-regression-baseline-entry/
Dinfo.txt2 through to the next block.
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc148 uint32_t next() { in next() function in art::gc::accounting::RandGen
169 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
170 bool set = r.next() % 2 == 1; in RunTest()
180 const size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
182 const size_t end = offset + RoundDown(r.next() % (remain + 1), kAlignment); in RunTest()
/art/test/923-monitors/src/art/
DTest923.java149 String s = it.next(); in threadTests()
184 String s = it.next(); in threadTests()
200 throw new RuntimeException("Unexpected trailing output, starting with " + it.next()); in threadTests()
208 String t = it.next(); in expect()
/art/disassembler/
Ddisassembler_arm.cc208 uintptr_t next; in Dump() local
220 next = reinterpret_cast<uintptr_t>(disasm_->DecodeT32At(ip, end_address)); in Dump()
223 next = reinterpret_cast<uintptr_t>(disasm_->DecodeA32At(ip)); in Dump()
228 return next - instr_ptr; in Dump()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatClassInstance.java386 public FieldValue next() { in next() method in AhatClassInstance.InstanceFieldIterator
437 FieldValue field = mIter.next(); in hasNext()
451 public Reference next() { in next() method in AhatClassInstance.ReferenceIterator
455 Reference next = mNext; in next() local
457 return next; in next()
/art/runtime/
Dmethod_handles-inl.h59 const uint32_t next = operands_->GetOperand(operand_index_); in Next() local
61 return next; in Next()
65 const uint32_t next = operands_->GetOperand(operand_index_); in NextLong() local
67 return next; in NextLong()
Dhandle_scope-inl.h225 LocalScopeType* next = down_cast<LocalScopeType*>(current_scope_->GetLink()); in ~VariableSizedHandleScope() local
227 current_scope_ = next; in ~VariableSizedHandleScope()
/art/compiler/optimizing/
Dssa_phi_elimination.cc97 HInstruction* next = nullptr; in EliminateDeadPhis() local
101 next = current->GetNext(); in EliminateDeadPhis()
121 current = next; in EliminateDeadPhis()
Dblock_builder.cc132 DexInstructionIterator next(std::next(DexInstructionIterator(pair))); in CreateBranchTargets() local
133 if (next == code_item_accessor_.end()) { in CreateBranchTargets()
139 MaybeCreateBlockAt(next.DexPc()); in CreateBranchTargets()
214 block->AddSuccessor(GetBlockAt(std::next(DexInstructionIterator(pair)).DexPc())); in ConnectBasicBlocks()
Dloop_optimization.h60 next(nullptr) {} in LoopNode()
65 LoopNode* next; member
/art/libartbase/base/
Dmalloc_arena_pool.cc144 Arena* next = first->next_; in FreeArenaChain() local
146 first = next; in FreeArenaChain()
/art/runtime/base/
Dmem_map_arena_pool.cc147 Arena* next = first->next_; in FreeArenaChain() local
149 first = next; in FreeArenaChain()
/art/test/utils/python/testgen/
Dutils.py42 return ''.join(next(NAME_GEN))
/art/test/051-thread/src/
DMain.java189 StackTraceElement ste = it.next(); in testMainThreadAllStackTraces()
195 StackTraceElement ste2 = it.next(); in testMainThreadAllStackTraces()
/art/test/925-threadgroups/src/art/
DTest925.java103 Thread t = it.next(); in checkChildren()
130 Thread t = it.next(); in waitGroupChildren()
/art/compiler/utils/
Dassembler.h149 SlowPath* next = nullptr; in EmitSlowPaths() local
151 for ( ; cur != nullptr ; cur = next) { in EmitSlowPaths()
153 next = cur->next_; in EmitSlowPaths()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h191 shadow_frame.SetDexPC(next->GetDexPc(Insns())); in HandleBackwardBranch()
1850 const Instruction*& next, in InstructionHandler() argument
1859 next(next), in InstructionHandler()
1896 next = next_inst; in SetNextInstruction()
1906 const Instruction*& next; variable
1928 const Instruction*& next, \
1931 ctx, instrumentation, self, shadow_frame, dex_pc, inst, inst_data, next, exit); \
1947 const Instruction* next = Instruction::At(insns + dex_pc); in DEX_INSTRUCTION_LIST() local
1954 const Instruction* const inst = next; in DEX_INSTRUCTION_LIST()
1962 ctx, instrumentation, self, shadow_frame, dex_pc, inst, inst_data, next, exit). in DEX_INSTRUCTION_LIST()
[all …]
/art/runtime/gc/
Dreference_queue.cc68 ObjPtr<mirror::Reference> next = ref->GetPendingNext<kWithoutReadBarrier>(); in DequeuePendingReference() local
69 list_->SetPendingNext(next); in DequeuePendingReference()
/art/runtime/interpreter/mterp/arm/
Dcontrol_flow.S20 GOTO_OPCODE ip @ jump to next instruction
39 GOTO_OPCODE ip @ jump to next instruction
/art/test/530-checker-lse/src/
DMain.java43 TestClass next; field in TestClass
161 obj.next = obj2; // Make obj2 a non-singleton. in test3()
299 obj.next = obj2; in test9()
1404 obj1.next = obj2; in main()
1416 obj1.next = obj2; in main()
/art/libdexfile/dex/
Dclass_accessor-inl.h217 return { std::next(fields.begin(), NumStaticFields()), fields.end() }; in GetInstanceFields()
234 return { std::next(methods.begin(), NumDirectMethods()), methods.end() }; in GetVirtualMethods()
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc336 std::string next = SubstrOf(options, 0, options.find(',')); in ParseArgs() local
337 if (!ParseSingleBreakpoint(next, /*out*/ &target)) { in ParseArgs()
338 LOG(ERROR) << "Unable to parse breakpoint from " << next; in ParseArgs()
/art/tools/runtime_memusage/
Dprune_sanitizer_output.py79 bad_line_no = next((i - 2 for i, match in enumerate(trace_line_matches)
/art/tools/libjavac/src/com/android/javac/
DJavac.java115 return objs.iterator().next().openInputStream(); in getOutputFile()
/art/test/922-properties/src/art/
DTest922.java146 return sysProps.iterator().next(); in generate()

1234