Searched defs:PE (Results 1 - 25 of 33) 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/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp125 pred_iterator PB = pred_begin(RetBlock), PE = pred_end(RetBlock); local
127 std::distance(PB, PE), "merge",
130 for (pred_iterator PI = PB; PI != PE; ++PI)
H A DTailRecursionElimination.cpp743 pred_iterator PB = pred_begin(OldEntry), PE = pred_end(OldEntry); local
746 std::distance(PB, PE) + 1,
755 for (pred_iterator PI = PB; PI != PE; ++PI) {
H A DJumpThreading.cpp764 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
765 if (CondBr && CondConst && CondBr->isConditional() && PI != PE &&
777 while (++PI != PE) {
785 if (PI == PE) {
907 for (pred_iterator PI = pred_begin(LoadBB), PE = pred_end(LoadBB);
908 PI != PE; ++PI) {
960 for (pred_iterator PI = pred_begin(LoadBB), PE = pred_end(LoadBB);
961 PI != PE; ++PI) {
997 pred_iterator PB = pred_begin(LoadBB), PE = pred_end(LoadBB); local
998 PHINode *PN = PHINode::Create(LI->getType(), std::distance(PB, PE), "",
[all...]
H A DGVN.cpp779 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
782 if (PI == PE)
785 for (; PI != PE; ++PI)
2487 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
2722 for (pred_iterator PI = pred_begin(S), PE = pred_end(S); PI != PE; PI++)
2752 PE = Preds.end(); PI != PE; PI++) {
/external/clang/include/clang/AST/
H A DAttr.h100 void setPackExpansion(bool PE) { IsPackExpansion = PE; } argument
/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;
230 for (PI = FunTy->param_begin(), PE = FunTy->param_end(); PI != PE;
/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h139 PE = InvBlockTraits::child_end(Header); PI != PE; ++PI) {
161 typename InvBlockTraits::ChildIteratorType PE = local
164 for (; PI != PE; ++PI) {
257 InvBlockTraits::child_begin(BB), PE = InvBlockTraits::child_end(BB);
258 PI != PE; ++PI) {
395 PE = InvBlockTraits::child_end(PredBB); PI != PE; ++PI) {
513 PE = InvBlockTraits::child_end(Header); PI != PE;
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp555 PI = Path.begin(), PE = Path.end(); local
556 while (PI != PE && *PI == DC_match) {
561 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.cpp489 void VisitPseudoObjectExpr(PseudoObjectExpr *PE) { argument
490 for (PseudoObjectExpr::semantics_iterator it = PE->semantics_begin(),
491 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) {
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp753 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
754 if (PI == PE) // No predecessor
757 if (PI == PE) // Only one predecessor
760 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.cpp578 llvm::Constant *VisitParenExpr(ParenExpr *PE) { argument
579 return Visit(PE->getSubExpr());
583 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE) { argument
584 return Visit(PE->getReplacement());
H A DCGExprScalar.cpp172 Value *VisitParenExpr(ParenExpr *PE) { argument
173 return Visit(PE->getSubExpr());
2932 for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock);
2933 PI != PE; ++PI)
3011 for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock);
3012 PI != PE; ++PI)
/external/llvm/lib/IR/
H A DAsmWriter.cpp1744 const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
1746 if (PI == PE) {
1751 for (++PI; PI != PE; ++PI) {
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp567 FunctionType::param_iterator PE = FT->param_end(); local
568 for (; PI != PE; ++PI) {
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp1121 PE = InvMBBTraits::child_end(LoopHeader); local
1122 for (; PI != PE; PI++) {
1453 PE = LandBlk->pred_end(); PI != PE; ++PI) {
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java888 PE(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1199 const PseudoObjectExpr *PE = cast<PseudoObjectExpr>(S); local
1200 if (const Expr *Result = PE->getResultExpr()) {
1863 const ImplicitCastExpr *PE = local
1865 if (!PE || PE->getCastKind() != CK_ArrayToPointerDecay) {
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1959 PE(MyStates.pred_end()); PI != PE; ++PI) {
2133 PE(MyStates.pred_end());
2134 if (PI != PE) {
2140 for (; PI != PE; ++PI) {
2240 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end(); local
2241 while (PredStack.back().second != PE) {
2304 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2318 PE
[all...]

Completed in 938 milliseconds

12