HomeSort by relevance Sort by last modified time
    Searched refs:octal (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
cons.s 5 .global binary, octal, hex, field
7 octal: .word 011q, 12q, 013Q label
cons.d 12 0+002 <octal>:
consfar.d 14 0+002 <octal>:
  /toolchain/binutils/binutils-2.25/binutils/
size.c 46 decimal, octal, hex
83 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
181 radix = octal;
209 radix = octal;
218 hexa or octal if requested by `-x' or `-o'.
252 printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
419 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
432 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
476 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" :
493 printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t")
45 decimal, octal, hex enumerator in enum:__anon115605
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-size/
llvm-size.cpp 50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator in enum:RadixTy
58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
80 /// including the leading 0x or 0 for hexadecimal and octal respectively.
98 case octal:
226 fmt << "%7" << (Radix == octal ? "llo" : "llu") << " "
304 << (Radix == octal ? "oct" : "dec")
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
scanner_test.go 274 {"0123456789", "malformed octal constant", 10, 1},
277 {"var a, b = 08, 07\n", "malformed octal constant", 13, 1},
288 {`'\00'`, "non-octal character in escape sequence: '", 4, 1},
289 {`'\377' /*`, "comment not terminated", 7, 1}, // valid octal escape
290 {`'\378`, "non-octal character in escape sequence: 8", 4, 1},
291 {`'\400'`, "octal escape value > 255: 256", 5, 1},
308 {`"\00"`, "non-octal character in escape sequence: \"", 4, 1},
309 {`"\377" /*`, "comment not terminated", 7, 1}, // valid octal escape
310 {`"\378"`, "non-octal character in escape sequence: 8", 4, 1},
311 {`"\400"`, "octal escape value > 255: 256", 5, 1}
    [all...]
scanner.go 384 // decimal 0, octal, or float
393 // octal
395 s.error("malformed octal constant")
634 name = "octal"
654 s.error(fmt.Sprintf("octal escape value > 255: %d", x))
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner_test.go 274 {"0123456789", "malformed octal constant", 10, 1},
277 {"var a, b = 08, 07\n", "malformed octal constant", 13, 1},
288 {`'\00'`, "non-octal character in escape sequence: '", 4, 1},
289 {`'\377' /*`, "comment not terminated", 7, 1}, // valid octal escape
290 {`'\378`, "non-octal character in escape sequence: 8", 4, 1},
291 {`'\400'`, "octal escape value > 255: 256", 5, 1},
308 {`"\00"`, "non-octal character in escape sequence: \"", 4, 1},
309 {`"\377" /*`, "comment not terminated", 7, 1}, // valid octal escape
310 {`"\378"`, "non-octal character in escape sequence: 8", 4, 1},
311 {`"\400"`, "octal escape value > 255: 256", 5, 1}
    [all...]
scanner.go 384 // decimal 0, octal, or float
393 // octal
395 s.error("malformed octal constant")
634 name = "octal"
654 s.error(fmt.Sprintf("octal escape value > 255: %d", x))
  /external/iproute2/tc/
emp_ematch.l 91 <lexstr>\\[0-7]{1,3} { /* octal escape sequence */
96 fprintf(stderr, "error: octal escape sequence" \
103 <lexstr>\\[0-9]+ { /* catch wrong octal escape seq. */
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
lexer.py 124 # Don't allow octal constants (even invalid octal).
157 # Don't allow ordinal values in octal (even invalid octal, like 09) or
213 msg = "Octal values not allowed"
230 msg = "Octal and hexadecimal ordinal values not allowed"
  /external/v8/src/
conversions-inl.h 636 // It could be an explicit octal value.
670 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
678 // Will later check if it's an octal in the buffer.
683 octal = octal && *current < '8';
689 octal = false;
693 if (octal && !allow_trailing_junk) return JunkStringValue();
694 if (octal) goto parsing_done;
706 // octal = false;
743 if (octal) return JunkStringValue()
    [all...]
  /external/skia/src/pdf/
SkPDFUtils.cpp 467 uint8_t octal[4]; local
468 octal[0] = '\\';
469 octal[1] = '0' + ( c >> 6 );
470 octal[2] = '0' + ((c >> 3) & 0x07);
471 octal[3] = '0' + ( c & 0x07);
472 wStream->write(octal, 4);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
compat.py 29 def octal(lit): function
53 def octal(lit): function
  /prebuilts/go/darwin-x86/src/math/big/
intconv.go 58 // 'b' (binary), 'o' (octal), 'd' (decimal), 'x' (lowercase
62 // control, '#' for leading zero in octal and for hexadecimal,
106 case 'o': // octal
231 // the scanned number. It accepts the formats 'b' (binary), 'o' (octal),
natconv.go 77 // If fracOk is set, an octal prefix is ignored (a leading ``0'' simply
210 // there was only the octal prefix 0 (possibly followed by digits > 7);
215 // there was neither a mantissa digit nor the octal prefix 0
  /prebuilts/go/linux-x86/src/math/big/
intconv.go 58 // 'b' (binary), 'o' (octal), 'd' (decimal), 'x' (lowercase
62 // control, '#' for leading zero in octal and for hexadecimal,
106 case 'o': // octal
231 // the scanned number. It accepts the formats 'b' (binary), 'o' (octal),
natconv.go 77 // If fracOk is set, an octal prefix is ignored (a leading ``0'' simply
210 // there was only the octal prefix 0 (possibly followed by digits > 7);
215 // there was neither a mantissa digit nor the octal prefix 0
  /prebuilts/go/darwin-x86/src/archive/tar/
strconv.go 69 // encoding. Unlike octal encoding, base-256 encoding does not require that the
80 // parseNumeric parses the input as being encoded in either base-256 or octal.
120 // Normal case is base-8 (octal) format.
writer.go 72 // There is room for 11 octal digits (33 bits) of mtime.
129 // Try octal first.
136 // If it is too long for octal, and PAX is preferred, use a PAX header.
  /prebuilts/go/linux-x86/src/archive/tar/
strconv.go 69 // encoding. Unlike octal encoding, base-256 encoding does not require that the
80 // parseNumeric parses the input as being encoded in either base-256 or octal.
120 // Normal case is base-8 (octal) format.
writer.go 72 // There is room for 11 octal digits (33 bits) of mtime.
129 // Try octal first.
136 // If it is too long for octal, and PAX is preferred, use a PAX header.
  /external/llvm/tools/llvm-size/
llvm-size.cpp 71 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
78 cl::values(clEnumValN(octal, "o", "Print size in octal"),
155 /// leading 0x or 0 for hexadecimal and octal respectively.
166 case octal:
466 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
476 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
    [all...]
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 117 {Comment, "// octal ints"},
352 // the floats in the source look like (illegal) octal ints
473 testError(t, `01238`, "<input>:1:6", "illegal octal number", Int)
474 testError(t, `01238123`, "<input>:1:9", "illegal octal number", Int)
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 117 {Comment, "// octal ints"},
352 // the floats in the source look like (illegal) octal ints
473 testError(t, `01238`, "<input>:1:6", "illegal octal number", Int)
474 testError(t, `01238123`, "<input>:1:9", "illegal octal number", Int)

Completed in 711 milliseconds

1 2 3 4