HomeSort by relevance Sort by last modified time
    Searched defs:successor (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/v8/src/
hydrogen-environment-liveness.cc 72 // When a value is live in successor A but dead in B, we must
75 HBasicBlock* successor = it.Current(); local
76 int successor_id = successor->block_id();
hydrogen-bch.cc 160 Element* successor = at(current->end()->SuccessorAt(i)); local
162 if (!successor->is_in_loop()) {
163 if (!successor->is_proper_exit()) {
171 if (successor->is_start()) {
lithium.cc 468 HBasicBlock* successor; local
469 if (!instr->KnownSuccessorBlock(&successor)) return NULL;
470 return new(zone()) LGoto(successor);
lithium-allocator.cc 576 // successor edges.
579 // Process all successor blocks.
581 // Add values live on entry to the successor. Note the successor's
583 HBasicBlock* successor = it.Current(); local
584 BitVector* live_in = live_in_sets_[successor->block_id()];
587 // All phi input operands corresponding to this successor edge are live
589 int index = successor->PredecessorIndexOf(block);
590 const ZoneList<HPhi*>* phis = successor->phis();
    [all...]
jsregexp.cc 4589 RegExpNode* successor = that->on_success(); local
4633 RegExpNode* successor = that->on_success(); local
5539 OutSet* successor = successors(zone)->at(i); local
    [all...]
hydrogen.cc 361 // succeeding block in this list, the predecessor is before the successor.
402 // non-loop-exiting successor edges at the dominator_candidate block doesn't
439 HBasicBlock* successor = it.Current(); local
442 if (successor->block_id() > dominator_candidate->block_id() &&
443 successor->block_id() <= last->block_id()) {
445 ASSERT(successor->block_id() > dominator_candidate->block_id() ||
446 successor->IsLoopHeader());
    [all...]
  /external/e2fsprogs/intl/
loadinfo.h 76 struct loaded_l10nfile *successor[1]; member in struct:loaded_l10nfile
99 furthermore its ->successor[] field contains a list of other lookup
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
GLPropertyAccessor.java 46 IGLProperty successor = e.getProperty(root); local
47 if (successor == null) {
51 root = successor;
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 148 int successor = successors.get(j); local
150 if (successor != bb.getPrimarySuccessor()) {
151 System.out.print(" n" + Hex.u2(successor) + " ");
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 363 * phis in successor blocks.
624 * Updates the phi insns in successor blocks with operands based
656 SsaBasicBlock successor = ssaMeth.getBlocks().get(i); local
657 successor.forEachPhiInsn(visitor);
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 259 const UniquePosition& successor = kSortedPositionArray[j]; local
262 if (IsSuffixInUse(successor, suffix))
266 UniquePosition::Between(predecessor, successor, suffix);
269 EXPECT_PRED_FORMAT2(LessThan, midpoint, successor);
277 const UniquePosition& successor = kSortedPositionArray[i]; local
279 if (IsSuffixInUse(successor, suffix))
282 UniquePosition before = UniquePosition::Before(successor, suffix);
284 EXPECT_PRED_FORMAT2(LessThan, before, successor);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 364 * phis in successor blocks.
625 * Updates the phi insns in successor blocks with operands based
657 SsaBasicBlock successor = ssaMeth.getBlocks().get(i); local
658 successor.forEachPhiInsn(visitor);
  /art/compiler/sea_ir/ir/
sea.cc 379 // Fill in uses of phi functions in CFG successor regions.
383 Region* successor = (*successors_it); local
384 successor->SetPhiDefinitionsForUses(scoped_table, crt_region);
  /external/lzma/C/
Ppmd7.c 277 #define SUCCESSOR(p) ((CPpmd_Void_Ref)((p)->SuccessorLow | ((UInt32)(p)->SuccessorHigh << 16)))
345 CPpmd_Byte_Ref upBranch = (CPpmd_Byte_Ref)SUCCESSOR(p->FoundState);
354 CPpmd_Void_Ref successor; local
363 successor = SUCCESSOR(s);
364 if (successor != upBranch)
366 c = CTX(successor);
423 CPpmd_Void_Ref successor, fSuccessor = SUCCESSOR(p->FoundState); local
470 successor = REF(p->Text);
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 1263 EntryKernel* successor = *neighbour; local
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 625 ConnectionWaiter successor = mConnectionWaiterQueue; local
626 while (successor != null) {
627 if (priority > successor.mPriority) {
628 waiter.mNext = successor;
631 predecessor = successor;
632 successor = successor.mNext;
824 final ConnectionWaiter successor = waiter.mNext; local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java 188 for (AnalyzedInstruction successor: startOfMethod.successors) {
189 instructionsToAnalyze.set(successor.instructionIndex);
232 for (AnalyzedInstruction successor: instructionToAnalyze.successors) {
233 instructionsToAnalyze.set(successor.getInstructionIndex());
313 for (AnalyzedInstruction successor: startOfMethod.successors) {
314 instructionsToVerify.set(successor.instructionIndex);
338 for (AnalyzedInstruction successor: instructionToVerify.successors) {
339 instructionsToVerify.set(successor.getInstructionIndex());
470 for (AnalyzedInstruction successor: instruction.successors) {
471 if (successor.mergeRegister(registerNumber, postRegisterType, analyzedInstructions))
    [all...]
  /external/v8/src/
lithium-allocator.cc 563 // successor edges.
566 // Process all successor blocks.
568 // Add values live on entry to the successor. Note the successor's
570 HBasicBlock* successor = it.Current(); local
571 BitVector* live_in = live_in_sets_[successor->block_id()];
574 // All phi input operands corresponding to this successor edge are live
576 int index = successor->PredecessorIndexOf(block);
577 const ZoneList<HPhi*>* phis = successor->phis();
    [all...]
jsregexp.cc 3501 RegExpNode* successor = that->on_success(); local
3545 RegExpNode* successor = that->on_success(); local
4690 OutSet* successor = successors()->at(i); local
5029 GuardedAlternative successor = this->alternatives()->at(1); local
    [all...]
hydrogen.cc 282 // succeeding block in this list, the predecessor is before the successor.
323 // non-loop-exiting successor edges at the dominator_candidate block doesn't
360 HBasicBlock* successor = it.Current(); local
363 if (successor->block_id() > dominator_candidate->block_id() &&
364 successor->block_id() <= last->block_id()) {
366 ASSERT(successor->block_id() > dominator_candidate->block_id() ||
367 successor->IsLoopHeader());
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 1046 HBasicBlock* successor = HConstant::cast(value)->ToBoolean() local
1049 return new(zone()) LGoto(successor->block_id());
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 1049 HBasicBlock* successor = HConstant::cast(value)->ToBoolean() local
1052 return new(zone()) LGoto(successor->block_id());
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 1046 HBasicBlock* successor = HConstant::cast(value)->ToBoolean() local
1049 return new(zone()) LGoto(successor->block_id());
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 1043 HBasicBlock* successor = HConstant::cast(value)->ToBoolean() local
1046 return new(zone()) LGoto(successor->block_id());
    [all...]
  /prebuilts/devtools/tools/lib/
lint-checks.jar 

Completed in 2919 milliseconds

1 2