Searched refs:octal (Results 1 - 9 of 9) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/llvm-size/
H A Dllvm-size.cpp50 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")
/external/skia/src/pdf/
H A DSkPDFUtils.cpp464 uint8_t octal[4]; local
465 octal[0] = '\\';
466 octal[1] = '0' + ( c >> 6 );
467 octal[2] = '0' + ((c >> 3) & 0x07);
468 octal[3] = '0' + ( c & 0x07);
469 wStream->write(octal, 4);
/external/iproute2/tc/
H A Demp_ematch.l91 <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/v8/src/
H A Dconversions-inl.h588 // It could be an explicit octal value.
622 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
630 // Will later check if it's an octal in the buffer.
635 octal = octal && *current < '8';
641 octal = false;
645 if (octal && !allow_trailing_junk) return JunkStringValue();
646 if (octal) goto parsing_done;
658 // octal = false;
695 if (octal) retur
[all...]
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp71 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) << " "
/external/v8/src/regexp/
H A Dregexp-parser.cc449 // With /u, decimal escape with leading 0 are not parsed as octal.
452 uc32 octal = ParseOctalLiteral(); local
453 builder->AddCharacter(octal);
979 // up to three octal digits with a value below 256.
1301 // to the specification) as a 1..3 digit octal character code.
1303 // With /u, decimal escape is not interpreted as octal character code.
/external/v8/src/parsing/
H A Dscanner.cc913 // Anything except '\0' is an octal escape sequence, illegal in strict mode.
914 // Remember the position of octal escape sequences so that an error
916 // We don't report the error immediately, because the octal escape can
1077 int start_pos = source_pos(); // For reporting octal positions.
1089 // an octal number.
1105 // we must have at least one octal digit after 'o'/'O'
1122 // (possible) octal number
1522 // octal esacpes in strict mode.
H A Dparser-base.h857 // Checks whether an octal literal was last seen between beg_pos and end_pos.
861 Scanner::Location octal = scanner()->octal_position(); local
862 if (octal.IsValid() && beg_pos <= octal.beg_pos &&
863 octal.end_pos <= end_pos) {
864 impl()->ReportMessageAt(octal, message);
/external/dtc/tests/
H A Drun_tests.sh386 run_wrap_error_test $DTC bad-octal-literal.dts

Completed in 218 milliseconds