Searched refs:PL (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11.0-release/tools/tools/nanobsd/
H A Dfill_pkg.sh77 PL=$NANO_PACKAGE_DIR/_list
78 true > $PL
81 ports_recurse `pwd`/$PL $i
84 for i in `cat $PL`
95 rm -f $PL
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h35 PL, // Plus, positive or zero >, ==, or unordered enumerator in enum:llvm::ARMCC::CondCodes
54 case MI: return PL;
55 case PL: return MI;
75 case ARMCC::PL: return "pl";
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DOpenMPClause.cpp154 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { argument
155 assert(PL.size() == varlist_size() &&
157 std::copy(PL.begin(), PL.end(), varlist_end());
182 ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep) {
189 Clause->setPrivates(PL);
178 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPLexerChange.cpp81 if (PTHLexer *PL = PTH->CreateLexer(FID)) {
82 EnterSourceFileWithPTH(PL, CurDir);
137 void Preprocessor::EnterSourceFileWithPTH(PTHLexer *PL, argument
144 CurPTHLexer.reset(PL);
/freebsd-11.0-release/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h185 ISO_RRIP_PLINK PL; member in union:__anon13975
H A Diso9660_rrip.c192 t->attr.rr_entry.PL.dir_loc);
400 /* Handle PL */
403 SUSP_ENTRY_RRIP_PL, "PL", SUSP_LOC_DOTDOT);
483 p->attr.rr_entry.PL.h.length[0] = 12;
484 p->attr.rr_entry.PL.h.version[0] = 1;
/freebsd-11.0-release/libexec/getty/
H A Dmain.c327 if (IM && *IM && !(PL && PP))
354 } else if (!(PL && PP))
356 if (rval == 2 || (PL && PP)) {
H A Dgettytab.h173 #define PL gettyflags[25].value macro
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DModule.cpp473 void Module::setPICLevel(PICLevel::Level PL) { argument
474 addModuleFlag(ModFlagBehavior::Error, "PIC Level", PL);
H A DVerifier.cpp2501 PointerType *PL = dyn_cast<PointerType>(L);
2503 if (!PL || !PR)
2505 return PL->getAddressSpace() == PR->getAddressSpace();
/freebsd-11.0-release/contrib/subversion/
H A DMakefile.in835 $(SWIG_PL_DIR)/native/Makefile.PL: $(SWIG_SRC_DIR)/perl/native/Makefile.PL.in
836 ./config.status subversion/bindings/swig/perl/native/Makefile.PL
838 $(SWIG_PL_DIR)/native/Makefile: $(SWIG_PL_DIR)/native/Makefile.PL
839 cd $(SWIG_PL_DIR)/native; $(PERL) Makefile.PL PREFIX=$(prefix)
864 # Running Makefile.PL at this point *fails* (cannot find ..../.libs) so if the
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp1429 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL; local
1434 PL.clear();
1435 types::getCompilationPhases(InputType, PL);
1439 phases::ID InitialPhase = PL[0];
1471 llvm::find(PL, phases::Compile) != PL.end())
1477 for (SmallVectorImpl<phases::ID>::iterator i = PL.begin(), e = PL.end();
1524 if (FinalPhase == phases::Link && PL.size() == 1) {
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h199 PL = 0x5, // Plus, positive or zero >, ==, or unordered enumerator in enum:llvm::AArch64CC::CondCode
222 case PL: return "pl";
256 case PL: return 0; // N == 0
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DModule.h628 void setPICLevel(PICLevel::Level PL);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp341 if (Loop *PL = LI->getLoopFor(Pred))
342 if (!PL->contains(OldBB))
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp671 static Loop *CloneLoop(Loop *L, Loop *PL, ValueToValueMapTy &VM, argument
673 Loop &New = LPM->addLoop(PL);
/freebsd-11.0-release/sys/boot/i386/btx/btx/
H A Dbtx.S61 .set TSS_ESP0,0x4 # PL 0 ESP
62 .set TSS_SS0,0x8 # PL 0 SS
/freebsd-11.0-release/sys/boot/pc98/btx/btx/
H A Dbtx.S59 .set TSS_ESP0,0x4 # PL 0 ESP
60 .set TSS_SS0,0x8 # PL 0 SS
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp666 for (const auto &PL : D->protocol_locs())
667 Writer.AddSourceLocation(PL, Record);
721 for (const auto &PL : D->protocol_locs())
722 Writer.AddSourceLocation(PL, Record);
743 for (const auto &PL : D->protocol_locs())
744 Writer.AddSourceLocation(PL, Record);
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp5182 SectionRef PL = get_section(O, "__OBJC2", "__protocol_list"); local
5183 if (PL == SectionRef())
5184 PL = get_section(O, "__DATA", "__objc_protolist");
5185 info.S = PL;
5186 walk_pointer_list_64("protocol", PL, O, &info, nullptr);
5270 const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list"); local
5271 if (PL != SectionRef()) {
5272 info.S = PL;
5273 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5275 const SectionRef PL local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp496 PICLevel::Level PL = M->getPICLevel(); local
600 if (PL == PICLevel::Small) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp456 llvm::PICLevel::Level PL = llvm::PICLevel::Default; local
459 case 1: PL = llvm::PICLevel::Small; break;
460 case 2: PL = llvm::PICLevel::Large; break;
464 getModule().setPICLevel(PL);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp685 ObjCInterfaceDecl::protocol_loc_iterator PL = IDecl->protocol_loc_end() - 1; local
686 EndLoc = *PL;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h1923 /// \param PL List of expressions.
1924 void setPrivates(ArrayRef<Expr *> PL);
1942 /// \param PL List of private copies of original variables.
1950 ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessor.h1790 void EnterSourceFileWithPTH(PTHLexer *PL, const DirectoryLookup *Dir);

Completed in 346 milliseconds

12