Home
last modified time | relevance | path

Searched refs:LF (Results 1 – 25 of 122) sorted by relevance

12345

/freebsd/contrib/ntp/sntp/scripts/
H A DgenLocInfo6 LF=
26 LF=$locfile
34 LF=$lf
40 case "$LF" in
60 LF=$lf
68 case "$LF" in
74 LF=$lf
79 case "$LF" in
87 LF=$lf
95 LF=$lf
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMemoryOpRemark.cpp54 LibFunc LF; in canHandle() local
55 bool KnownLibCall = TLI.getLibFunc(*CF, LF) && TLI.has(LF); in canHandle()
59 switch (LF) { in canHandle()
251 LibFunc LF; in visitCall() local
252 bool KnownLibCall = TLI.getLibFunc(*F, LF) && TLI.has(LF); in visitCall()
255 visitKnownLibCall(CI, LF, *R); in visitCall()
268 void MemoryOpRemark::visitKnownLibCall(const CallInst &CI, LibFunc LF, in visitKnownLibCall() argument
270 switch (LF) { in visitKnownLibCall()
/freebsd/bin/pax/
H A Doptions.h61 #define LF 0x00000080 macro
106 #define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CPF|CXF)
107 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp136 LibFunc LF; in runPartiallyInlineLibCalls() local
138 !TLI->getLibFunc(*CalledFunc, LF) || !TLI->has(LF)) in runPartiallyInlineLibCalls()
141 switch (LF) { in runPartiallyInlineLibCalls()
H A DLoopStrengthReduce.cpp2267 const LSRFixup &LF,
2270 Value *Expand(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
2273 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
2276 void Rewrite(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
3606 LSRFixup &LF = LU.getNewFixup(); in CollectFixupsAndInitialFormulae() local
3607 LF.UserInst = UserInst; in CollectFixupsAndInitialFormulae()
3608 LF.OperandValToReplace = U.getOperandValToReplace(); in CollectFixupsAndInitialFormulae()
3609 LF.PostIncLoops = TmpPostIncLoops; in CollectFixupsAndInitialFormulae()
3610 LF.Offset = Offset; in CollectFixupsAndInitialFormulae()
3611 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L); in CollectFixupsAndInitialFormulae()
[all …]
/freebsd/contrib/ntp/scripts/stats/
H A DREADME.timecodes17 <LF> ASCII line feed (hex 0a)
31 Special characters other than <LF>, <CR> and <SP> are preceded by ^.
35 "<CR><LF>i ddd hh:mm:ss TZ=zz<CR><LF>"
53 "<CR><LF>iqyy ddd hh:mm:ss.fff ld"
78 "<CR><LF><^A>ddd:hh:mm:ssq<CR>"
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp895 bool MCAssembler::relaxLEB(MCLEBFragment &LF) { in relaxLEB() argument
896 const unsigned OldSize = static_cast<unsigned>(LF.getContents().size()); in relaxLEB()
899 LF.clearFixups(); in relaxLEB()
904 ? LF.getValue().evaluateKnownAbsolute(Value, *this) in relaxLEB()
905 : LF.getValue().evaluateAsAbsolute(Value, *this); in relaxLEB()
908 std::tie(Relaxed, UseZeroPad) = getBackend().relaxLEB128(LF, Value); in relaxLEB()
910 reportError(LF.getValue().getLoc(), in relaxLEB()
911 Twine(LF.isSigned() ? ".s" : ".u") + in relaxLEB()
913 LF.setValue(MCConstantExpr::create(0, Context)); in relaxLEB()
926 if (LF.isSigned()) in relaxLEB()
[all …]
H A DMCFragment.cpp146 const auto *LF = cast<MCLEBFragment>(this); in dump() local
148 LF->getValue().print(OS, nullptr); in dump()
149 OS << " Signed:" << LF->isSigned(); in dump()
/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp132 LibFunc LF = (LibFunc)FI; in initialize() local
133 bool Available = TLI.has(LF); in initialize()
135 TLII.setAvailable(LF); in initialize()
136 emplace_back(TLI.getName(LF), Available); in initialize()
/freebsd/sys/cam/scsi/
H A Dscsi_ses.h41 #define GEN_GETTER(LS, US, LF, UF) \ argument
43 LS ## _get_ ## LF(struct LS *elem) { \
48 #define GEN_SETTER(LS, US, LF, UF) \ argument
50 LS ## _set_ ## LF(struct LS *elem, int val) { \
56 #define GEN_HDR_GETTER(LS, US, LF, UF) \ argument
58 LS ## _get_ ## LF(struct LS *page) { \
63 #define GEN_HDR_SETTER(LS, US, LF, UF) \ argument
65 LS ## _set_ ## LF(struct LS *page, int val) { \
71 #define GEN_ACCESSORS(LS, US, LF, UF) \ argument
72 GEN_GETTER(LS, US, LF, UF) \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerI1Copies.cpp473 LoopFinder LF(*DT, *PDT); in lowerPhis() local
487 LF.initialize(MBB); in lowerPhis()
525 unsigned FoundLoopLevel = LF.findLoop(PostDomBound); in lowerPhis()
530 LF.addLoopEntries(FoundLoopLevel, SSAUpdater, *MRI, LaneMaskRegAttrs, in lowerPhis()
589 LoopFinder LF(*DT, *PDT); in lowerCopiesToI1() local
593 LF.initialize(MBB); in lowerCopiesToI1()
644 unsigned FoundLoopLevel = LF.findLoop(PostDomBound); in lowerCopiesToI1()
648 LF.addLoopEntries(FoundLoopLevel, SSAUpdater, *MRI, LaneMaskRegAttrs); in lowerCopiesToI1()
/freebsd/usr.sbin/lpr/lpd/
H A Dprintcap38 # local filters (e.g. LF -> CR-LF conversion for HP printers), create
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp613 LibFunc LF; in AddFlushBeforeForkAndExec() local
614 if (TLI->getLibFunc(*Callee, LF)) { in AddFlushBeforeForkAndExec()
615 if (LF == LibFunc_fork) { in AddFlushBeforeForkAndExec()
619 } else if (LF == LibFunc_execl || LF == LibFunc_execle || in AddFlushBeforeForkAndExec()
620 LF == LibFunc_execlp || LF == LibFunc_execv || in AddFlushBeforeForkAndExec()
621 LF == LibFunc_execvp || LF == LibFunc_execve || in AddFlushBeforeForkAndExec()
622 LF == LibFunc_execvpe || LF == LibFunc_execvP) { in AddFlushBeforeForkAndExec()
/freebsd/contrib/byacc/test/yacc/
H A Dok_syntax1.tab.h12 #define LF 269 macro
/freebsd/contrib/byacc/test/btyacc/
H A Dok_syntax1.tab.h15 #define LF 269 macro
/freebsd/tools/lua/
H A Dtemplate.lua83 local LF = byte("\n")
435 if byte(view, n, n) == LF then
519 if byte(view, y, y) == LF then
535 if byte(view, x, x) == LF then
570 if byte(view, e, e) == LF then
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp282 std::pair<bool, bool> LoongArchAsmBackend::relaxLEB128(MCLEBFragment &LF, in relaxLEB128() argument
284 const MCExpr &Expr = LF.getValue(); in relaxLEB128()
285 if (LF.isSigned() || !Expr.evaluateKnownAbsolute(Value, *Asm)) in relaxLEB128()
287 LF.addFixup(MCFixup::create(0, &Expr, FK_Data_leb128)); in relaxLEB128()
H A DLoongArchAsmBackend.h66 std::pair<bool, bool> relaxLEB128(MCLEBFragment &LF,
/freebsd/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in159 open my $LF, '<', $NTPCONF || log_fatal(LOG_ERR, "Can't open <$NTPCONF>: $!");
161 while (<$LF>) {
165 close $LF;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DModuleInliner.cpp102 LibFunc LF; in isKnownLibFunction() local
107 return TLI.getLibFunc(F, LF) || in isKnownLibFunction()
/freebsd/crypto/openssl/doc/man3/
H A DSMIME_read_ASN1.pod25 to be followed by B<CR> and B<LF> characters, else only by an B<LF> character.
H A DSMIME_read_CMS.pod33 to be followed by B<CR> and B<LF> characters, else only by an B<LF> character.
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCallGraph.cpp124 if (Function *LF = LHS->getFunction()) in print() local
126 return LF->getName() < RF->getName(); in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h308 LibFunc LF; variable
316 if (getLibFunc(AttrStr, LF))
317 setUnavailable(LF);
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.h79 std::pair<bool, bool> relaxLEB128(MCLEBFragment &LF,

12345