Home
last modified time | relevance | path

Searched refs:Format (Results 1 – 25 of 572) sorted by relevance

12345678910>>...23

/minix3/minix/drivers/power/acpi/utilities/
H A Dutprint.c442 const char *Format, in AcpiUtVsnprintf() argument
463 for (; *Format; ++Format) in AcpiUtVsnprintf()
465 if (*Format != '%') in AcpiUtVsnprintf()
467 Pos = AcpiUtBoundStringOutput (Pos, End, *Format); in AcpiUtVsnprintf()
475 ++Format; in AcpiUtVsnprintf()
476 if (*Format == '#') in AcpiUtVsnprintf()
480 else if (*Format == '0') in AcpiUtVsnprintf()
484 else if (*Format == '+') in AcpiUtVsnprintf()
488 else if (*Format == ' ') in AcpiUtVsnprintf()
492 else if (*Format == '-') in AcpiUtVsnprintf()
[all …]
H A Dutxferror.c78 const char *Format, in AcpiError() argument
87 va_start (ArgList, Format); in AcpiError()
88 AcpiOsVprintf (Format, ArgList); in AcpiError()
119 const char *Format, in ACPI_EXPORT_SYMBOL()
128 va_start (ArgList, Format); in ACPI_EXPORT_SYMBOL()
129 AcpiOsVprintf (Format, ArgList); in ACPI_EXPORT_SYMBOL()
157 const char *Format, in ACPI_EXPORT_SYMBOL()
166 va_start (ArgList, Format); in ACPI_EXPORT_SYMBOL()
167 AcpiOsVprintf (Format, ArgList); in ACPI_EXPORT_SYMBOL()
198 const char *Format, in ACPI_EXPORT_SYMBOL()
[all …]
H A Duterror.c84 const char *Format, in AcpiUtPredefinedWarning() argument
101 va_start (ArgList, Format); in AcpiUtPredefinedWarning()
102 AcpiOsVprintf (Format, ArgList); in AcpiUtPredefinedWarning()
133 const char *Format, in AcpiUtPredefinedInfo() argument
150 va_start (ArgList, Format); in AcpiUtPredefinedInfo()
151 AcpiOsVprintf (Format, ArgList); in AcpiUtPredefinedInfo()
182 const char *Format, in AcpiUtPredefinedBiosError() argument
199 va_start (ArgList, Format); in AcpiUtPredefinedBiosError()
200 AcpiOsVprintf (Format, ArgList); in AcpiUtPredefinedBiosError()
H A Dutdebug.c185 const char *Format, in AcpiDebugPrint() argument
239 va_start (args, Format); in AcpiDebugPrint()
240 AcpiOsVprintf (Format, args); in AcpiDebugPrint()
273 const char *Format, in ACPI_EXPORT_SYMBOL()
286 va_start (args, Format); in ACPI_EXPORT_SYMBOL()
287 AcpiOsVprintf (Format, args); in ACPI_EXPORT_SYMBOL()
656 const char *Format, in AcpiLogError() argument
661 va_start (Args, Format); in AcpiLogError()
662 (void) AcpiUtFileVprintf (ACPI_FILE_ERR, Format, Args); in AcpiLogError()
/minix3/crypto/external/bsd/openssl/dist/doc/
H A Dstandards.txt31 (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 …]
/minix3/external/bsd/llvm/dist/llvm/test/TableGen/
H A DTargetInstrInfo.td44 class Format<bits<5> val> {
48 def Pseudo : Format<0>; def RawFrm : Format<1>;
49 def AddRegFrm : Format<2>; def MRMDestReg : Format<3>;
50 def MRMDestMem : Format<4>; def MRMSrcReg : Format<5>;
51 def MRMSrcMem : Format<6>;
52 def MRM0r : Format<16>; def MRM1r : Format<17>; def MRM2r : Format<18>;
53 def MRM3r : Format<19>; def MRM4r : Format<20>; def MRM5r : Format<21>;
54 def MRM6r : Format<22>; def MRM7r : Format<23>;
55 def MRM0m : Format<24>; def MRM1m : Format<25>; def MRM2m : Format<26>;
56 def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>;
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/Target/X86/
H A DX86InstrFormats.td11 // X86 Instruction Format Definitions.
14 // Format specifies the encoding used by the instruction. This is part of the
17 class Format<bits<7> val> {
21 def Pseudo : Format<0>; def RawFrm : Format<1>;
22 def AddRegFrm : Format<2>; def MRMDestReg : Format<3>;
23 def MRMDestMem : Format<4>; def MRMSrcReg : Format<5>;
24 def MRMSrcMem : Format<6>; def RawFrmMemOffs : Format<7>;
25 def RawFrmSrc : Format<8>; def RawFrmDst : Format<9>;
26 def RawFrmDstSrc: Format<10>;
27 def RawFrmImm8 : Format<11>;
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Format/
H A DFormatToken.cpp78 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); in formatAfterToken() local
82 if (!Format) in formatAfterToken()
96 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken()
102 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { in formatAfterToken()
208 ColumnFormat Format; in precomputeFormattingInfos() local
209 Format.Columns = Columns; in precomputeFormattingInfos()
210 Format.ColumnSizes.resize(Columns); in precomputeFormattingInfos()
211 Format.LineCount = 1; in precomputeFormattingInfos()
217 ++Format.LineCount; in precomputeFormattingInfos()
224 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], length); in precomputeFormattingInfos()
[all …]
/minix3/external/bsd/file/dist/magic/magdir/
H A Dctf3 # ctf: file(1) magic for CTF (Common Trace Format) trace files
9 0 lelong 0xc1fc1fc1 Common Trace Format (CTF) trace data (LE)
10 0 belong 0xc1fc1fc1 Common Trace Format (CTF) trace data (BE)
13 0 lelong 0x75d11d57 Common Trace Format (CTF) packetized metadata (LE)
16 0 belong 0x75d11d57 Common Trace Format (CTF) packetized metadata (BE)
21 0 string /*\x20CTF\x20 Common Trace Format (CTF) plain text metadata
H A Dpbf6 # OpenStreetMap Protocolbuffer Binary Format (.osm.pbf)
11 >>6 string OSMHeader OpenStreetMap Protocolbuffer Binary Format
H A Dpdf4 # pdf: file(1) magic for Portable Document Format
13 # Forms Data Format
H A Drtf4 # rtf: file(1) magic for Rich Text Format (RTF)
8 0 string {\\rtf Rich Text Format data,
/minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/
H A Dformat-strings.mm13 @interface Format interface
21 [Format print:@"%d", arg];
26 …[Format print:@"%d", arg]; // expected-warning {{format specifies type 'int' but the argument has …
38 [Format print:@"%d", arg]; // no-warning
46 …[Format print:@"%d", arg]; // expected-warning {{format specifies type 'int' but the argument has …
61 [Format print:@"%d", arg]; // no-warning
72 …[Format print:@"%d", arg]; // expected-warning {{format specifies type 'int' but the argument has …
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-diff/
H A DDiffLog.h36 StringRef Format; variable
41 LogBuilder(Consumer &c, StringRef Format) in LogBuilder() argument
42 : consumer(c), Format(Format) {} in LogBuilder()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMips16InstrFormats.td33 // Base class for Mips 16 Format
53 // Generic Mips 16 Format
91 // Mips Pseudo Instructions Format
100 // Format I instruction class in Mips : <|opcode|imm11|>
115 // Format RI instruction class in Mips : <|opcode|rx|imm8|>
132 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|>
229 // Format RRI instruction class in Mips : <|opcode|rx|ry|imm5|>
249 // Format RRR instruction class in Mips : <|opcode|rx|ry|rz|f|>
271 // Format RRI-A instruction class in Mips : <|opcode|rx|ry|f|imm4|>
293 // Format Shift instruction class in Mips : <|opcode|rx|ry|sa|f|>
[all …]
H A DMips16InstrInfo.td529 // Format: ADDIU rx, immediate MIPS16e
549 // Format: ADDIU rx, pc, immediate MIPS16e
556 // Format: ADDIU sp, immediate MIPS16e
574 // Format: ADDU rz, rx, ry MIPS16e
582 // Format: AND rx, ry MIPS16e
590 // Format: BEQZ rx, offset MIPS16e
598 // Format: BEQZ rx, offset MIPS16e
605 // Format: B offset MIPS16e
612 // Format: B offset MIPS16e
619 // Format: BNEZ rx, offset MIPS16e
[all …]
H A DMipsInstrFormats.td24 // Format specifies the encoding used by the instruction. This is part of the
27 class Format<bits<4> val> {
31 def Pseudo : Format<0>;
32 def FrmR : Format<1>;
33 def FrmI : Format<2>;
34 def FrmJ : Format<3>;
35 def FrmFR : Format<4>;
36 def FrmFI : Format<5>;
37 def FrmOther : Format<6>; // Instruction w/ a custom format
57 // Generic Mips Format
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/MC/Disassembler/ARM/
H A Dinvalid-armv7.txt12 # Opcode=60 Name=BFI Format=ARM_FORMAT_DPFRM(4)
81 # Opcode=0 Name=PHI Format=(42)
98 # Opcode=134 Name=LDMIA Format=ARM_FORMAT_LDSTMULFRM(10)
116 # Opcode=165 Name=LDR_PRE Format=ARM_FORMAT_LDFRM(6)
138 # Opcode=140 Name=LDRB_POST Format=ARM_FORMAT_LDFRM(6)
155 # Opcode=171 Name=MCR Format=ARM_FORMAT_BRFRM(2)
172 # Opcode=0 Name=PHI Format=(42)
190 # Opcode=0 Name=PHI Format=(42)
205 # Opcode=196 Name=MOVs Format=ARM_FORMAT_DPSOREGFRM(5)
215 # Opcode=185 Name=MOVTi16 Format=ARM_FORMAT_DPFRM(4)
[all …]
/minix3/external/bsd/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc237 DeathTestAbort(::testing::internal::String::Format( \
257 DeathTestAbort(::testing::internal::String::Format( \
678 const String filter_flag = String::Format("--%s%s=%s.%s", in AssumeRole()
682 const String internal_flag = String::Format( in AssumeRole()
701 String command_line = String::Format("%s %s \"%s\"", in AssumeRole()
913 DeathTestAbort(String::Format("chdir(\"%s\") failed: %s", in ExecDeathTestChildMain()
925 DeathTestAbort(String::Format("execve(%s, ...) in %s failed: %s", in ExecDeathTestChildMain()
1012 String::Format("--%s%s=%s.%s", in AssumeRole()
1016 String::Format("--%s%s=%s|%d|%d|%d", in AssumeRole()
1057 DeathTest::set_last_death_test_message(String::Format( in Create()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430InstrFormats.td14 // Format specifies the encoding used by the instruction. This is part of the
17 class Format<bits<2> val> {
21 def PseudoFrm : Format<0>;
22 def SingleOpFrm : Format<1>;
23 def DoubleOpFrm : Format<2>;
24 def CondJumpFrm : Format<3>;
53 // Generic MSP430 Format
54 class MSP430Inst<dag outs, dag ins, SizeVal sz, Format f,
63 Format Form = f;
76 // MSP430 Double Operand (Format I) Instructions
[all …]
/minix3/external/bsd/llvm/lib/libclangFormat/
H A DMakefile7 .PATH: ${CLANG_SRCDIR}/lib/Format
11 Format.cpp \
/minix3/external/bsd/llvm/dist/llvm/tools/yaml2obj/
H A Dyaml2obj.cpp48 cl::opt<YAMLObjectFormat> Format( variable
100 if (Format == YOF_COFF) in main()
102 else if (Format == YOF_ELF) in main()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/
H A DARMInstrFormats.td12 // ARM Instruction Format Definitions.
15 // Format specifies the encoding used by the instruction. This is part of the
18 class Format<bits<6> val> {
22 def Pseudo : Format<0>;
23 def MulFrm : Format<1>;
24 def BrFrm : Format<2>;
25 def BrMiscFrm : Format<3>;
27 def DPFrm : Format<4>;
28 def DPSoRegRegFrm : Format<5>;
30 def LdFrm : Format<6>;
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp111 SampleProfileWriter::create(StringRef Filename, SampleProfileFormat Format) { in create() argument
115 if (Format == SPF_Binary) in create()
117 else if (Format == SPF_Text) in create()
/minix3/external/bsd/llvm/dist/llvm/test/tools/llvm-readobj/
H A Dfile-headers.test29 COFF-ARM-NEXT: Format: COFF-ARM
44 COFF32-NEXT: Format: COFF-i386
59 COFF64-NEXT: Format: COFF-x86-64
74 ELF32-NEXT: Format: ELF32-i386
105 ELF64-NEXT: Format: ELF64-x86-64
136 MACHO32-NEXT: Format: Mach-O 32-bit i386
152 MACHO64-NEXT: Format: Mach-O 64-bit x86-64
169 MACHO-PPC-NEXT: Format: Mach-O 32-bit ppc
185 MACHO-PPC64-NEXT: Format: Mach-O 64-bit ppc64
202 MACHO-ARM-NEXT: Format: Mach-O arm
[all …]

12345678910>>...23