| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | PrettyPrinter.h | 37 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/ |
| D | TemplateName.cpp | 163 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/ |
| D | aes-x86_64.pl | 68 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/ |
| D | ChainedDiagnosticConsumer.h | 35 virtual void BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument 37 Primary->BeginSourceFile(LO, PP); in BeginSourceFile() 38 Secondary->BeginSourceFile(LO, PP); in BeginSourceFile()
|
| D | LogDiagnosticPrinter.h | 65 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) { in BeginSourceFile() argument 66 LangOpts = &LO; in BeginSourceFile()
|
| D | TextDiagnosticPrinter.h | 50 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP);
|
| /freebsd-10-stable/sys/dev/fe/ |
| D | if_fe.c | 566 #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/ |
| D | Rewriter.h | 152 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()
|
| D | TokenRewriter.h | 51 TokenRewriter(FileID FID, SourceManager &SM, const LangOptions &LO);
|
| /freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| D | ARMBaseInfo.h | 33 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/ |
| D | PrintfFormatString.cpp | 56 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()
|
| D | ScanfFormatString.cpp | 71 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()
|
| D | FormatStringParsing.h | 48 const LangOptions &LO, bool IsScanf = false);
|
| D | FormatString.cpp | 184 const LangOptions &LO, in ParseLengthModifier() argument 207 if (IsScanf && !LO.C99 && !LO.CPlusPlus11) { in ParseLengthModifier()
|
| D | CFG.cpp | 3511 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/ |
| D | TypoCorrection.h | 161 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/ |
| D | ScalarEvolutionNormalization.cpp | 191 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/ |
| D | TextDiagnosticPrinter.cpp | 39 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/ |
| D | patch-r208987-format-extensions.diff | 70 + 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/ |
| D | Environment.cpp | 210 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/ |
| D | CFG.h | 559 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/ |
| D | AArch64BaseInfo.h | 34 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/ |
| D | 4k.md | 115 ;; 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.
|
| D | 4130.md | 92 ;; 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/ |
| D | NVPTX.h | 160 LO, enumerator
|