/freebsd/usr.bin/hexdump/ |
H A D | od.1 | 33 .Nd octal, decimal, hex, ASCII dump 61 which specify decimal, octal, hexadecimal 68 Output octal shorts. 72 Output octal bytes. 127 Output octal ints. 156 represented as 3-digit octal character codes, except the following 188 octal
|
H A D | hexdump.1 | 33 .Nd ASCII, decimal, hexadecimal, octal dump 63 .Em One-byte octal display . 66 in octal, per line. 98 .Em Two-byte octal display . 101 input data, in octal, per line. 118 is interpreted as an octal number. 225 as decimal, octal or hexadecimal respectively. 234 octal, except for those representable by standard escape notation
|
/freebsd/contrib/bmake/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. 199 # The character number is interpreted as octal number by default. 200 # The digit '8' is not an octal digit though. 204 . warning The separator \8 is accepted even though it is not octal. 206 . warning The separator \8 is accepted even though it is not octal. 209 # Trailing characters after the octal character number are rejected. 246 # After the backslash, only n, t, an octal number, or x and a hexadecimal 256 # interpreted an "octal escape" as decimal if the first digit was not '0'. [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
H A D | tst.constants.d | 30 * octal or hexadecimal 43 octal = 012345; 47 printf("%d %d %d %d", decimal, octal, hexadecimal_1, hexadecimal_2); 48 printf("%d %o %x %x", decimal, octal, hexadecimal_1, hexadecimal_2);
|
/freebsd/usr.bin/tr/ |
H A D | tr.1 | 138 A backslash followed by 1, 2 or 3 octal digits represents a character 140 To follow an octal sequence with a digit as a character, left zero-pad 141 the octal sequence to the full 3 octal digits. 157 For non-octal range endpoints 161 If either or both of the range endpoints are octal sequences, it 266 has a leading zero, it is interpreted as an octal value, otherwise,
|
H A D | str.c | 238 int stopval, octal; in genrange() local 244 octal = 0; in genrange() 247 stopval = backslash(s, &octal); in genrange() 259 if (octal || was_octal || MB_CUR_MAX > 1) { in genrange() 335 * Translate \??? into a character. Up to 3 octal digits, if no digits either
|
/freebsd/usr.bin/bintrans/ |
H A D | uuencode.format.5 | 54 is followed by a mode (in octal), 67 be determined by subtracting the character space (octal 40) 73 space (octal 40) to make the characters printing. 84 backquote (octal 140) character.
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | tar.5 | 105 File mode, stored as an octal number in ASCII. 107 User id and group id of owner, as octal numbers in ASCII. 109 Size of file, as octal number in ASCII. 116 Modification time of file, as an octal number in ASCII. 122 Header checksum, stored as an octal number in ASCII. 125 This field should be stored as six octal digits followed by a null and a space 333 11 octal digits, reserving the twelfth byte for a trailing 335 Allowing 12 octal digits allows file sizes up to 64 GB. 354 Another early GNU extension allowed base-64 values rather than octal. 394 decimal, not octal [all...] |
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 248 // Octal escapes. in ProcessCharEscape() 252 // Octal escapes are a series of octal digits with maximum length 3. in ProcessCharEscape() 851 /// octal-constant integer-suffix 856 /// octal-literal ud-suffix 862 /// octal-constant: 864 /// octal-constant octal-digit 881 /// octal-digit: 1213 /// ParseDecimalOrOctalCommon - This method is called for decimal or octal 1311 /// of the number is found to be a zero. This means it is either an octal 1421 // floating point constant, the radix will change to 10. Octal floating in ParseNumberStartingWithZero() [all …]
|
/freebsd/contrib/file/src/ |
H A D | is_tar.c | 54 file_private int from_oct(const char *, size_t); /* Decode octal number */ 152 * Quick and dirty octal conversion. 154 * Result is -1 if the field is invalid (all blank, or non-octal). 170 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */ in from_oct()
|
/freebsd/share/man/man9/ |
H A D | printf.9 | 95 The base value is the output base (radix) expressed as an octal value; 96 for example, \e10 gives octal and \e20 gives hexadecimal. 99 .Em octal
|
/freebsd/contrib/netbsd-tests/bin/sh/ |
H A D | t_shift.sh | 136 # That is not hex (octal will be treated as if it were decimal, a leading 0 137 # will simply be ignored - we test for this by giving an "octal" value that 138 # would be OK if parsed as octal, but not if parsed (correctly) as decimal) 151 # there are 9 args set, 010 is 8 if parsed octal, 10 decimal
|
/freebsd/lib/libfigpar/ |
H A D | string_m.c | 162 * \0NNN character with octal value NNN (0 to 3 digits) 163 * \N character with octal value N (0 thru 7) 217 case '0': /* octal value (0 to 3 digits)(\0NNN) */ in strexpand() 220 /* verify next three characters are octal */ in strexpand() 236 default: /* single octal (\0..7) or unknown sequence */ in strexpand()
|
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/ |
H A D | lltc,ltc1660.yaml | 8 title: Linear Technology Micropower octal 8-Bit and 10-Bit DACs 14 Bindings for the Linear Technology Micropower octal 8-Bit and 10-Bit DAC.
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/ |
H A D | llvm-strings.cpp | 72 enum radix { none, octal, hexadecimal, decimal }; 98 case octal: in strings() 156 Radix = octal; in main() 163 "(octal), 'd' (decimal), 'x' (hexadecimal)"); in main() 79 enum radix { none, octal, hexadecimal, decimal }; global() enumerator
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | unvis.c | 77 #define S_OCTAL2 5 /* octal digit 2 */ 78 #define S_OCTAL3 6 /* octal digit 3 */ 211 case S_OCTAL2: /* second possible octal digit */ in rk_unvis() 226 case S_OCTAL3: /* third possible octal digit */ in rk_unvis()
|
/freebsd/usr.bin/cmp/ |
H A D | cmp.1 | 82 byte values (octal) for each difference. 110 or octal value by preceding it with a leading ``0x'' or ``0''. 153 Show the byte number (decimal) and differing byte (octal):
|
/freebsd/bin/chflags/ |
H A D | chflags.1 | 97 will also be printed, in octal notation. 102 The flags are specified as an octal number or a comma separated list 156 A few of the octal values include:
|
/freebsd/contrib/libc-vis/ |
H A D | vis.3 | 403 is an octal digit, the latter representation is used to 409 Use a three digit octal sequence. 414 represents an octal digit. 419 backslash sequences use a three digit octal sequence.
|
/freebsd/usr.sbin/nmtree/ |
H A D | mtree.5 | 49 octal digits. 51 followed by three octal digits should be converted into the 185 The current file's permissions as a numeric (octal) or symbolic
|
/freebsd/contrib/dialog/samples/copifuncs/ |
H A D | copi.ifmcfg2 | 56 # \NNN (where N is an octal digit) - character with octal code NNN
|
/freebsd/sys/contrib/dev/acpica/components/utilities/ |
H A D | utstrtoul64.c | 193 * In ACPI, the only place where octal numbers are supported is within 196 * support (explicit/implicit) for octal string conversions. 215 * integer width. Supports Decimal, Hex, and Octal strings. 264 * 2) Check for an octal constant, defined to be a leading zero in AcpiUtStrtoul64() 265 * followed by sequence of octal digits (0-7) in AcpiUtStrtoul64() 331 * Octal strings are not supported, as per the ACPI specification. 418 * Base is either 10 (default) or 16 (with 0x prefix). Octal (base 8) strings
|
/freebsd/share/doc/usd/12.vi/viapwh/ |
H A D | vi.apwh.ms | 88 escape, octal 033 90 carriage return, ^M, octal 015 92 linefeed ^J, octal 012 94 newline, ^J, octal 012 (same as linefeed) 96 backspace, ^H, octal 010 98 tab, ^I, octal 011 100 bell, ^G, octal 07 102 formfeed, ^L, octal 014 104 space, octal 040 106 delete, octal 0177
|
/freebsd/lib/libc/gen/ |
H A D | getcap.3 | 473 it is interpreted as an octal number. 481 .Bl -column "\e\|X,X\e\|X" "(ASCII octal nnn)" 492 \e\|nnn (ASCII octal nnn) 495 A `\|\e' may be followed by up to three octal digits directly specifies
|
/freebsd/contrib/ncurses/man/ |
H A D | scr_dump.5 | 74 0x8888 (octal \*(``\e210\e210\*('') 82 0x88888888 (octal \*(``\e210\e210\e210\e210\*('') 201 That octal number in bytes is 001, 035. 374 The first four octal escapes are actually nonprinting characters,
|