Home
last modified time | relevance | path

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

1234

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DPrettyPrinter.h37 PrintingPolicy(const LangOptions &LO) in PrintingPolicy()
38 : LangOpts(LO), Indentation(2), SuppressSpecifiers(false), in PrintingPolicy()
43 Bool(LO.Bool), TerseOutput(false), PolishForDeclaration(false), in PrintingPolicy()
44 MSWChar(LO.MicrosoftExt && !LO.WChar) { } in PrintingPolicy()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DTemplateName.cpp163 LangOptions LO; in operator <<() local
164 LO.CPlusPlus = true; in operator <<()
165 LO.Bool = true; in operator <<()
167 N.print(OS, PrintingPolicy(LO)); in operator <<()
174 LangOptions LO; // FIXME! in dump() local
175 LO.CPlusPlus = true; in dump()
176 LO.Bool = true; in dump()
177 print(OS, PrintingPolicy(LO)); in dump()
/freebsd-10-stable/crypto/openssl/crypto/aes/asm/
Daes-x86_64.pl68 sub LO() { my $r=shift; $r =~ s/%r([a-z]+)/%e\1/; subroutine
1090 rol \$8,`&LO("$tp10")` # ROTATE(tp1^tp8,8)
1091 rol \$8,`&LO("$tp18")` # ROTATE(tp1^tp8,8)
1095 rol \$8,`&LO("$acc0")` # ROTATE(tp1^tp8,8)
1096 rol \$8,`&LO("$acc8")` # ROTATE(tp1^tp8,8)
1097 xor `&LO("$tp80")`,`&LO("$tp10")`
1098 xor `&LO("$tp88")`,`&LO("$tp18")`
1101 xor `&LO("$tp80")`,`&LO("$acc0")`
1102 xor `&LO("$tp88")`,`&LO("$acc8")`
1108 rol \$24,`&LO("$tp20")` # ROTATE(tp2^tp1^tp8,24)
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/
DChainedDiagnosticConsumer.h35 virtual void BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument
37 Primary->BeginSourceFile(LO, PP); in BeginSourceFile()
38 Secondary->BeginSourceFile(LO, PP); in BeginSourceFile()
DLogDiagnosticPrinter.h65 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) { in BeginSourceFile() argument
66 LangOpts = &LO; in BeginSourceFile()
DTextDiagnosticPrinter.h50 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP);
/freebsd-10-stable/sys/dev/fe/
Dif_fe.c566 #define LNX_CYCLE_START LNX_CYCLE(HI,LO,LO,HI, HI,HI,LO,LO)
567 #define LNX_CYCLE_STOP LNX_CYCLE(LO,LO,HI,HI, LO,HI,HI,LO)
568 #define LNX_CYCLE_HI LNX_CYCLE(HI,HI,HI,HI, LO,HI,LO,LO)
569 #define LNX_CYCLE_LO LNX_CYCLE(LO,LO,LO,HI, LO,HI,LO,LO)
570 #define LNX_CYCLE_INIT LNX_CYCLE(LO,HI,HI,HI, LO,LO,LO,LO)
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
DRewriter.h152 explicit Rewriter(SourceManager &SM, const LangOptions &LO) in Rewriter() argument
153 : SourceMgr(&SM), LangOpts(&LO) {} in Rewriter()
156 void setSourceMgr(SourceManager &SM, const LangOptions &LO) { in setSourceMgr() argument
158 LangOpts = &LO; in setSourceMgr()
DTokenRewriter.h51 TokenRewriter(FileID FID, SourceManager &SM, const LangOptions &LO);
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/
DARMBaseInfo.h33 LO, // Carry clear Less than enumerator
52 case HS: return LO; in getOppositeCondition()
53 case LO: return HS; in getOppositeCondition()
73 case ARMCC::LO: return "lo"; in ARMCondCodeToString()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/
DPrintfFormatString.cpp56 const LangOptions &LO, in ParsePrintfSpecifier() argument
156 if (ParseLengthModifier(FS, I, E, LO) && I == E) { in ParsePrintfSpecifier()
203 if (LO.FormatExtensions) in ParsePrintfSpecifier()
207 if (LO.FormatExtensions) in ParsePrintfSpecifier()
211 if (LO.FormatExtensions) in ParsePrintfSpecifier()
218 else if (LO.FormatExtensions) in ParsePrintfSpecifier()
249 const LangOptions &LO, in ParsePrintfString() argument
257 LO, Target); in ParsePrintfString()
DScanfFormatString.cpp71 const LangOptions &LO, in ParseScanfSpecifier() argument
137 if (ParseLengthModifier(FS, I, E, LO, /*scanf=*/true) && I == E) { in ParseScanfSpecifier()
497 const LangOptions &LO, in ParseScanfString() argument
505 LO, Target); in ParseScanfString()
DFormatStringParsing.h48 const LangOptions &LO, bool IsScanf = false);
DFormatString.cpp184 const LangOptions &LO, in ParseLengthModifier() argument
207 if (IsScanf && !LO.C99 && !LO.CPlusPlus11) { in ParseLengthModifier()
DCFG.cpp3511 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) in StmtPrinterHelper() argument
3512 : currentBlock(0), currStmt(0), LangOpts(LO) in StmtPrinterHelper()
3978 void CFG::dump(const LangOptions &LO, bool ShowColors) const { in dump() argument
3979 print(llvm::errs(), LO, ShowColors); in dump()
3983 void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { in print() argument
3984 StmtPrinterHelper Helper(this, LO); in print()
4005 void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, in dump() argument
4007 print(llvm::errs(), cfg, LO, ShowColors); in dump()
4013 const LangOptions &LO, bool ShowColors) const { in print() argument
4014 StmtPrinterHelper Helper(cfg, LO); in print()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DTypoCorrection.h161 std::string getAsString(const LangOptions &LO) const;
162 std::string getQuoted(const LangOptions &LO) const { in getQuoted() argument
163 return "'" + getAsString(LO) + "'"; in getQuoted()
/freebsd-10-stable/contrib/llvm/lib/Analysis/
DScalarEvolutionNormalization.cpp191 const SCEV *LO = X->getLHS(); in TransformImpl() local
193 const SCEV *LN = TransformSubExpr(LO, User, OperandValToReplace); in TransformImpl()
195 if (LO != LN || RO != RN) in TransformImpl()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
DTextDiagnosticPrinter.cpp39 void TextDiagnosticPrinter::BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument
42 TextDiag.reset(new TextDiagnostic(OS, LO, &*DiagOpts)); in BeginSourceFile()
/freebsd-10-stable/contrib/llvm/patches/
Dpatch-r208987-format-extensions.diff70 + if (LO.FormatExtensions)
74 + if (LO.FormatExtensions)
78 + if (LO.FormatExtensions)
85 + else if (LO.FormatExtensions)
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DEnvironment.cpp210 LangOptions LO; // FIXME. in print() local
211 S->printPretty(Out, 0, PrintingPolicy(LO)); in print()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/
DCFG.h559 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const;
560 void print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO,
562 void printTerminator(raw_ostream &OS, const LangOptions &LO) const;
840 void viewCFG(const LangOptions &LO) const;
841 void print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const;
842 void dump(const LangOptions &LO, bool ShowColors) const;
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.h34 LO, // Unsigned lower or same Less than enumerator
60 case A64CC::LO: return "lo"; in A64CondCodeToString()
83 .Case("lo", A64CC::LO) in A64StringToCondCode()
84 .Case("cc", A64CC::LO) in A64StringToCondCode()
/freebsd-10-stable/contrib/gcc/config/mips/
D4k.md115 ;; Move to HI/LO -> MADD/MSUB,MFHI/MFLO has a 1 cycle latency.
121 ;; Move from HI/LO -> integer operation has a 2 cycle latency.
D4130.md92 ;; The product is available in LO & HI after one cycle. Moving the result
102 ;; As for vr4130_mulsi, but the product is available in LO and HI
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
DNVPTX.h160 LO, enumerator

1234