Home
last modified time | relevance | path

Searched full:octal (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/external/llvm/test/tools/llvm-nm/X86/
Dradix.s4 //RUN: llvm-nm -radix=o %t.o | FileCheck --check-prefix="OCTAL" %s
216 //OCTAL: 0000000000000000 B i0
217 //OCTAL: 0000000000000000 D i1
218 //OCTAL: 0000000000000044 D i10
219 //OCTAL: 0000000000000050 D i11
220 //OCTAL: 0000000000000054 D i12
221 //OCTAL: 0000000000000060 D i13
222 //OCTAL: 0000000000000064 D i14
223 //OCTAL: 0000000000000070 D i15
224 //OCTAL: 0000000000000074 D i16
[all …]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
Dlexer.py124 # 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/clang/lib/Lex/
DLiteralSupport.cpp167 // Octal escapes. in ProcessCharEscape()
171 // Octal escapes are a series of octal digits with maximum length 3. in ProcessCharEscape()
458 /// octal-constant integer-suffix
463 /// octal-literal ud-suffix
469 /// octal-constant:
471 /// octal-constant octal-digit
488 /// octal-digit:
691 /// ParseDecimalOrOctalCommon - This method is called for decimal or octal
776 /// of the number is found to be a zero. This means it is either an octal
874 // floating point constant, the radix will change to 10. Octal floating in ParseNumberStartingWithZero()
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-size/
Dllvm-size.cpp50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator
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: in PrintObjectSectionSizes()
226 fmt << "%7" << (Radix == octal ? "llo" : "llu") << " " in PrintObjectSectionSizes()
304 << (Radix == octal ? "oct" : "dec") in main()
/external/v8/src/
Dconversions-inl.h636 // It could be an explicit octal value. in InternalStringToDouble()
670 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0; in InternalStringToDouble() local
678 // Will later check if it's an octal in the buffer. in InternalStringToDouble()
683 octal = octal && *current < '8'; in InternalStringToDouble()
689 octal = false; in InternalStringToDouble()
693 if (octal && !allow_trailing_junk) return JunkStringValue(); in InternalStringToDouble()
694 if (octal) goto parsing_done; in InternalStringToDouble()
706 // octal = false; in InternalStringToDouble()
743 if (octal) return JunkStringValue(); in InternalStringToDouble()
799 if (octal) { in InternalStringToDouble()
/external/iproute2/tc/
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/toybox/tests/
Decho.test26 # Octal formatting tests
27 testcmd "-e octal values" \
Dprintf.test20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
/external/regex-re2/re2/
Dre2.h167 // PARSING HEX/OCTAL/C-RADIX NUMBERS
172 // Octal(), or CRadix() to interpret the text in another base. The
179 // RE2::Octal(&a), RE2::Hex(&b), RE2::CRadix(&c), RE2::CRadix(&d));
684 static inline Arg Octal(short* x);
685 static inline Arg Octal(unsigned short* x);
686 static inline Arg Octal(int* x);
687 static inline Arg Octal(unsigned int* x);
688 static inline Arg Octal(long* x);
689 static inline Arg Octal(unsigned long* x);
690 static inline Arg Octal(long long* x);
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormatEscaper.java50 * using 3-digit octal sequences.
91 * using 3-digit octal sequences.
125 * individually as a 3-digit octal escape. Yes, it's weird.
/external/clang/test/Lexer/
Dcxx1y_digit_separators.cpp17 int d = 0'1234; // ok, octal
18 int e = 0'b1010; // expected-error {{digit 'b' in octal constant}}
19 int f = 0b'1010; // expected-error {{invalid digit 'b' in octal}}
/external/toybox/toys/posix/
Dprintf.c19 (% escapes for cdeEfgGiosuxX, \ escapes for abefnrtv0 or \OCTAL or \xHEX).
44 // 0x12 hex escapes have 1-2 digits, \123 octal escapes have 1-3 digits. in handle_slash()
52 // Not a hex or octal escape? (This catches trailing \) in handle_slash()
/external/squashfs-tools/RELEASE-READMEs/
DREADME-4.1157 mode is the octal mode specifier, similar to that expected by chmod.
218 mode is the octal mode specifier, similar to that expected by chmod.
238 mode is the octal mode specifier, similar to that expected by chmod.
255 mode is the octal mode specifier, similar to that expected by chmod.
/external/pcre/dist2/doc/
Dpcre2syntax.334 \e0dd character with octal code 0dd
35 \eddd character with octal code ddd, or backreference
36 \eo{ddd..} character with octal code ddd..
42 Note that \e0dd is always an octal code. The treatment of backslash followed by
/external/python/cpython2/Modules/
Dfuture_builtins.c23 oct(arg) -- Returns the octal representation of an integer.\n\
53 Return the octal representation of an integer or long integer.");
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
DIntTagTest.java32 assertEquals(new Integer(685230), getMapValue("octal: 02472256", "octal")); in testInt()
/external/skia/src/pdf/
DSkPDFUtils.cpp467 uint8_t octal[4]; in WriteString() local
468 octal[0] = '\\'; in WriteString()
469 octal[1] = '0' + ( c >> 6 ); in WriteString()
470 octal[2] = '0' + ((c >> 3) & 0x07); in WriteString()
471 octal[3] = '0' + ( c & 0x07); in WriteString()
472 wStream->write(octal, 4); in WriteString()
/external/python/cpython2/Lib/
Dsre_parse.py255 # octal escape (up to three digits)
286 # octal escape
291 # octal escape *or* decimal group reference (sigh)
296 # got three octal digits; this is an octal escape
299 # not an octal escape, so this is a group reference
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dcompat.py29 def octal(lit): function
53 def octal(lit): function
/external/ltp/testcases/commands/nm/
Dnm0180 tst_res TFAIL "Got non-octal symbol values with -f"
83 tst_res TPASS "Got an octal symbol values with -f"
/external/clang/test/Preprocessor/
Dline-directive.c85 #line 010 // expected-warning {{#line directive interprets number as decimal, not octal}}
88 # 020 // expected-warning {{GNU line marker directive interprets number as decimal, not octal}}
/external/snakeyaml/src/test/resources/specification/
Dexample2_19.yaml4 octal: 014
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-02-19.data4 octal: 014
Dconstruct-int.data3 octal: 02472256
/external/llvm/test/YAMLParser/
Dspec-02-19.test6 octal: 014

12345678910>>...15