Home
last modified time | relevance | path

Searched refs:LF (Results 1 – 25 of 117) 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/MC/
H A DMCAssembler.cpp769 const MCLEBFragment &LF = cast<MCLEBFragment>(F); in writeFragment() local
770 OS << LF.getContents(); in writeFragment()
1020 auto &LF = cast<MCLEBFragment>(Frag); in layout() local
1021 Fixups = LF.getFixups(); in layout()
1022 Contents = LF.getContents(); in layout()
1110 bool MCAssembler::relaxLEB(MCLEBFragment &LF) { in relaxLEB() argument
1111 const unsigned OldSize = static_cast<unsigned>(LF.getContents().size()); in relaxLEB()
1114 SmallVectorImpl<char> &Data = LF.getContents(); in relaxLEB()
1115 LF.getFixups().clear(); in relaxLEB()
1120 ? LF.getValue().evaluateKnownAbsolute(Value, *this) in relaxLEB()
[all …]
H A DMCFragment.cpp226 const auto *LF = cast<MCLEBFragment>(this); in dump() local
228 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned(); in dump()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp133 LibFunc LF; in runPartiallyInlineLibCalls() local
135 !TLI->getLibFunc(*CalledFunc, LF) || !TLI->has(LF)) in runPartiallyInlineLibCalls()
138 switch (LF) { in runPartiallyInlineLibCalls()
H A DLoopStrengthReduce.cpp2278 const LSRFixup &LF,
2281 Value *Expand(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
2284 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
2287 void Rewrite(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
3621 LSRFixup &LF = LU.getNewFixup(); in CollectFixupsAndInitialFormulae() local
3622 LF.UserInst = UserInst; in CollectFixupsAndInitialFormulae()
3623 LF.OperandValToReplace = U.getOperandValToReplace(); in CollectFixupsAndInitialFormulae()
3624 LF.PostIncLoops = TmpPostIncLoops; in CollectFixupsAndInitialFormulae()
3625 LF.Offset = Offset; in CollectFixupsAndInitialFormulae()
3626 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/Target/AMDGPU/
H A DSILowerI1Copies.cpp542 LoopFinder LF(*DT, *PDT); in lowerPhis() local
556 LF.initialize(MBB); in lowerPhis()
594 unsigned FoundLoopLevel = LF.findLoop(PostDomBound); in lowerPhis()
599 LF.addLoopEntries(FoundLoopLevel, SSAUpdater, *MRI, LaneMaskRegAttrs, in lowerPhis()
658 LoopFinder LF(*DT, *PDT); in lowerCopiesToI1() local
662 LF.initialize(MBB); in lowerCopiesToI1()
713 unsigned FoundLoopLevel = LF.findLoop(PostDomBound); in lowerCopiesToI1()
717 LF.addLoopEntries(FoundLoopLevel, SSAUpdater, *MRI, LaneMaskRegAttrs); in lowerCopiesToI1()
/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/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp130 LibFunc LF = (LibFunc)FI; in initialize()
131 bool Available = TLI.has(LF); in initialize()
133 TLII.setAvailable(LF); in initialize()
134 emplace_back(TLI.getName(LF), Available); in initialize()
137 LibFunc LF = (LibFunc)FI; initialize() local
/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.cpp635 LibFunc LF; in AddFlushBeforeForkAndExec() local
636 if (TLI->getLibFunc(*Callee, LF)) { in AddFlushBeforeForkAndExec()
637 if (LF == LibFunc_fork) { in AddFlushBeforeForkAndExec()
641 } else if (LF == LibFunc_execl || LF == LibFunc_execle || in AddFlushBeforeForkAndExec()
642 LF == LibFunc_execlp || LF == LibFunc_execv || in AddFlushBeforeForkAndExec()
643 LF == LibFunc_execvp || LF == LibFunc_execve || in AddFlushBeforeForkAndExec()
644 LF in AddFlushBeforeForkAndExec()
[all...]
/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/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/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DModuleInliner.cpp94 LibFunc LF; in isKnownLibFunction() local
99 return TLI.getLibFunc(F, LF) || in isKnownLibFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp302 MCLEBFragment &LF, in relaxLEB128() argument
304 const MCExpr &Expr = LF.getValue(); in relaxLEB128()
305 if (LF.isSigned() || !Expr.evaluateKnownAbsolute(Value, Asm)) in relaxLEB128()
307 LF.getFixups().push_back( in relaxLEB128()
H A DLoongArchAsmBackend.h74 std::pair<bool, bool> relaxLEB128(const MCAssembler &Asm, 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/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/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp333 MCLEBFragment &LF, in relaxLEB128() argument
335 if (LF.isSigned()) in relaxLEB128()
337 const MCExpr &Expr = LF.getValue(); in relaxLEB128()
339 LF.getFixups().push_back( in relaxLEB128()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h302 LibFunc LF; variable
310 if (getLibFunc(AttrStr, LF))
311 setUnavailable(LF);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp1198 LibFunc LF; in foldLibCalls()
1199 if (!TLI.getLibFunc(*CalledFunc, LF) || in foldLibCalls() local
1200 !isLibFuncEmittable(CI->getModule(), &TLI, LF)) in foldLibCalls()
1205 switch (LF) { in foldLibCalls()
1209 return foldSqrt(CI, LF, TTI, TLI, AC, DT); in foldLibCalls()
1212 if (StrNCmpInliner(CI, LF, &DTU, DL).optimizeStrNCmp()) { in foldLibCalls()

12345