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

1 2

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-strings/
llvm-strings.cpp 49 enum radix { none, octal, hexadecimal, decimal }; enumerator in enum:radix
52 cl::values(clEnumValN(octal, "o", "octal"),
67 case octal:
  /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")
  /external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
PpScanner.cpp 407 parseContext.ppError(ppToken->loc, "octal and hex sequences not supported", "\\", "");
627 // could be octal integer or floating point, speculative pursue octal until it must be floating point
636 // see how much octal-like stuff we can read
668 // wasn't a float, so must be octal...
670 pp->parseContext.ppError(ppToken->loc, "octal literal digit too large", "", "");
714 pp->parseContext.ppError(ppToken->loc, "octal literal too big", "", "");
719 "64-bit octal literal");
721 Num_Int64_Extensions, Int64_Extensions, "64-bit octal literal");
729 "16-bit octal literal")
    [all...]
  /external/icu/icu4c/source/i18n/
double-conversion.cpp 794 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0;
802 // Will later check if it's an octal in the buffer.
807 octal = octal && *current < '8';
813 octal = false;
817 if (octal && !allow_trailing_junk) return junk_string_value_;
818 if (octal) goto parsing_done;
830 // octal = false;
870 if (octal && !allow_trailing_junk) return junk_string_value_;
871 if (octal) goto parsing_done
    [all...]
  /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/libchrome/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/syzkaller/vendor/golang.org/x/net/http2/
gotrack.go 95 // Look for octal, hex prefix.
  /external/v8/src/
conversions.cc 641 // It could be an explicit octal value.
669 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
677 // Will later check if it's an octal in the buffer.
682 octal = octal && *current < '8';
688 octal = false;
692 if (octal && !allow_trailing_junk) return JunkStringValue();
693 if (octal) goto parsing_done;
705 // octal = false;
742 if (octal) return JunkStringValue()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/
llvm-size.cpp 73 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
80 cl::values(clEnumValN(octal, "o", "Print size in octal"),
165 /// leading 0x or 0 for hexadecimal and octal respectively.
176 case octal:
483 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
493 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
    [all...]
  /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...]
  /external/python/cpython3/Lib/pydoc_data/
topics.py     [all...]
  /external/curl/docs/cmdline-opts/
quote.d 34 mode operand is an octal integer mode number.
  /development/vndk/tools/sourcedr/blueprint/tests/
test_lexer.py 226 literal with an octal escape sequence."""
  /external/golang-protobuf/protoc-gen-go/generator/
name_test.go 119 // variable length octal escapes
  /external/skia/src/pdf/
SkPDFTypes.cpp 137 uint8_t octal[4] = { '\\', local
141 wStream->write(octal, 4);
  /external/skqp/src/pdf/
SkPDFTypes.cpp 137 uint8_t octal[4] = { '\\', local
141 wStream->write(octal, 4);
  /external/one-true-awk/
FIXES 664 fixed appalling but apparently unimportant bug in parsing octal
892 Limited octal to octal digits; \8 and \9 are not octal.
    [all...]
  /external/v8/src/regexp/
regexp-parser.cc 402 // With /u, decimal escape with leading 0 are not parsed as octal.
405 uc32 octal = ParseOctalLiteral(); local
406 builder->AddCharacter(octal);
    [all...]
  /external/golang-protobuf/proto/
text_parser_test.go 230 // Number in octal
text.go 556 // we treat the string as a byte sequence, and we use octal escapes.
text_parser.go 287 return "", "", fmt.Errorf(`\%s contains non-octal digits`, ss)
  /external/python/cpython3/Lib/test/
test_re.py 180 r'octal escape value \400 outside of '
183 r'octal escape value \777 outside of '
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cLayoutBindingTests.cpp 366 octal, enumerator in enum:glcts::IntegerConstant::Literals
393 case octal:
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
text.go 556 // we treat the string as a byte sequence, and we use octal escapes.
text_parser.go 287 return "", "", fmt.Errorf(`\%s contains non-octal digits`, ss)

Completed in 1159 milliseconds

1 2