Searched defs:PI (Results 26 - 50 of 102) sorted by relevance

12345

/external/aac/libAACenc/src/
H A Daacenc_tns.h99 #ifndef PI
100 #define PI 3.1415926535897931f macro
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h45 #define PI 3.1415926535897932384626433832795 macro
/external/chromium_org/third_party/icu/source/i18n/
H A Dastro.h268 static const double PI; member in class:CalendarAstronomer
/external/chromium_org/third_party/opus/src/celt/
H A Dmathops.h83 #define PI 3.141592653f macro
87 #define celt_cos_norm(x) ((float)cos((.5f*PI)*(x)))
/external/chromium_org/third_party/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/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp421 Pass2Ty::iterator PI = Pass2.find(*I); local
422 if (PI == Pass2.end())
425 NewN->addPredecessor(const_cast<ExplodedNode *>(PI->second), *G);
434 Pass2Ty::iterator PI = Pass2.find(*I); local
435 if (PI != Pass2.end()) {
436 const_cast<ExplodedNode *>(PI->second)->addPredecessor(NewN, *G);
/external/icu/icu4c/source/i18n/
H A Dastro.h268 static const double PI; member in class:CalendarAstronomer
/external/libopus/celt/
H A Dmathops.h83 #define PI 3.141592653f macro
87 #define celt_cos_norm(x) ((float)cos((.5f*PI)*(x)))
/external/llvm/include/llvm/Analysis/
H A DPtrUseVisitor.h111 PtrInfo PI; member in class:llvm::detail::PtrUseVisitorBase
211 PI.reset();
226 if (PI.isAborted())
229 return PI;
235 PI.setEscaped(&SI);
243 PI.setEscaped(&I);
278 PI.setEscaped(CS.getInstruction());
H A DLoopInfoImpl.h137 for (typename InvBlockTraits::ChildIteratorType PI =
139 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI) {
140 typename InvBlockTraits::NodeType *N = *PI;
159 typename InvBlockTraits::ChildIteratorType PI = local
164 for (; PI != PE; ++PI) {
165 typename InvBlockTraits::NodeType *N = *PI;
256 for (typename InvBlockTraits::ChildIteratorType PI =
258 PI !
[all...]
/external/llvm/lib/CodeGen/
H A DJumpInstrTables.cpp207 FunctionType::param_iterator PI, PE; local
221 for (PI = FunTy->param_begin(), PE = FunTy->param_end(); PI != PE;
222 PI++, i++) {
230 for (PI = FunTy->param_begin(), PE = FunTy->param_end(); PI != PE;
231 ++PI, ++i) {
232 assert((isa<IntegerType>(*PI) || isa<FunctionType>(*PI) ||
233 isa<CompositeType>(*PI))
[all...]
/external/llvm/lib/IR/
H A DBasicBlock.cpp188 pred_iterator PI = pred_begin(this), E = pred_end(this); local
189 if (PI == E) return nullptr; // No preds.
190 BasicBlock *ThePred = *PI;
191 ++PI;
192 return (PI == E) ? ThePred : nullptr /*multiple preds*/;
201 pred_iterator PI = pred_begin(this), E = pred_end(this); local
202 if (PI == E) return nullptr; // No preds.
203 BasicBlock *PredBB = *PI;
204 ++PI;
205 for (;PI !
[all...]
H A DPass.cpp63 const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(AID); local
64 if (PI)
65 return PI->getPassName();
196 const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(ID); local
197 if (!PI)
199 return PI->createPass();
270 const PassInfo *PI = Pass::lookupPassInfo(Arg); local
272 if (PI) Preserved.push_back(PI->getTypeInfo());
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp494 for (SmallVectorImpl<BasicBlock *>::iterator PI = ExitPreds.begin(),
496 PI != PE; ++PI) {
498 Loop *PredLoop = LI->getLoopFor(*PI);
501 SplitLatchEdge |= L->getLoopLatch() == *PI;
502 BasicBlock *ExitSplit = SplitCriticalEdge(*PI, Exit, this);
536 pred_iterator PI = pred_begin(BB); local
537 BasicBlock *NearestDom = *PI;
538 for (pred_iterator PE = pred_end(BB); PI != PE; ++PI)
[all...]
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp402 std::vector<std::string> PI; local
403 PI.push_back("extract-blocks");
404 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
/external/chromium_org/third_party/opus/src/tests/
H A Dtest_opus_encode.c55 #define PI (3.141592653589793238462643f) macro
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
H A Dtb_external_transport.cc570 #define PI 3.14159265 macro
578 sqrt(-2 * log(uniform1)) * cos(2 * PI * uniform2));
/external/clang/lib/Analysis/
H A DReachableCode.cpp609 CFGBlock::const_pred_iterator PI = B->pred_begin(); local
610 if (PI != B->pred_end()) {
611 if (const CFGBlock *PredBlock = PI->getPossiblyUnreachableBlock()) {
/external/deqp/framework/common/
H A DtcuVectorUtil.hpp37 static const float PI = 3.141592653589793238f; member in namespace:tcu
/external/libopus/tests/
H A Dtest_opus_encode.c55 #define PI (3.141592653589793238462643f) macro
/external/libvpx/libvpx/test/
H A Ddct16x16_test.cc43 const double PI = 3.1415926535898; member in namespace:__anon24778
51 x = cos(PI * j * (l + 0.5) / 16.0) *
52 cos(PI * i * (k + 0.5) / 16.0) *
/external/llvm/lib/Analysis/
H A DLoopInfo.cpp145 pred_iterator PI = pred_begin(H); local
146 assert(PI != pred_end(H) &&
148 Backedge = *PI++;
149 if (PI == pred_end(H)) return nullptr; // dead loop
150 Incoming = *PI++;
151 if (PI != pred_end(H)) return nullptr; // multiple backedges?
339 for (pred_iterator PI = pred_begin(ExitBlocks[i]),
340 PE = pred_end(ExitBlocks[i]); PI != PE; ++PI)
341 if (!contains(*PI))
368 pred_iterator PI = pred_begin(*I); local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp737 pred_iterator PI = pred_begin(DestBB); local
738 BasicBlock *P = *PI;
744 if (++PI == pred_end(DestBB))
747 P = *PI;
753 if (++PI != pred_end(DestBB))
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp397 pred_iterator PI = pred_begin(Default), E = pred_end(Default); local
399 if (PI == E) {
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp555 PI = Path.begin(), PE = Path.end(); local
556 while (PI != PE && *PI == DC_match) {
558 ++PI, ++LI, ++RI;
561 for (; PI != PE; ++PI) {
562 switch (static_cast<DiffChange>(*PI)) {

Completed in 4978 milliseconds

12345