Searched defs:Pivot (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp133 CaseRange& Pivot = *(Begin + Mid); local
134 DEBUG(dbgs() << "Pivot ==> "
135 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
136 << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
151 Val, Pivot.Low, "Pivot");
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_qsort.c198 #define Pivot(swapper,sz) \ macro
337 Pivot(SWAP_nonaligned,size);
368 Pivot(SWAP_aligned,size);
403 Pivot(SWAP_words,WORD_BYTES);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2252 CaseItr Pivot = CR.Range.first + Size/2; local
2289 Pivot = J;
2303 Pivot = CR.Range.first + Size/2;
2306 CaseRange LHSR(CR.Range.first, Pivot);
2307 CaseRange RHSR(Pivot, CR.Range.second);
2308 const Constant *C = Pivot->Low;
2312 // less than the Pivot value, C. We use this to optimize our binary
2315 // Pivot's Value, then we can branch directly to the LHS's Target,

Completed in 97 milliseconds