| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | size.c | 45 decimal, octal, hex enumerator 196 radix = octal; in main() 227 radix = octal; in main() 275 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), in main() 445 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), in size_number() 455 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), in rprint_number() 505 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" : in print_berkeley_or_gnu_format() 528 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), in print_berkeley_or_gnu_format()
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | size.c | 45 decimal, octal, hex enumerator 195 radix = octal; in main() 226 radix = octal; in main() 274 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), in main() 445 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")), in size_number() 458 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")), in rprint_number() 508 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" : in print_berkeley_or_gnu_format() 531 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), in print_berkeley_or_gnu_format()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
| H A D | llvm-strings.cpp | 48 enum radix { none, octal, hexadecimal, decimal }; enumerator 51 cl::values(clEnumValN(octal, "o", "octal"), 69 case octal: in strings()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | conv.d | 2927 assert(parse!int(s = "765", 8) == octal!765); 2928 assert(parse!int(s = "000135", 8) == octal!"135"); 4865 template octal(string num) 4869 enum octal = octal!int(num); 4871 enum octal = octal!long(num); 4873 enum octal = octal!uint(num); 4875 enum octal = octal!ulong(num); 4881 template octal(alias decimalInteger) 4884 enum octal = octal!(typeof(decimalInteger))(to!string(decimalInteger)); 4891 auto a = octal!177; [all …]
|
| H A D | mmfile.d | 107 fmode = octal!660; in version() 114 fmode = octal!660; in version() 295 fmode = octal!660; in version() 302 fmode = octal!660; in version()
|
| H A D | meta.d | 1029 import std.conv : to, octal; 1038 static assert(octal!dec == oct); 1039 static assert(octal!str == oct);
|
| H A D | zip.d | 146 import std.conv : to, octal; 285 am.fileAttributes = octal!100644; in version() 286 assert(am._externalAttributes == octal!100644 << 16); in version()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | conv.d | 2515 assert(parse!int(s = "765", 8) == octal!765); 3941 template octal(string num) 3945 enum octal = octal!int(num); 3947 enum octal = octal!long(num); 3949 enum octal = octal!uint(num); 3951 enum octal = octal!ulong(num); 3957 template octal(alias decimalInteger) 3960 enum octal = octal!(typeof(decimalInteger))(to!string(decimalInteger)); 3967 auto x = octal!177; 3969 enum y = octal!160; [all …]
|
| H A D | mmfile.d | 105 fmode = octal!660; in version() 112 fmode = octal!660; in version() 298 fmode = octal!660; in version() 305 fmode = octal!660; in version()
|
| H A D | zip.d | 100 import std.conv : to, octal; 184 am.fileAttributes = octal!100644; in version() 185 assert(am._externalAttributes == octal!100644 << 16); in version()
|
| H A D | meta.d | 1170 import std.conv : to, octal; 1179 static assert(octal!dec == oct); 1180 static assert(octal!str == oct);
|
| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | varmod-to-separator.mk | 139 # The separator can be given as octal number. 141 . warning The separator \012 is not interpreted in octal ASCII. 144 # The octal number can have as many digits as it wants. 194 # The character number is interpreted as octal number by default. 195 # The digit '8' is not an octal digit though. 198 . warning The separator \8 is accepted even though it is not octal. 200 . warning The separator \8 is accepted even though it is not octal. 203 # Trailing characters after the octal character number are rejected. 236 # After the backslash, only n, t, an octal number, or x and a hexadecimal 245 # interpreted an "octal escap [all...] |
| /netbsd-src/external/gpl2/texinfo/dist/info/ |
| H A D | infokey.c | 421 octal, in compile() enumerator 549 seqstate = octal; in compile() 589 case octal: in compile() 605 if (seqstate != octal) in compile()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-size/ |
| H A D | llvm-size.cpp | 77 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator 80 cl::values(clEnumValN(octal, "8", "Print size in octal"), 87 cl::values(clEnumValN(octal, "o", "Print size in octal"), 173 case octal: in getRadixFmt() 505 << (Radix == octal ? "oct" : "dec") in printObjectSectionSizes() 518 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t" in printObjectSectionSizes() 869 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t" in printBerkeleyTotals()
|
| /netbsd-src/external/mpl/bind/dist/tests/dns/testdata/master/ |
| H A D | master11.data | 3 ; we can catch cases where it is incorrectly treated as a octal
|
| /netbsd-src/external/historical/nawk/dist/testdir/ |
| H A D | NOTES | 1 Need some tests for octal, hex, various string escapes.
|
| /netbsd-src/games/quiz/datfiles/ |
| H A D | seq-hard | 10 1,4,11,20,31,44,61:100{(n**2 base 8)}:[Squares|n[**|^]2} base 8|octal squares
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | claris | 13 #null to byte 1000 octal
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptTokenList.def | 17 TOKEN(Int) // Integer (decimal, octal or hexadecimal).
|
| /netbsd-src/external/gpl2/diffutils/dist/ |
| H A D | NEWS | 107 where O is a string of 1, 2, or 3 octal digits, stands for the 108 character with octal code O. E.g. %c'\0' stands for a null character. 115 The character C, or with octal code O, as above.
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/doc/ |
| H A D | rt-ngettext.texi | 26 @samp{\v}, @samp{\\}, and @samp{\} followed by one to three octal digits, are
|
| H A D | rt-gettext.texi | 27 @samp{\v}, @samp{\\}, and @samp{\} followed by one to three octal digits, are
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/ |
| H A D | llvm-strings.rst | 82 octal, decimal and hexadecimal respectively.
|
| H A D | llvm-size.rst | 143 ``10`` (the default) and ``16`` for octal, decimal and hexadecimal output
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| H A D | vis.hin | 54 #define VIS_OCTAL 0x01 /* use octal \ddd format */
|