Searched refs:PI (Results 76 - 100 of 344) sorted by relevance

1234567891011>>

/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp423 Pass2Ty::iterator PI = Pass2.find(*I); local
424 if (PI == Pass2.end())
427 NewN->addPredecessor(const_cast<ExplodedNode *>(PI->second), *G);
436 Pass2Ty::iterator PI = Pass2.find(*I); local
437 if (PI != Pass2.end()) {
438 const_cast<ExplodedNode *>(PI->second)->addPredecessor(NewN, *G);
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp229 PI = IndProps.begin(), PE = IndProps.end(); PI != PE; ++PI) {
230 QualType T = (*PI)->getType();
240 PI = IndProps.begin(), PE = IndProps.end(); PI != PE; ++PI) {
241 ObjCPropertyDecl *PD = *PI;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
H A DAstroTest.java32 static final double PI = Math.PI; field in class:AstroTest
132 Equatorial result = astro.eclipticToEquatorial(139.686111 * PI/ 180.0, 4.875278* PI / 180.0);
147 double eclLat = laLat * Math.PI / 360;
148 double eclLong = laLong * Math.PI / 360;
374 double precision = PI/32;
382 double expectedAge = (angle[i]*PI)/180;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DAstroTest.java31 static final double PI = Math.PI; field in class:AstroTest
131 Equatorial result = astro.eclipticToEquatorial(139.686111 * PI/ 180.0, 4.875278* PI / 180.0);
146 double eclLat = laLat * Math.PI / 360;
147 double eclLong = laLong * Math.PI / 360;
373 double precision = PI/32;
381 double expectedAge = (angle[i]*PI)/180;
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp310 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
311 PE = MBB->pred_end(); PI != PE; ++PI) {
312 MachineBasicBlock *Pred = *PI;
422 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
423 PE = MBB->pred_end(); PI != PE; ++PI) {
424 LiveOutPair &Value = Map[*PI];
H A DTailDuplicator.cpp81 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
83 PI != PE; ++PI) {
84 MachineBasicBlock *PredBB = *PI;
652 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
654 PI != PE; ++PI) {
655 MachineBasicBlock *PredBB = *PI;
740 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
742 PI !
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp114 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
115 BasicBlock *PredBB = *PI;
252 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
253 Preds->push_back(*PI);
/external/smali/util/src/main/java/org/jf/util/
H A DNumberUtils.java39 private static final int piFloat = Float.floatToRawIntBits((float)Math.PI);
44 private static final long piDouble = Double.doubleToLongBits(Math.PI);
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h120 /// SplitCriticalEdge - If the edge from *PI to BB is not critical, return
125 inline bool SplitCriticalEdge(BasicBlock *Succ, pred_iterator PI, Pass *P = 0) { argument
127 TerminatorInst *TI = (*PI)->getTerminator();
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DShrinkWrapping.cpp243 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
244 PE = MBB->pred_end(); PI != PE; ++PI) {
245 MachineBasicBlock* PRED = *PI;
449 MachineBasicBlock::pred_iterator PI = HDR->pred_begin(); local
450 HDR = *PI;
569 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
570 PE = MBB->pred_end(); PI != PE; ++PI) {
571 MachineBasicBlock* PRED = *PI;
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp543 for (pred_iterator PI = PB; PI != PE; ++PI) {
544 BasicBlock *P = *PI;
598 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
599 BasicBlock *Pred = *PI;
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DPassManager.cpp89 if (const llvm::PassInfo *PI =
94 if (PassInf->getPassArgument() == PI->getPassArgument()) {
337 /// Return function pass corresponding to PassInfo PI, that is
340 virtual Pass* getOnTheFlyPass(Pass *MP, AnalysisID PI, Function &F);
614 const PassInfo *PI =
616 if (PI && PI->isAnalysis() && findAnalysisPass(P->getPassID())) {
633 const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(*I);
634 assert(PI && "Expected required passes to be initialized");
635 AnalysisPass = PI
[all...]
/external/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp541 for (CodeGenSchedModels::ProcIter PI = SchedModels.procModelBegin(),
542 PE = SchedModels.procModelEnd(); PI != PE; ++PI, ++ProcItinListsIter) {
544 Record *ItinsDef = PI->ItinsDef;
1105 for (CodeGenSchedModels::ProcIter PI = SchedModels.procModelBegin(),
1106 PE = SchedModels.procModelEnd(); PI != PE; ++PI) {
1107 if (!PI->hasInstrSchedModel())
1111 SchedTables.ProcSchedClasses[1 + (PI - SchedModels.procModelBegin())];
1116 << PI
1295 IdxVec PI; local
1304 OS << "if (SchedModel->getProcessorID() == " << PI << ") "; local
[all...]
H A DOptParserEmitter.cpp148 for (PrefixKeyT::const_iterator PI = I->first.begin(),
149 PE = I->first.end(); PI != PE; ++PI) {
150 OS << "\"" << *PI << "\" COMMA "; local
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A Dt012lexerXML.g41 fragment PI :
43 {this.output("PI: "+$target.text)}
63 | pi=PI
/external/crcalc/tests/src/com/hp/creals/
H A DCRTest.java106 CR half_pi = CR.PI.divide(two);
122 .monotoneDerivative(zero, CR.PI);
135 CR tmp = CR.PI.add(CR.valueOf(-123).exp());
136 CR tmp2 = tmp.subtract(CR.PI);
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableClassToInstanceMapTest.java85 in.put(Double.class, Math.PI);
93 assertEquals(Math.PI, pi, 0.0);
124 = ImmutableMap.of(Number.class, 0, Double.class, Math.PI);
132 assertEquals(Math.PI, pi, 0.0);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicDoubleTest.java28 -Math.PI,
35 Math.PI,
101 double unused = Math.E + Math.PI;
138 double unused = Math.E + Math.PI;
/external/llvm/include/llvm/Support/
H A DProgram.h171 /// This function waits for the process specified by \p PI to finish.
179 const ProcessInfo &PI, ///< The child process that should be waited on.
/external/llvm/lib/IR/
H A DDominators.cpp178 for (const_pred_iterator PI = pred_begin(End), E = pred_end(End);
179 PI != E; ++PI) {
180 const BasicBlock *BB = *PI;
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp235 PI = pred_begin(LPad), PE = pred_end(LPad); PI != PE; ++PI) {
236 BasicBlock *BB = *PI;
/external/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp241 pred_iterator PI(LocalStartBB), PE(LocalStartBB, false);
242 if (PI == PE)
248 BasicBlock *PredBB = *PI;
251 } while (++PI != PE);
/external/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp113 for (pred_iterator PI = PB; PI != PE; ++PI)
114 RetBlockPHI->addIncoming(InVal, *PI);
/external/skia/third_party/lua/src/
H A Dlmathlib.c20 #undef PI macro
21 #define PI ((lua_Number)(3.1415926535897932384626433832795)) macro
22 #define RADIANS_PER_DEGREE ((lua_Number)(PI/180.0))
273 lua_pushnumber(L, PI);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLoopInfo.h299 for (typename InvBlockTraits::ChildIteratorType PI =
301 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI) {
302 typename InvBlockTraits::NodeType *N = *PI;
320 typename InvBlockTraits::ChildIteratorType PI = local
325 for (; PI != PE; ++PI) {
326 typename InvBlockTraits::NodeType *N = *PI;
440 for (typename InvBlockTraits::ChildIteratorType PI =
442 PI !
[all...]

Completed in 634 milliseconds

1234567891011>>