Home
last modified time | relevance | path

Searched refs:LO (Results 1 – 25 of 232) sorted by relevance

12345678910

/openbsd-src/regress/sys/net/pflog/
H A Dpf.conf6 pass log (to $PFLOG_N3) on $LO no state
9 match log (to $PFLOG_N2) on $LO no state
12 pass log (to $PFLOG_N1) on $LO inet
13 pass log (to $PFLOG_N1) on $LO to 169.254.0.1 no state
14 pass log (to $PFLOG_N1) on $LO to 169.254.0.2 keep state
15 pass log (all to $PFLOG_N1) on $LO to 169.254.0.3 keep state
16 pass log (user to $PFLOG_N1) on $LO to 169.254.0.4
17 pass on $LO to 169.254.0.5
18 pass log (matches to $PFLOG_N1) on $LO to 169.254.0.6
19 pass on $LO to 169.254.0.6
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.h157 #define PPC_REGS_LO_HI(LO, HI) \ argument
159 LO##0, LO##1, LO##2, LO##3, LO##4, LO##5, LO##6, LO##7, LO##8, LO##9, \
160 LO##10, LO##11, LO##12, LO##13, LO##14, LO##15, LO##16, LO##17, \
161 LO##18, LO##19, LO##20, LO##21, LO##22, LO##23, LO##24, LO##25, \
162 LO##26, LO##27, LO##28, LO##29, LO##30, LO##31, HI##0, HI##1, HI##2, \
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DOpenCLOptions.h59 static inline bool isOpenCLVersionContainedInMask(const LangOptions &LO, in isOpenCLVersionContainedInMask() argument
61 auto CLVer = LO.getOpenCLCompatibleVersion(); in isOpenCLVersionContainedInMask()
116 bool isAvailableIn(const LangOptions &LO) const { in isAvailableIn()
118 return LO.getOpenCLCompatibleVersion() >= Avail; in isAvailableIn()
122 bool isCoreIn(const LangOptions &LO) const { in isCoreIn()
123 return isAvailableIn(LO) && isOpenCLVersionContainedInMask(LO, Core); in isCoreIn()
127 bool isOptionalCoreIn(const LangOptions &LO) const { in isOptionalCoreIn()
128 return isAvailableIn(LO) && isOpenCLVersionContainedInMask(LO, Opt); in isOptionalCoreIn()
137 bool isAvailableOption(llvm::StringRef Ext, const LangOptions &LO) const;
143 bool isSupported(llvm::StringRef Ext, const LangOptions &LO) const;
[all …]
H A DLangOptions.h694 explicit FPOptions(const LangOptions &LO) { in FPOptions() argument
699 auto LangOptContractMode = LO.getDefaultFPContractMode(); in FPOptions()
703 setRoundingMath(LO.RoundingMath); in FPOptions()
705 setSpecifiedExceptionMode(LO.getFPExceptionMode()); in FPOptions()
706 setAllowFPReassociate(LO.AllowFPReassoc); in FPOptions()
707 setNoHonorNaNs(LO.NoHonorNaNs); in FPOptions()
708 setNoHonorInfs(LO.NoHonorInfs); in FPOptions()
709 setNoSignedZero(LO.NoSignedZero); in FPOptions()
710 setAllowReciprocal(LO.AllowRecip); in FPOptions()
711 setAllowApproxFunc(LO.ApproxFunc); in FPOptions()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DPrettyPrinter.h59 PrintingPolicy(const LangOptions &LO) in PrintingPolicy()
61 SuppressTagKeyword(LO.CPlusPlus), IncludeTagDefinition(false), in PrintingPolicy()
67 SuppressDefaultTemplateArgs(true), Bool(LO.Bool), in PrintingPolicy()
68 Nullptr(LO.CPlusPlus11 || LO.C2x), NullptrTypeInNamespace(LO.CPlusPlus), in PrintingPolicy()
69 Restrict(LO.C99), Alignof(LO.CPlusPlus11), in PrintingPolicy()
70 UnderscoreAlignof(LO.C11), UseVoidForZeroParams(!LO.CPlusPlus), in PrintingPolicy()
71 SplitTemplateClosers(!LO.CPlusPlus11), TerseOutput(false), in PrintingPolicy()
72 PolishForDeclaration(false), Half(LO.Half), in PrintingPolicy()
73 MSWChar(LO.MicrosoftExt && !LO.WChar), IncludeNewlines(true), in PrintingPolicy()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DOpenCLOptions.cpp33 const LangOptions &LO) const { in isAvailableOption()
38 if (OptInfo.isCoreIn(LO) || OptInfo.isOptionalCoreIn(LO)) in isAvailableOption()
39 return isSupported(Ext, LO); in isAvailableOption()
55 const LangOptions &LO) const { in isSupported()
58 I->getValue().isAvailableIn(LO); in isSupported()
62 const LangOptions &LO) const { in isSupportedCore()
65 I->getValue().isCoreIn(LO); in isSupportedCore()
69 const LangOptions &LO) const { in isSupportedOptionalCore()
72 I->getValue().isOptionalCoreIn(LO); in isSupportedOptionalCore()
76 const LangOptions &LO) const { in isSupportedCoreOrOptionalCore()
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp34 const LangOptions &LO; member in __anon6891e9330111::SarifDiagnostics
38 SarifDiagnostics(const std::string &Output, const LangOptions &LO, in SarifDiagnostics() argument
40 : OutputFile(Output), LO(LO), SarifWriter(SM) {} in SarifDiagnostics()
114 const LangOptions &LO) { in convertTokenRangeToCharRange() argument
125 Lexer::getLocForEndOfToken(R.getEnd(), /* Offset = */ 0, SM, LO); in convertTokenRangeToCharRange()
130 const LangOptions &LO) { in createThreadFlows() argument
135 Piece->getLocation().asRange(), Piece->getLocation().getManager(), LO); in createThreadFlows()
169 const LangOptions &LO) { in createResult() argument
174 Diag->getLocation().asRange(), Diag->getLocation().getManager(), LO); in createResult()
176 SmallVector<ThreadFlow, 8> Flows = createThreadFlows(Diag, LO); in createResult()
[all …]
H A DTextDiagnostics.cpp40 const LangOptions &LO; member in __anon67e900830111::TextDiagnostics
45 DiagnosticsEngine &DiagEng, const LangOptions &LO, in TextDiagnostics() argument
47 : DiagOpts(std::move(DiagOpts)), DiagEng(DiagEng), LO(LO), in TextDiagnostics()
130 Rewriter Rewrite(SM, LO); in FlushDiagnosticsImpl()
/openbsd-src/usr.sbin/lpr/lpc/
H A Dcmds.c122 if (cgetstr(bp, "lo", &LO) == -1) in abortpr()
123 LO = DEFLOCK; in abortpr()
124 (void)snprintf(line, sizeof(line), "%s/%s", SD, LO); in abortpr()
414 if (cgetstr(bp, "lo", &LO) == -1) in enablepr()
415 LO = DEFLOCK; in enablepr()
416 (void)snprintf(line, sizeof(line), "%s/%s", SD, LO); in enablepr()
483 if (cgetstr(bp, "lo", &LO) == -1) in disablepr()
484 LO = DEFLOCK; in disablepr()
485 (void)snprintf(line, sizeof(line), "%s/%s", SD, LO); in disablepr()
561 if (cgetstr(bp, "lo", &LO) == -1) in putmsg()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h34 LO, // Carry clear Less than enumerator
53 case HS: return LO; in getOppositeCondition()
54 case LO: return HS; in getOppositeCondition()
77 case ARMCC::LO: return ARMCC::HI; in getSwappedCondition()
78 case ARMCC::HI: return ARMCC::LO; in getSwappedCondition()
151 case ARMCC::LO: return "lo"; in ARMCondCodeToString()
173 .Case("lo", ARMCC::LO) in ARMCondCodeFromString()
174 .Case("cc", ARMCC::LO) in ARMCondCodeFromString()
/openbsd-src/lib/libc/time/
H A Ddifftime.c7 #define LO(t) ((double)(t & 0x00000000ffffffffLL)) macro
12 return (HI(t1) - HI(t0)) + (LO(t1) - LO(t0)); in difftime()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp228 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterVirtualCallModeling() local
229 return LO.CPlusPlus; in shouldRegisterVirtualCallModeling()
233 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterPureVirtualCallChecker() local
234 return LO.CPlusPlus; in shouldRegisterPureVirtualCallChecker()
238 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterVirtualCallChecker() local
239 return LO.CPlusPlus; in shouldRegisterVirtualCallChecker()
H A DNSAutoreleasePoolChecker.cpp84 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterNSAutoreleasePoolChecker() local
85 return LO.getGC() != LangOptions::NonGC; in shouldRegisterNSAutoreleasePoolChecker()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DTemplateName.cpp352 LangOptions LO; in operator <<() local
353 LO.CPlusPlus = true; in operator <<()
354 LO.Bool = true; in operator <<()
356 N.print(OS, PrintingPolicy(LO)); in operator <<()
363 LangOptions LO; // FIXME! in dump() local
364 LO.CPlusPlus = true; in dump()
365 LO.Bool = true; in dump()
366 print(OS, PrintingPolicy(LO)); in dump()
/openbsd-src/lib/libcrypto/aes/asm/
H A Daes-x86_64.pl68 sub LO() { my $r=shift; $r =~ s/%r([a-z]+)/%e\1/; subroutine
1094 rol \$8,`&LO("$tp10")` # ROTATE(tp1^tp8,8)
1095 rol \$8,`&LO("$tp18")` # ROTATE(tp1^tp8,8)
1099 rol \$8,`&LO("$acc0")` # ROTATE(tp1^tp8,8)
1100 rol \$8,`&LO("$acc8")` # ROTATE(tp1^tp8,8)
1101 xor `&LO("$tp80")`,`&LO("$tp10")`
1102 xor `&LO("$tp88")`,`&LO("$tp18")`
1105 xor `&LO("$tp80")`,`&LO("$acc0")`
1106 xor `&LO("$tp88")`,`&LO("$acc8")`
1112 rol \$24,`&LO("$tp20")` # ROTATE(tp2^tp1^tp8,24)
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Frontend/
H A DChainedDiagnosticConsumer.h39 void BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument
41 Primary->BeginSourceFile(LO, PP); in BeginSourceFile()
42 Secondary->BeginSourceFile(LO, PP); in BeginSourceFile()
H A DLogDiagnosticPrinter.h72 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) override { in BeginSourceFile() argument
73 LangOpts = &LO; in BeginSourceFile()
/openbsd-src/libexec/getty/
H A Dmain.c194 if (LO == NULL) in main()
195 LO = _PATH_LOGIN; in main()
196 if (unveil(LO, "x") == -1) { in main()
204 strlcpy(saveLO, LO, sizeof saveLO); in main()
268 if (strcmp(LO, saveLO) != 0) { in main()
350 execle(LO, "login", "-p", "--", name, NULL, env); in main()
351 syslog(LOG_ERR, "%s: %m", LO); in main()
/openbsd-src/gnu/llvm/clang/include/clang/Rewrite/Core/
H A DRewriter.h69 explicit Rewriter(SourceManager &SM, const LangOptions &LO) in Rewriter() argument
70 : SourceMgr(&SM), LangOpts(&LO) {} in Rewriter()
72 void setSourceMgr(SourceManager &SM, const LangOptions &LO) { in setSourceMgr() argument
74 LangOpts = &LO; in setSourceMgr()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h72 for (const auto &LO : R.liveouts()) in prettyPrintStackMap() local
73 OS << "R#" << LO.getDwarfRegNum() << " (" in prettyPrintStackMap()
74 << LO.getSizeInBytes() << "-bytes) "; in prettyPrintStackMap()
/openbsd-src/gnu/usr.bin/perl/
H A Dutf8.h729 * LO: continuation.
731 #define EIGHT_BIT_UTF8_TO_NATIVE(HI, LO) \
733 __ASSERT_(UTF8_IS_CONTINUATION(LO)) \
735 NATIVE_UTF8_TO_I8(HI) & UTF_START_MASK(2)), (LO))))
742 #define TWO_BYTE_UTF8_TO_NATIVE(HI, LO) \
744 __ASSERT_(FITS_IN_8_BITS(LO)) \
746 __ASSERT_(UTF8_IS_CONTINUATION(LO)) \
748 (LO))))
751 #define TWO_BYTE_UTF8_TO_UNI(HI, LO) NATIVE_TO_UNI(TWO_BYTE_UTF8_TO_NATIVE(HI, LO))
730 EIGHT_BIT_UTF8_TO_NATIVE(HI,LO) global() argument
741 TWO_BYTE_UTF8_TO_NATIVE(HI,LO) global() argument
750 TWO_BYTE_UTF8_TO_UNI(HI,LO) global() argument
[all...]
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-dlx.c57 int LO; member
599 the_insn.HI = the_insn.LO = 0; in parse_operand()
612 the_insn.LO = 1; in parse_operand()
615 the_insn.LO = 0; in parse_operand()
618 if (the_insn.HI || the_insn.LO) in parse_operand()
758 the_insn.LO = 0; in machine_ip()
763 the_insn.LO = 0; in machine_ip()
800 if (the_insn.HI && the_insn.LO) in machine_ip()
805 the_insn.LO = 0; in machine_ip()
811 : (the_insn.LO ? RELOC_DLX_LO16 : RELOC_DLX_16); in machine_ip()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-dlx.c60 int LO; member
488 the_insn.HI = the_insn.LO = 0;
501 the_insn.LO = 1;
504 the_insn.LO = 0;
507 if (the_insn.HI || the_insn.LO)
919 the_insn.LO = 0;
924 the_insn.LO = 0;
961 if (the_insn.HI && the_insn.LO)
966 the_insn.LO = 0;
972 : (the_insn.LO ? RELOC_DLX_LO16 : RELOC_DLX_16);
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DStackMaps.cpp341 for (const auto &LO : LiveOuts) { in print() local
344 OS << printReg(LO.Reg, TRI); in print()
346 OS << LO.Reg; in print()
347 OS << "\t[encoding: .short " << LO.DwarfRegNum << ", .byte 0, .byte " in print()
348 << LO.Size << "]\n"; in print()
398 llvm::erase_if(LiveOuts, [](const LiveOutReg &LO) { return LO.Reg == 0; }); in parseRegisterLiveOutMask() argument
714 for (const auto &LO : LiveOuts) { in emitCallsiteEntries() local
715 OS.emitInt16(LO.DwarfRegNum); in emitCallsiteEntries()
717 OS.emitIntValue(LO.Size, 1); in emitCallsiteEntries()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DSARIFDiagnosticPrinter.cpp32 void SARIFDiagnosticPrinter::BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument
37 SARIFDiag = std::make_unique<SARIFDiagnostic>(OS, LO, &*DiagOpts, &*Writer); in BeginSourceFile()

12345678910