| /openbsd/src/gnu/llvm/llvm/lib/Remarks/ |
| D | RemarkFormat.cpp | 20 Expected<Format> llvm::remarks::parseFormat(StringRef FormatStr) { in parseFormat() 21 auto Result = StringSwitch<Format>(FormatStr) in parseFormat() 22 .Cases("", "yaml", Format::YAML) in parseFormat() 23 .Case("yaml-strtab", Format::YAMLStrTab) in parseFormat() 24 .Case("bitstream", Format::Bitstream) in parseFormat() 25 .Default(Format::Unknown); in parseFormat() 27 if (Result == Format::Unknown) in parseFormat() 35 Expected<Format> llvm::remarks::magicToFormat(StringRef MagicStr) { in magicToFormat() 37 StringSwitch<Format>(MagicStr) in magicToFormat() 38 .StartsWith("--- ", Format::YAML) // This is only an assumption. in magicToFormat() [all …]
|
| D | RemarkParser.cpp | 52 llvm::remarks::createRemarkParser(Format ParserFormat, StringRef Buf) { in createRemarkParser() 54 case Format::YAML: in createRemarkParser() 56 case Format::YAMLStrTab: in createRemarkParser() 60 case Format::Bitstream: in createRemarkParser() 62 case Format::Unknown: in createRemarkParser() 70 llvm::remarks::createRemarkParser(Format ParserFormat, StringRef Buf, in createRemarkParser() 73 case Format::YAML: in createRemarkParser() 77 case Format::YAMLStrTab: in createRemarkParser() 79 case Format::Bitstream: in createRemarkParser() 81 case Format::Unknown: in createRemarkParser() [all …]
|
| D | RemarkSerializer.cpp | 21 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, in createRemarkSerializer() 24 case Format::Unknown: in createRemarkSerializer() 27 case Format::YAML: in createRemarkSerializer() 29 case Format::YAMLStrTab: in createRemarkSerializer() 31 case Format::Bitstream: in createRemarkSerializer() 38 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, in createRemarkSerializer() 41 case Format::Unknown: in createRemarkSerializer() 44 case Format::YAML: in createRemarkSerializer() 46 case Format::YAMLStrTab: in createRemarkSerializer() 49 case Format::Bitstream: in createRemarkSerializer()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/X86/ |
| D | X86InstrFormats.td | 10 // X86 Instruction Format Definitions. 13 // Format specifies the encoding used by the instruction. This is part of the 16 class Format<bits<7> val> { 20 def Pseudo : Format<0>; 21 def RawFrm : Format<1>; 22 def AddRegFrm : Format<2>; 23 def RawFrmMemOffs : Format<3>; 24 def RawFrmSrc : Format<4>; 25 def RawFrmDst : Format<5>; 26 def RawFrmDstSrc : Format<6>; [all …]
|
| /openbsd/src/lib/libssl/doc/ |
| D | standards.txt | 31 (Format: TXT=25661 bytes) (Status: INFORMATIONAL) 33 1320 The MD4 Message-Digest Algorithm. R. Rivest. April 1992. (Format: 36 1321 The MD5 Message-Digest Algorithm. R. Rivest. April 1992. (Format: 40 (Format: TXT=170401 bytes) (Status: PROPOSED STANDARD) 43 January 1998. (Format: TXT=19048 bytes) (Status: INFORMATIONAL) 46 March 1998. (Format: TXT=69679 bytes) (Status: INFORMATIONAL) 54 C. Adams. June 1999. (Format: TXT=43243 bytes) (Status: PROPOSED 58 (TLS). A. Medvinsky, M. Hur. October 1999. (Format: TXT=13763 bytes) 62 B. Kaliski. September 2000. (Format: TXT=68692 bytes) (Status: 66 M. Nystrom, B. Kaliski. November 2000. (Format: TXT=27794 bytes) [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Format/ |
| D | FormatToken.cpp | 120 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); in formatAfterToken() local 125 if (!Format) in formatAfterToken() 139 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken() 145 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { in formatAfterToken() 271 ColumnFormat Format; in precomputeFormattingInfos() local 272 Format.Columns = Columns; in precomputeFormattingInfos() 273 Format.ColumnSizes.resize(Columns); in precomputeFormattingInfos() 275 Format.LineCount = 1; in precomputeFormattingInfos() 281 ++Format.LineCount; in precomputeFormattingInfos() 288 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], Length); in precomputeFormattingInfos() [all …]
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| D | OptionValueFormat.h | 19 OptionValueFormat(lldb::Format value) in OptionValueFormat() 22 OptionValueFormat(lldb::Format current_value, lldb::Format default_value) in OptionValueFormat() 47 lldb::Format GetCurrentValue() const { return m_current_value; } in GetCurrentValue() 49 lldb::Format GetDefaultValue() const { return m_default_value; } in GetDefaultValue() 51 void SetCurrentValue(lldb::Format value) { m_current_value = value; } in SetCurrentValue() 53 void SetDefaultValue(lldb::Format value) { m_default_value = value; } in SetDefaultValue() 56 lldb::Format m_current_value; 57 lldb::Format m_default_value;
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| D | string_utils.cpp | 118 static int formatString(char *Buffer, uptr BufferLength, const char *Format, in formatString() argument 123 RAW_CHECK(Format); in formatString() 126 const char *Cur = Format; in formatString() 213 int formatString(char *Buffer, uptr BufferLength, const char *Format, ...) { in formatString() argument 215 va_start(Args, Format); in formatString() 216 int Res = formatString(Buffer, BufferLength, Format, Args); in formatString() 221 void ScopedString::append(const char *Format, va_list Args) { in append() argument 229 static_cast<uptr>(formatString(C, sizeof(C), Format, Args)) + 1; in append() 233 String.data() + Length, String.size() - Length, Format, ArgsCopy)); in append() 239 void ScopedString::append(const char *Format, ...) { in append() argument [all …]
|
| D | string_utils.h | 28 void append(const char *Format, va_list Args); 29 void append(const char *Format, ...) FORMAT(2, 3); 37 int formatString(char *Buffer, uptr BufferLength, const char *Format, ...) 39 void Printf(const char *Format, ...) FORMAT(1, 2);
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | Compression.h | 76 enum class Format { enum 81 inline Format formatFor(DebugCompressionType Type) { in formatFor() 86 return Format::Zlib; in formatFor() 88 return Format::Zstd; in formatFor() 94 constexpr Params(Format F) in Params() 95 : format(F), level(F == Format::Zlib ? zlib::DefaultCompression in Params() 99 Format format; 109 const char *getReasonIfUnsupported(Format F); 119 Error decompress(Format F, ArrayRef<uint8_t> Input,
|
| /openbsd/src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| D | DWARFListTable.cpp | 24 std::tie(HeaderData.Length, Format) = Data.getInitialLength(OffsetPtr, &Err); in extract() 30 uint8_t OffsetByteSize = Format == dwarf::DWARF64 ? 8 : 4; in extract() 32 HeaderData.Length + dwarf::getUnitLengthFieldByteSize(Format); in extract() 33 if (FullLength < getHeaderSize(Format)) in extract() 67 if (End < HeaderOffset + getHeaderSize(Format) + in extract() 82 int OffsetDumpWidth = 2 * dwarf::getDwarfOffsetByteSize(Format); in dump() 85 << ", format = " << dwarf::FormatString(Format) in dump() 99 Off + HeaderOffset + getHeaderSize(Format)); in dump() 108 return HeaderData.Length + dwarf::getUnitLengthFieldByteSize(Format); in length()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/ |
| D | ReplayInlineAdvisor.h | 22 enum class Format : int { enum 30 return OutputFormat == Format::LineColumn || in outputColumn() 31 OutputFormat == Format::LineColumnDiscriminator; in outputColumn() 35 return OutputFormat == Format::LineDiscriminator || in outputDiscriminator() 36 OutputFormat == Format::LineColumnDiscriminator; in outputDiscriminator() 39 Format OutputFormat; 54 std::string formatCallSiteLocation(DebugLoc DLoc, const CallSiteFormat &Format);
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | LLVMRemarkStreamer.cpp | 107 Expected<remarks::Format> Format = remarks::parseFormat(RemarksFormat); in setupLLVMOptimizationRemarks() local 108 if (Error E = Format.takeError()) in setupLLVMOptimizationRemarks() 112 auto Flags = *Format == remarks::Format::YAML ? sys::fs::OF_TextWithCRLF in setupLLVMOptimizationRemarks() 123 *Format, remarks::SerializerMode::Separate, RemarksFile->os()); in setupLLVMOptimizationRemarks() 151 Expected<remarks::Format> Format = remarks::parseFormat(RemarksFormat); in setupLLVMOptimizationRemarks() local 152 if (Error E = Format.takeError()) in setupLLVMOptimizationRemarks() 156 remarks::createRemarkSerializer(*Format, in setupLLVMOptimizationRemarks()
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | Compression.cpp | 30 const char *compression::getReasonIfUnsupported(compression::Format F) { in getReasonIfUnsupported() 32 case compression::Format::Zlib: in getReasonIfUnsupported() 37 case compression::Format::Zstd: in getReasonIfUnsupported() 49 case compression::Format::Zlib: in compress() 52 case compression::Format::Zstd: in compress() 61 case compression::Format::Zlib: in decompress() 63 case compression::Format::Zstd: in decompress() 69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() 73 case compression::Format::Zlib: in decompress() 75 case compression::Format::Zstd: in decompress()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_flag_parser.h | 28 virtual bool Format(char *buffer, uptr size) { in Format() function 51 bool Format(char *buffer, uptr size) final; 78 inline bool FlagHandler<bool>::Format(char *buffer, uptr size) { in Format() function 99 inline bool FlagHandler<HandleSignalMode>::Format(char *buffer, uptr size) { in Format() function 111 inline bool FlagHandler<const char *>::Format(char *buffer, uptr size) { in Format() function 125 inline bool FlagHandler<int>::Format(char *buffer, uptr size) { in Format() function 140 inline bool FlagHandler<uptr>::Format(char *buffer, uptr size) { in Format() function 155 inline bool FlagHandler<s64>::Format(char *buffer, uptr size) { in Format() function
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Remarks/ |
| D | RemarkParser.h | 42 Format ParserFormat; 46 RemarkParser(Format ParserFormat) : ParserFormat(ParserFormat) {} in RemarkParser() 79 Expected<std::unique_ptr<RemarkParser>> createRemarkParser(Format ParserFormat, 83 createRemarkParser(Format ParserFormat, StringRef Buf, 87 Format ParserFormat, StringRef Buf,
|
| D | YAMLRemarkSerializer.h | 47 return S->SerializerFormat == Format::YAML; in classof() 51 YAMLRemarkSerializer(Format SerializerFormat, raw_ostream &OS, 74 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode) { in YAMLStrTabRemarkSerializer() 80 : YAMLRemarkSerializer(Format::YAMLStrTab, OS, Mode, std::move(StrTab)) {} in YAMLStrTabRemarkSerializer() 90 return S->SerializerFormat == Format::YAMLStrTab; in classof()
|
| D | RemarkSerializer.h | 44 Format SerializerFormat; 53 RemarkSerializer(Format SerializerFormat, raw_ostream &OS, in RemarkSerializer() 81 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, 86 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Mips/ |
| D | Mips16InstrFormats.td | 32 // Base class for Mips 16 Format 52 // Generic Mips 16 Format 90 // Mips Pseudo Instructions Format 99 // Format I instruction class in Mips : <|opcode|imm11|> 114 // Format RI instruction class in Mips : <|opcode|rx|imm8|> 131 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|> 228 // Format RRI instruction class in Mips : <|opcode|rx|ry|imm5|> 248 // Format RRR instruction class in Mips : <|opcode|rx|ry|rz|f|> 270 // Format RRI-A instruction class in Mips : <|opcode|rx|ry|f|imm4|> 292 // Format Shift instruction class in Mips : <|opcode|rx|ry|sa|f|> [all …]
|
| D | Mips16InstrInfo.td | 525 // Format: ADDIU rx, immediate MIPS16e 546 // Format: ADDIU rx, pc, immediate MIPS16e 553 // Format: ADDIU sp, immediate MIPS16e 571 // Format: ADDU rz, rx, ry MIPS16e 579 // Format: AND rx, ry MIPS16e 587 // Format: BEQZ rx, offset MIPS16e 595 // Format: BEQZ rx, offset MIPS16e 602 // Format: B offset MIPS16e 609 // Format: B offset MIPS16e 616 // Format: BNEZ rx, offset MIPS16e [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/profile/ |
| D | InstrProfilingPort.h | 123 #define PROF_ERR(Format, ...) \ argument 124 fprintf(stderr, "LLVM Profile Error: " Format, __VA_ARGS__); 126 #define PROF_WARN(Format, ...) \ argument 127 fprintf(stderr, "LLVM Profile Warning: " Format, __VA_ARGS__); 129 #define PROF_NOTE(Format, ...) \ argument 130 fprintf(stderr, "LLVM Profile Note: " Format, __VA_ARGS__);
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/ |
| D | DWARFExpression.h | 103 std::optional<dwarf::DwarfFormat> Format); 118 !Op.extract(Expr->Data, Expr->AddressSize, Offset, Expr->Format); in iterator() 126 !Op.extract(Expr->Data, Expr->AddressSize, Offset, Expr->Format); 141 std::optional<dwarf::DwarfFormat> Format = std::nullopt) 142 : Data(Data), AddressSize(AddressSize), Format(Format) { in Data() 173 std::optional<dwarf::DwarfFormat> Format; variable
|
| /openbsd/src/gnu/llvm/lldb/source/Utility/ |
| D | ProcessInfo.cpp | 58 s.Format("Environment:\n{0}", m_environment); in Dump() 136 s.Format("{0}", m_environment); in Dump() 145 s.Format(" uid = {0,-5} ({1})\n", GetUserID(), in Dump() 149 s.Format(" gid = {0,-5} ({1})\n", GetGroupID(), in Dump() 153 s.Format(" euid = {0,-5} ({1})\n", GetEffectiveUserID(), in Dump() 157 s.Format(" egid = {0,-5} ({1})\n", GetEffectiveGroupID(), in Dump() 200 s.Format(format, ""); in DumpAsTableRow() 205 s.Format(format, *name); in DumpAsTableRow() 207 s.Format(format, id); in DumpAsTableRow()
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/opcodes/ |
| D | ia64-ic.tbl | 23 fr-readers; IC:fp-arith, IC:fp-non-arith, IC:mem-writers-fp, IC:pr-writers-fp, chk.s[Format in {M21… 26 …C:mov-from-IND, add, addl, addp4, adds, and, andcm, clz, IC:czx, dep\dep[Format in {I13}], extr, I… 28 indirect-brp; brp[Format in {B7}] 29 indirect-brs; br.call[Format in {B5}], br.cond[Format in {B4}], br.ia, br.ret 30 invala-all; invala[Format in {M24}], invala.e 31 ip-rel-brs; IC:mod-sched-brs, br.call[Format in {B3}], brl.call, brl.cond, br.cond[Format in {B1}],… 34 ld-all-postinc; IC:ld[Format in {M2 M3}], IC:ldfp[Format in {M12}], IC:ldf[Format in {M7 M8}] 58 lfetch-postinc; lfetch[Format in {M14 M15}] 83 mov-from-AR-I; mov_ar[Format in {I28}] 85 mov-from-AR-IM; mov_ar[Format in {I28 M31}] [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/opcodes/ |
| D | ia64-ic.tbl | 23 fr-readers; IC:fp-arith, IC:fp-non-arith, IC:pr-writers-fp, chk.s[Format in {M21}], getf, IC:mem-wr… 26 gr-readers-writers; IC:mov-from-IND, add, addl, addp4, adds, and, andcm, IC:czx, dep\dep[Format in … 28 indirect-brp; brp[Format in {B7}] 29 indirect-brs; br.call[Format in {B5}], br.cond[Format in {B4}], br.ia, br.ret 30 invala-all; invala[Format in {M24}], invala.e 31 ip-rel-brs; IC:mod-sched-brs, br.call[Format in {B3}], brl.call, brl.cond, br.cond[Format in {B1}],… 34 ld-all-postinc; IC:ld[Format in {M2 M3}], IC:ldfp[Format in {M12}], IC:ldf[Format in {M7 M8}] 58 lfetch-postinc; lfetch[Format in {M14 M15}] 83 mov-from-AR-I; mov_ar[Format in {I28}] 85 mov-from-AR-IM; mov_ar[Format in {I28 M31}] [all …]
|