| /src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
| llvm-strings.cpp | 48 enum radix { none, octal, hexadecimal, decimal }; enumerator in enum:radix 51 cl::values(clEnumValN(octal, "o", "octal"), 69 case octal:
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-size/ |
| llvm-size.cpp | 77 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy 80 cl::values(clEnumValN(octal, "8", "Print size in octal"), 87 cl::values(clEnumValN(octal, "o", "Print size in octal"), 162 /// leading 0x or 0 for hexadecimal and octal respectively. 173 case octal: 505 << (Radix == octal ? "oct" : "dec") 518 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t" 869 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t [all...] |
| /src/external/gpl2/texinfo/dist/info/ |
| infokey.c | 326 2. A backslash \ followed by one, two, or three octal 423 octal, 428 char ocnt = 0; /* used if state == get_keyseq && seqstate == octal */ 551 seqstate = octal; 591 case octal: 607 if (seqstate != octal) 421 octal, enumerator in enum:__anon9528
|
| /src/external/gpl3/binutils/dist/binutils/ |
| size.c | 46 decimal, octal, hex 95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\ 198 radix = octal; 229 radix = octal; 238 hexa or octal if requested by `-x' or `-o'. 277 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), 441 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), 451 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), 501 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" : 524 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx") 45 decimal, octal, hex enumerator in enum:__anon9928 [all...] |
| /src/external/gpl3/binutils.old/dist/binutils/ |
| size.c | 46 decimal, octal, hex 95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\ 198 radix = octal; 229 radix = octal; 238 hexa or octal if requested by `-x' or `-o'. 277 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"), 441 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), 451 : radix == octal ? "0%" PRIo64 : "0x%" PRIx64), 501 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" : 524 printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx") 45 decimal, octal, hex enumerator in enum:__anon11408 [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| charset.c | 562 char octal[5]; 564 xsnprintf (octal, sizeof (octal), "\\%.3o", *inp & 0xff); 565 obstack_grow_str (output, octal); 555 char octal[5]; local
|
| valprint.c | 1558 /* A helper for print_octal_chars that emits a single octal digit, 1571 Print it in octal on stream or format it in buf. */ 1581 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track 1588 * Octal side: 0 1 carry 3 4 carry ... 1665 error (_("Internal error in octal conversion;")); 1715 error (_("Internal error in octal conversion;")); 2231 char octal[30]; 2236 /* If the value fits in 3 octal digits, print it that 2240 xsnprintf (octal, sizeof (octal), "\\%.3o" 2230 char octal[30]; local 2256 char octal[5]; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| charset.c | 563 char octal[5]; 565 xsnprintf (octal, sizeof (octal), "\\%.3o", *inp & 0xff); 566 obstack_grow_str (output, octal); 556 char octal[5]; local
|
| valprint.c | 1484 /* A helper for print_octal_chars that emits a single octal digit, 1497 Print it in octal on stream or format it in buf. */ 1507 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track 1514 * Octal side: 0 1 carry 3 4 carry ... 1591 error (_("Internal error in octal conversion;")); 1641 error (_("Internal error in octal conversion;")); 2157 char octal[30]; 2162 /* If the value fits in 3 octal digits, print it that 2166 xsnprintf (octal, sizeof (octal), "\\%.3o" 2156 char octal[30]; local 2182 char octal[5]; local [all...] |
| /src/external/cddl/osnet/dev/dtrace/x86/ |
| dis_tables.c | 5381 * Respect the "octal" flag. "Small negative" is defined as "in the 5399 int octal = dis->d86_flags & DIS_F_OCTAL; local 5407 octal ? "-0%llo" : "-0x%llx", (-sv) & mask); 5412 octal ? "+0%llo" : "+0x%llx", usv & mask); 5415 octal ? "0%llo" : "0x%llx", usv & mask);
|