Home
last modified time | relevance | path

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

1234567

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenCLOptions.h61 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()
143 bool isSupported(llvm::StringRef Ext, const LangOptions &LO) const;
152 const LangOptions &LO) const;
157 const LangOptions &LO) const;
[all …]
H A DLangOptions.h762 explicit FPOptions(const LangOptions &LO) { in FPOptions() argument
771 setRoundingMath(LO.RoundingMath); in FPOptions()
774 setAllowFPReassociate(LO.AllowFPReassoc); in FPOptions()
775 setNoHonorNaNs(LO.NoHonorNaNs); in FPOptions()
776 setNoHonorInfs(LO.NoHonorInfs); in FPOptions()
777 setNoSignedZero(LO.NoSignedZero); in FPOptions()
778 setAllowReciprocal(LO.AllowRecip); in FPOptions()
779 setAllowApproxFunc(LO.ApproxFunc); in FPOptions()
788 setComplexRange(LO.getComplexRange()); in FPOptions()
894 FPOptionsOverride(const LangOptions &LO) in FPOptionsOverride() argument
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.h232 #define PPC_REGS_LO_HI(LO, HI) \ argument
234 LO##0, LO##1, LO##2, LO##3, LO##4, LO##5, LO##6, LO##7, LO##8, LO##9, \
235 LO##10, LO##11, LO##12, LO##13, LO##14, LO##15, LO##16, LO##17, \
236 LO##18, LO##19, LO##20, LO##21, LO##22, LO##23, LO##24, LO##25, \
237 LO##26, LO##27, LO##28, LO##29, LO##30, LO##31, HI##0, HI##1, HI##2, \
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DPrettyPrinter.h59 PrintingPolicy(const LangOptions &LO) in PrintingPolicy()
61 SuppressTagKeyword(LO.CPlusPlus), IncludeTagDefinition(false), in PrintingPolicy()
68 SuppressDefaultTemplateArgs(true), Bool(LO.Bool), in PrintingPolicy()
69 Nullptr(LO.CPlusPlus11 || LO.C23), NullptrTypeInNamespace(LO.CPlusPlus), in PrintingPolicy()
70 Restrict(LO.C99), Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11), in PrintingPolicy()
71 UseVoidForZeroParams(!LO.CPlusPlus), in PrintingPolicy()
72 SplitTemplateClosers(!LO.CPlusPlus11), TerseOutput(false), in PrintingPolicy()
73 PolishForDeclaration(false), Half(LO.Half), in PrintingPolicy()
74 MSWChar(LO.MicrosoftExt && !LO.WChar), IncludeNewlines(true), in PrintingPolicy()
/freebsd-14.2/contrib/llvm-project/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()
72 I->getValue().isOptionalCoreIn(LO); in isSupportedOptionalCore()
77 return isSupportedCore(Ext, LO) || isSupportedOptionalCore(Ext, LO); in isSupportedCoreOrOptionalCore()
84 I->getValue().isAvailableIn(LO) && in isSupportedExtension()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp34 const LangOptions &LO; member in __anone51bee320111::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 __anon8ab6e1a20111::TextDiagnostics
45 DiagnosticsEngine &DiagEng, const LangOptions &LO, in TextDiagnostics() argument
47 : DiagOpts(std::move(DiagOpts)), DiagEng(DiagEng), LO(LO), in TextDiagnostics()
127 Rewriter Rewrite(SM, LO); in FlushDiagnosticsImpl()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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.cpp81 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterNSAutoreleasePoolChecker() local
82 return LO.getGC() != LangOptions::NonGC; in shouldRegisterNSAutoreleasePoolChecker()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp361 LangOptions LO; in operator <<() local
362 LO.CPlusPlus = true; in operator <<()
363 LO.Bool = true; in operator <<()
365 N.print(OS, PrintingPolicy(LO)); in operator <<()
372 LangOptions LO; // FIXME! in dump() local
373 LO.CPlusPlus = true; in dump()
374 LO.Bool = true; in dump()
375 print(OS, PrintingPolicy(LO)); in dump()
H A DFormatString.cpp185 const LangOptions &LO) { in ParseVectorModifier() argument
186 if (!LO.OpenCL) in ParseVectorModifier()
214 const LangOptions &LO, in ParseLengthModifier() argument
226 } else if (I != E && *I == 'l' && LO.OpenCL) { in ParseLengthModifier()
248 if (IsScanf && !LO.C99 && !LO.CPlusPlus11) { in ParseLengthModifier()
817 const LangOptions &LO) const { in hasValidLengthModifier()
825 if (LO.OpenCL && CS.isDoubleArg()) in hasValidLengthModifier()
869 return LO.OpenCL && !VectorNumElts.isInvalid(); in hasValidLengthModifier()
875 if (LO.OpenCL && VectorNumElts.isInvalid()) in hasValidLengthModifier()
/freebsd-14.2/crypto/openssl/crypto/aes/asm/
H A Daes-x86_64.pl1129 xor `&LO("$tp80")`,`&LO("$tp10")`
1131 xor `&LO("$tp88")`,`&LO("$tp18")`
1133 xor `&LO("$tp80")`,`&LO("$acc0")`
1134 xor `&LO("$tp88")`,`&LO("$acc8")`
1141 xor `&LO("$tp20")`,`&LO("$tp10")`
1143 xor `&LO("$tp28")`,`&LO("$tp18")`
1149 xor `&LO("$tp80")`,`&LO("$acc0")`
1151 xor `&LO("$tp88")`,`&LO("$acc8")`
1160 xor `&LO("$tp40")`,`&LO("$tp10")`
1162 xor `&LO("$tp48")`,`&LO("$tp18")`
[all …]
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/arm-optimized-routines/pl/math/test/
H A Drunulp.sh30 IFS=',' read -ra LO <<< "$2"
68 while read F LO HI N C
70 t $F $LO $HI $N $C
/freebsd-14.2/contrib/arm-optimized-routines/pl/math/
H A Dlog.c42 #define LO asuint64 (1.0 - 0x1p-5) in optr_aor_log_f64() macro
45 #define LO asuint64 (1.0 - 0x1p-4) in optr_aor_log_f64() macro
48 if (unlikely (ix - LO < HI - LO)) in optr_aor_log_f64()
H A Dlog10_2u.c22 #define LO asuint64 (1.0 - 0x1p-4) macro
52 if (unlikely (ix - LO < HI - LO)) in log10()
/freebsd-14.2/contrib/arm-optimized-routines/math/
H A Dlog.c42 # define LO asuint64 (1.0 - 0x1p-5) in log() macro
45 # define LO asuint64 (1.0 - 0x1p-4) in log() macro
48 if (unlikely (ix - LO < HI - LO)) in log()
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/frequency/
H A Dadi,adrf6780.yaml75 output frequency (LO x1). Either LOx1 or LOx2 can be enabled
81 Enable additional cirtuitry in the LO chain. Disable to put the
93 Switch to the Lower LO Sideband. By default the Upper LO
/freebsd-14.2/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna64.h12 #define LO(in) (unsigned long long) (in) macro
114 h0 = LO(d0) & 0xfffffffffff; in poly1305_blocks()
117 h1 = LO(d1) & 0xfffffffffff; in poly1305_blocks()
120 h2 = LO(d2) & 0x3ffffffffff; in poly1305_blocks()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp359 for (const auto &LO : LiveOuts) { in print() local
362 OS << printReg(LO.Reg, TRI); in print()
364 OS << LO.Reg; in print()
365 OS << "\t[encoding: .short " << LO.DwarfRegNum << ", .byte 0, .byte " in print()
366 << LO.Size << "]\n"; in print()
416 llvm::erase_if(LiveOuts, [](const LiveOutReg &LO) { return LO.Reg == 0; }); in parseRegisterLiveOutMask() argument
711 for (const auto &LO : LiveOuts) { in emitCallsiteEntries() local
712 OS.emitInt16(LO.DwarfRegNum); in emitCallsiteEntries()
714 OS.emitIntValue(LO.Size, 1); in emitCallsiteEntries()
/freebsd-14.2/contrib/llvm-project/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()

1234567