Searched defs:PE (Results 1 - 25 of 34) sorted by relevance

12

/external/arduino/hardware/arduino/cores/arduino/
H A Dpins_arduino.c72 #define PE 5 macro
133 PE , // PE 0 ** 0 ** USART0_RX
134 PE , // PE 1 ** 1 ** USART0_TX
135 PE , // PE 4 ** 2 ** PWM2
136 PE , // PE 5 ** 3 ** PWM3
138 PE , // P
[all...]
/external/clang/test/SemaCXX/
H A Dfor-range-dereference.cpp68 PrivateEnd PE; local
71 for (auto i : PE) { } // expected-error{{'end' is a private member of 'PrivateEnd'}}
/external/clang/include/clang/AST/
H A DAttr.h94 void setPackExpansion(bool PE) { IsPackExpansion = PE; } argument
/external/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp279 pred_iterator PB = pred_begin(RetBlock), PE = pred_end(RetBlock); local
281 std::distance(PB, PE), "merge",
284 for (pred_iterator PI = PB; PI != PE; ++PI)
H A DTailRecursionElimination.cpp568 pred_iterator PB = pred_begin(OldEntry), PE = pred_end(OldEntry); local
571 std::distance(PB, PE) + 1,
580 for (pred_iterator PI = PB; PI != PE; ++PI) {
H A DJumpThreading.cpp750 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
751 if (CondBr && CondConst && CondBr->isConditional() && PI != PE &&
763 while (++PI != PE) {
771 if (PI == PE) {
888 for (pred_iterator PI = pred_begin(LoadBB), PE = pred_end(LoadBB);
889 PI != PE; ++PI) {
941 for (pred_iterator PI = pred_begin(LoadBB), PE = pred_end(LoadBB);
942 PI != PE; ++PI) {
978 pred_iterator PB = pred_begin(LoadBB), PE = pred_end(LoadBB); local
979 PHINode *PN = PHINode::Create(LI->getType(), std::distance(PB, PE), "",
[all...]
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyImpl.h135 PE = GraphTraits< Inverse<BlockT *> >::child_end(BB); local
137 if (PI == PE)
143 if (PI != PE)
172 PE = GraphTraits< Inverse<BlockT *> >::child_end(BB);
173 PI != PE; ++PI) {
220 PE = GraphTraits< Inverse<BlockT *> >::child_end(Head);
221 PI != PE; ++PI) {
297 PE = GraphTraits< Inverse<BlockT *> >::child_end(BB);
298 PI != PE; ++PI) {
H A DLoopInfoImpl.h152 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI) {
174 typename InvBlockTraits::ChildIteratorType PE = local
177 for (; PI != PE; ++PI) {
275 InvBlockTraits::child_begin(BB), PE = InvBlockTraits::child_end(BB);
276 PI != PE; ++PI) {
414 PE = InvBlockTraits::child_end(PredBB); PI != PE; ++PI) {
533 PE = InvBlockTraits::child_end(Header); PI != PE;
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp557 PI = Path.begin(), PE = Path.end(); local
558 while (PI != PE && *PI == DC_match) {
563 for (; PI != PE; ++PI) {
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h152 static bool classof(const PreprocessedEntity *PE) { argument
153 return PE->getKind() == MacroDefinitionKind;
189 static bool classof(const PreprocessedEntity *PE) { argument
190 return PE->getKind() == MacroExpansionKind;
257 static bool classof(const PreprocessedEntity *PE) { argument
258 return PE->getKind() == InclusionDirectiveKind;
/external/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp484 void VisitPseudoObjectExpr(PseudoObjectExpr *PE) { argument
485 for (PseudoObjectExpr::semantics_iterator it = PE->semantics_begin(),
486 et = PE->semantics_end(); it != et; ++it) {
/external/llvm/lib/Analysis/
H A DLint.cpp224 Function::arg_iterator PI = F->arg_begin(), PE = F->arg_end(); local
228 if (PI != PE) {
H A DProfileInfo.cpp71 const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
74 if (PI == PE) {
82 for (; PI != PE; ++PI) {
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp690 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
691 if (PI == PE) // No predecessor
694 if (PI == PE) // Only one predecessor
697 if (PI != PE) // More than two predecessors
/external/chromium_org/tools/symsrc/
H A Dpefile.py5 All the PE file basic structures are available with their default names
11 pefile has been tested against the limits of valid PE headers, that is, malware.
591 """Generic PE format error exception."""
601 """Convenience class for dumping the PE information."""
718 # Some PE header structures have unions on them, so a certain
819 addresses where the PE file would be loaded by default.
1047 DLLs this PE files has been bound to (if bound at all).
1051 system and must, therefore, re-bind the PE's imports.
1072 class PE: class in inherits:
1075 This class provides access to most of the information in a PE fil
[all...]
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp104 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); } argument
H A DCGExprComplex.cpp102 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());} argument
108 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE) { argument
109 return Visit(PE->getReplacement());
H A DCGExprConstant.cpp599 llvm::Constant *VisitParenExpr(ParenExpr *PE) { argument
600 return Visit(PE->getSubExpr());
604 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE) { argument
605 return Visit(PE->getReplacement());
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1167 PredefinedExpr *PE = local
1169 return getSema().Owned(PE);
/external/llvm/lib/IR/
H A DAsmWriter.cpp1706 const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
1708 if (PI == PE) {
1713 for (++PI; PI != PE; ++PI) {
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp557 FunctionType::param_iterator PE = FT->param_end(); local
558 for (; PI != PE; ++PI) {
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp1121 PE = InvMBBTraits::child_end(LoopHeader); local
1122 for (; PI != PE; PI++) {
1404 PE = LandBlk->pred_end(); PI != PE; ++PI) {
/external/llvm/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp935 PE = pred_end(node->getBlock()); local
937 std::distance(PB, PE), "pathNumber",
943 for(pred_iterator predIt = PB; predIt != PE; predIt++) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1126 const PseudoObjectExpr *PE = cast<PseudoObjectExpr>(S); local
1127 if (const Expr *Result = PE->getResultExpr()) {
1759 const ImplicitCastExpr *PE = local
1761 if (!PE || PE->getCastKind() != CK_ArrayToPointerDecay) {
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp2078 PE(MyStates.pred_end()); PI != PE; ++PI) {
2252 PE(MyStates.pred_end());
2253 if (PI != PE) {
2259 for (; PI != PE; ++PI) {
2359 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end(); local
2360 while (PredStack.back().second != PE) {
2423 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2437 PE
[all...]

Completed in 439 milliseconds

12