Home
last modified time | relevance | path

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

12345678910>>...19

/external/swiftshader/third_party/llvm-7.0/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/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/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
DTarUtils.java84 * Parse an octal string from a buffer.
101 * @return The long value of the octal string.
155 * octal number as per the parseOctal function above.
160 * @return The long value of the octal or binary string.
162 * missing or an invalid byte is detected in an octal number, or
372 * Fill buffer with unsigned octal number, padded with leading zeroes.
374 * @param value number to convert to octal - treated as unsigned
396 … (value+"="+Long.toOctalString(value)+ " will not fit in octal number buffer of length "+length); in formatUnsignedOctalString()
406 * Write an octal integer into a buffer.
409 * the value as an octal string with leading zeros.
[all …]
DTarConstants.java73 * be expressed in octal char notation (that's 7 sevens, octal).
96 * which can be expressed in octal char notation (that's 11 sevens, octal).
/external/libchrome/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/deqp-deps/glslang/Test/
Dhlsl.numericsuffixes.frag14 int r07 = 071; // octal
15 uint r08 = 072u; // unsigned octal
22 ps_output.color = r07; // gets 71 octal = 57 decimal
/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-strings/
Dllvm-strings.cpp49 enum radix { none, octal, hexadecimal, decimal }; enumerator
52 cl::values(clEnumValN(octal, "o", "octal"),
67 case octal: in strings()
/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/icu/icu4c/source/i18n/
Ddouble-conversion.cpp794 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; in StringToIeee() local
802 // Will later check if it's an octal in the buffer. in StringToIeee()
807 octal = octal && *current < '8'; in StringToIeee()
813 octal = false; in StringToIeee()
817 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
818 if (octal) goto parsing_done; in StringToIeee()
830 // octal = false; in StringToIeee()
870 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
871 if (octal) goto parsing_done; in StringToIeee()
932 if (octal) { in StringToIeee()
/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/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ar/
DArArchiveEntry.java38 * 40 47 File mode Octal 8
71 private static final int DEFAULT_MODE = 33188; // = (octal) 0100644
78 * <p>Sets userId and groupId to 0, the octal file mode to 644 and
/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/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/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/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/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
DPpScanner.cpp407 parseContext.ppError(ppToken->loc, "octal and hex sequences not supported", "\\", ""); in characterLiteral()
627 …// could be octal integer or floating point, speculative pursue octal until it must be floating po… in scan()
636 // see how much octal-like stuff we can read in scan()
668 // wasn't a float, so must be octal... in scan()
670 pp->parseContext.ppError(ppToken->loc, "octal literal digit too large", "", ""); in scan()
714 pp->parseContext.ppError(ppToken->loc, "octal literal too big", "", ""); in scan()
719 "64-bit octal literal"); in scan()
721 Num_Int64_Extensions, Int64_Extensions, "64-bit octal literal"); in scan()
729 "16-bit octal literal"); in scan()
731 Num_Int16_Extensions, Int16_Extensions, "16-bit octal literal"); in scan()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DStringEscapeUtils.java328 * Translate escaped octal Strings back to their octal values.
332 * Note that this currently only supports the viable range of octal for Java; namely
368 …* Checks if the given char is an octal digit. Octal digits are the character representations of th…
/external/android-clat/
Dclatd.h51 * parses a string as a decimal/hex/octal signed integer
62 * parses a string as a decimal/hex/octal unsigned integer
/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/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..
43 Note that \e0dd is always an octal code. The treatment of backslash followed by
/external/python/cpython3/Lib/
Dsre_parse.py326 # octal escape (up to three digits)
330 raise source.error('octal escape value %s outside of '
374 # octal escape
378 # octal escape *or* decimal group reference (sigh)
383 # got three octal digits; this is an octal escape
387 raise source.error('octal escape value %s outside of '
391 # not an octal escape, so this is a group reference
1014 raise s.error('octal escape value %s outside of '

12345678910>>...19