Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 78) sorted by relevance

1234

/art/runtime/arch/
Dmemcmp16_test.cc25 uint32_t next() { in next() function in RandGen
54 size_t type = r.next() % range_of_tests; in CheckSeparate()
63 count1 = (r.next() % max_length) + min_length; in CheckSeparate()
64 count2 = (r.next() % max_length) + min_length; in CheckSeparate()
68 count1 = (r.next() % max_length) + min_length; in CheckSeparate()
74 count2 = (r.next() % max_length) + min_length; in CheckSeparate()
103 bool fill_same = r.next() % 2 == 1; in CheckSeparate()
107 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
111 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
114 s2[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
[all …]
/art/tools/class2greylist/src/com/android/class2greylist/
DApiComponents.java82 sc.next(); in parseJNIClassDescriptor()
88 String jniClassDescriptor = sc.next(semiColonPos); in parseJNIClassDescriptor()
90 sc.next(); in parseJNIClassDescriptor()
102 char c = sc.next(); in parseJNIPrimitiveType()
156 sc.next(); in parseJniType()
177 if (sc.next() != '(') { in convertJNIMethodParametersToJavadoc()
208 sc.next(2); in fromDexSignature()
213 memberName = sc.next(leftParenPos); in fromDexSignature()
221 memberName = sc.next(colonPos); in fromDexSignature()
223 sc.next(); in fromDexSignature()
[all …]
DStringCursor.java72 public char next() throws StringCursorOutOfBoundsException { in next() method in StringCursor
86 public String next(int n) throws StringCursorOutOfBoundsException { in next() method in StringCursor
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DSkipNullsIterator.java37 mNext = mIter.next(); in hasNext()
43 public T next() { in next() method in SkipNullsIterator
47 T next = mNext; in next() local
49 return next; in next()
DDominatorReferenceIterator.java41 Reference ref = mIter.next(); in hasNext()
50 public AhatInstance next() { in next() method in DominatorReferenceIterator
52 AhatInstance next = mNext; in next() local
54 return next; in next()
/art/compiler/optimizing/
Dssa_builder.cc70 HPhi* next = phi->GetNextEquivalentPhiWithSameType(); in EquivalentPhisCleanup() local
71 if (next != nullptr) { in EquivalentPhisCleanup()
74 if (next->IsLive()) { in EquivalentPhisCleanup()
75 phi->ReplaceWith(next); in EquivalentPhisCleanup()
78 next->ReplaceWith(phi); in EquivalentPhisCleanup()
80 DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr) in EquivalentPhisCleanup()
94 HInstruction* next = phi->GetNext(); in FixEnvironmentPhis() local
95 if (!phi->IsVRegEquivalentOf(next)) continue; in FixEnvironmentPhis()
96 if (next->AsPhi()->IsDead()) { in FixEnvironmentPhis()
98 next = next->GetNext(); in FixEnvironmentPhis()
[all …]
Dprepare_for_register_allocation.cc55 HInstruction* next = check->GetNext(); in VisitNullCheck() local
59 while (next->IsBoundType()) { in VisitNullCheck()
60 next = next->GetNext(); in VisitNullCheck()
61 VisitBoundType(next->GetPrevious()->AsBoundType()); in VisitNullCheck()
63 if (next->CanDoImplicitNullCheckOn(check->InputAt(0))) { in VisitNullCheck()
Dgvn.cc188 Node(HInstruction* instruction, size_t hash_code, Node* next) in Node() argument
189 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node()
284 Node* next = node->GetNext(); in DeleteAllImpureWhich() local
287 buckets_[i] = next; in DeleteAllImpureWhich()
289 previous->SetNext(next); in DeleteAllImpureWhich()
294 node = next; in DeleteAllImpureWhich()
491 HInstruction* next = current->GetNext(); in VisitBasicBlock() local
521 current = next; in VisitBasicBlock()
/art/runtime/
Dsubtype_check_info.h246 BitStringChar next = GetNext(); in CreateChild() local
247 if (next != next.MaximumValue()) { in CreateChild()
249 OverwriteNextValueFromParent(/*inout*/&child, next); in CreateChild()
252 SetNext(next + 1u); in CreateChild()
318 bool MaybeGetNext(/*out*/BitStringChar* next) const { in MaybeGetNext()
319 DCHECK(next != nullptr); in MaybeGetNext()
322 *next = GetBitString()[depth_]; in MaybeGetNext()
330 SubtypeCheckInfo(BitString path_to_root, BitStringChar next, bool overflow, size_t depth) { in SubtypeCheckInfo()
348 SetNext(next); in SubtypeCheckInfo()
350 DCHECK_EQ(next, GetNext()); in SubtypeCheckInfo()
[all …]
Dmonitor_pool_test.cc31 uint32_t next() { in next() function in art::RandGen
70 alloc = r.next() % 2 == 0; in TEST_F()
80 size_t index = r.next() % monitors.size(); in TEST_F()
112 size_t index = r.next() % monitors.size(); in TEST_F()
/art/test/1980-obsolete-object-cleared/src/
DMain.java79 public Object[] next() { in next() method in Main.BaseResetIter
256 private ResetIterator<Object[]> next;
262 public Object[] next() {
263 if (!next.hasNext()) {
264 cur = my_vals.next();
266 if (next != null) {
267 next.reset();
272 cur = my_vals.next();
274 Object[] nv = next.next();
284 return next.hasNext() || my_vals.hasNext();
[all …]
/art/test/1922-owned-monitors-info/
Downed_monitors.cc44 static bool doCallRunnable(JNIEnv* env, jobject next) { in doCallRunnable() argument
53 env->CallVoidMethod(next, run); in doCallRunnable()
58 JNIEnv* env, jobject thiz, jobject next) { in Java_art_Test1922_00024Target_lockThisNative() argument
62 if (doCallRunnable(env, next)) { in Java_art_Test1922_00024Target_lockThisNative()
71 JNIEnv* env, jobject thiz ATTRIBUTE_UNUSED, jobject mon, jobject next) { in Java_art_Test1922_00024Target_lockNative() argument
75 if (doCallRunnable(env, next)) { in Java_art_Test1922_00024Target_lockNative()
/art/runtime/interpreter/mterp/arm/
Dother.S18 GOTO_OPCODE ip @ jump to next instruction
35 GOTO_OPCODE ip @ jump to next instruction
44 GOTO_OPCODE ip @ jump to next instruction
53 GOTO_OPCODE ip @ execute next instruction
66 GOTO_OPCODE ip @ jump to next instruction
92 GOTO_OPCODE ip @ jump to next instruction
108 GOTO_OPCODE ip @ jump to next instruction
120 GOTO_OPCODE ip @ jump to next instruction
134 GOTO_OPCODE ip @ jump to next instruction
147 GOTO_OPCODE ip @ jump to next instruction
[all …]
Dobject.S10 PREFETCH_INST 2 @ prefetch next opcode
16 GOTO_OPCODE ip @ jump to next instruction
35 GOTO_OPCODE ip @ jump to next instruction
124 GOTO_OPCODE ip @ jump to next instruction
164 GOTO_OPCODE ip @ jump to next instruction
189 GOTO_OPCODE ip @ jump to next instruction
225 GOTO_OPCODE ip @ jump to next instruction
240 GOTO_OPCODE ip @ jump to next instruction
264 GOTO_OPCODE ip @ jump to next instruction
280 GOTO_OPCODE ip @ jump to next instruction
Darray.S29 GOTO_OPCODE ip @ jump to next instruction
61 GOTO_OPCODE ip @ jump to next instruction
91 GOTO_OPCODE ip @ jump to next instruction
121 GOTO_OPCODE ip @ jump to next instruction
146 GOTO_OPCODE ip @ jump to next instruction
175 GOTO_OPCODE ip @ jump to next instruction
190 GOTO_OPCODE ip @ jump to next instruction
206 GOTO_OPCODE ip @ jump to next instruction
226 GOTO_OPCODE ip @ jump to next instruction
250 GOTO_OPCODE ip @ jump to next instruction
Darithmetic.S34 GOTO_OPCODE ip @ jump to next instruction
67 GOTO_OPCODE ip @ jump to next instruction
97 GOTO_OPCODE ip @ jump to next instruction
133 GOTO_OPCODE ip @ jump to next instruction
172 GOTO_OPCODE ip @ jump to next instruction
207 GOTO_OPCODE ip @ jump to next instruction
228 GOTO_OPCODE ip @ jump to next instruction
252 GOTO_OPCODE ip @ jump to next instruction
275 GOTO_OPCODE ip @ jump to next instruction
297 GOTO_OPCODE ip @ jump to next instruction
[all …]
/art/test/1922-owned-monitors-info/src/art/
DTest1922.java194 for (Function<Runnable, Runnable> r1 = li1.next(); li1.hasNext(); r1 = li1.next()) { in runTestsOtherThread()
197 for (Function<Runnable, Runnable> r2 = li2.next(); li2.hasNext(); r2 = li2.next()) { in runTestsOtherThread()
200 for (Function<Runnable, Runnable> r3 = li3.next(); li3.hasNext(); r3 = li3.next()) { in runTestsOtherThread()
238 for (Function<Runnable, Runnable> r1 = li1.next(); li1.hasNext(); r1 = li1.next()) { in runTestsCurrentThread()
241 for (Function<Runnable, Runnable> r2 = li2.next(); li2.hasNext(); r2 = li2.next()) { in runTestsCurrentThread()
244 for (Function<Runnable, Runnable> r3 = li3.next(); li3.hasNext(); r3 = li3.next()) { in runTestsCurrentThread()
/art/runtime/jit/
Ddebugger_interface.cc278 static void InsertNewEntry(const JITCodeEntry* entry, const JITCodeEntry* next) { in InsertNewEntry() argument
281 const JITCodeEntry* prev = (next != nullptr ? next->prev_ : descriptor.tail_); in InsertNewEntry()
283 writable->next_ = next; in InsertNewEntry()
287 if (next != nullptr) { in InsertNewEntry()
288 NativeInfo::Writable(next)->prev_ = entry; in InsertNewEntry()
334 const JITCodeEntry* next = descriptor.head_.load(kNonRacingRelaxed); // Insert at the head. in CreateJITCodeEntryInternal() local
336 next = nullptr; // Insert zygote entries at the tail. in CreateJITCodeEntryInternal()
354 InsertNewEntry<NativeInfo>(entry, next); in CreateJITCodeEntryInternal()
372 const JITCodeEntry* next = entry->next_.load(kNonRacingRelaxed); in DeleteJITCodeEntryInternal() local
374 if (next != nullptr) { in DeleteJITCodeEntryInternal()
[all …]
/art/tools/dmtracedump/
Dtracedump.cc139 struct TimedMethod* next; member
549 int32_t next; in countLinesToToken() local
552 next = findNextChar(data, len, '\n'); in countLinesToToken()
553 if (next < 0) return -1; in countLinesToToken()
555 data += next + 1; in countLinesToToken()
556 len -= next + 1; in countLinesToToken()
569 int32_t next; in checkToken() local
576 next = findNextChar(data, len, '\n'); in checkToken()
577 if (next < cmpLen + 1) return -1; in checkToken()
584 return next + 1; in checkToken()
[all …]
/art/tools/
Danalyze-init-failures.py51 raw_line = it.next()
60 raw_line = it.next()
70 raw_line = it.next()
91 raw_line = it.next()
/art/compiler/debug/dwarf/
Ddwarf_test.h48 bool next; member
55 void Check(const char* substr, bool next, const char* at_file, int at_line) { in Check() argument
56 expected_lines_.push_back(ExpectedLine {substr, next, at_file, at_line}); in Check()
134 if (expected.next && it != actual_line) { in CheckObjdumpOutput()
/art/test/1987-structural-redefine-recursive-stack-scope/src/
DMain.java70 final Runnable next = res; in main() local
75 results[id] = NativeFieldScopeCheck(f, next).invokeExact(); in main()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc376 auto next = std::next(inst); in ProcessCodeItem() local
377 if (next != code_item.end()) { in ProcessCodeItem()
379 next->Opcode() == Instruction::MOVE_RESULT || in ProcessCodeItem()
380 next->Opcode() == Instruction::MOVE_RESULT_WIDE || in ProcessCodeItem()
381 next->Opcode() == Instruction::MOVE_RESULT_OBJECT; in ProcessCodeItem()
383 dest_reg = next->VRegA_11x(); in ProcessCodeItem()
476 auto next = std::next(inst); in ProcessCodeItem() local
477 if (next != code_item.end() && next->Opcode() == Instruction::INVOKE_DIRECT) { in ProcessCodeItem()
479 uint32_t arg_count = next->GetVarArgs(args); in ProcessCodeItem()
480 uint32_t method_idx = DexMethodIndex(next.Inst()); in ProcessCodeItem()
/art/test/080-oom-throw/src/
DMain.java39 InstanceMemEater next; field in Main.InstanceMemEater
104 lastMemEater.next = InstanceMemEater.allocate(); in triggerInstanceOOM()
105 lastMemEater = lastMemEater.next; in triggerInstanceOOM()
/art/test/444-checker-nce/src/
DMain.java247 private ListElement next; field in ListElement
260 xTail = xTail.next; in isShorter()
261 yTail = yTail.next; in isShorter()

1234