Home
last modified time | relevance | path

Searched refs:octal (Results 1 – 25 of 106) sorted by relevance

12345

/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"),
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.h670 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0; in InternalStringToDouble() local
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()
743 if (octal) return JunkStringValue(); in InternalStringToDouble()
799 if (octal) { in InternalStringToDouble()
/external/skia/src/pdf/
DSkPDFUtils.cpp308 uint8_t octal[4]; in WriteString() local
309 octal[0] = '\\'; in WriteString()
310 octal[1] = '0' + ( c >> 6 ); in WriteString()
311 octal[2] = '0' + ((c >> 3) & 0x07); in WriteString()
312 octal[3] = '0' + ( c & 0x07); in WriteString()
313 wStream->write(octal, 4); in WriteString()
/external/skqp/src/pdf/
DSkPDFUtils.cpp308 uint8_t octal[4]; in WriteString() local
309 octal[0] = '\\'; in WriteString()
310 octal[1] = '0' + ( c >> 6 ); in WriteString()
311 octal[2] = '0' + ((c >> 3) & 0x07); in WriteString()
312 octal[3] = '0' + ( c & 0x07); in WriteString()
313 wStream->write(octal, 4); in WriteString()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dcompat.py29 def octal(lit): function
53 def octal(lit): function
Dutil.py57 os.makedirs(dir, compat.octal("0775"))
/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
Dconstruct-int.test5 octal: 02472256
/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.
DREADME-4.035 mode is the octal mode specifier, similar to that expected by chmod.
/external/toybox/tests/
Dprintf.test21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
/external/llvm/tools/llvm-size/
Dllvm-size.cpp71 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator
78 cl::values(clEnumValN(octal, "o", "Print size in octal"),
166 case octal: in getRadixFmt()
466 << (Radix == octal ? "oct" : "dec") << " hex filename\n"; in printObjectSectionSizes()
476 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " " in printObjectSectionSizes()
/external/python/cpython3/Doc/library/
Ddbm.rst64 database has to be created. It defaults to octal ``0o666`` (and will be
196 database has to be created. It defaults to octal ``0o666``.
291 database has to be created. It defaults to octal ``0o666`` (and will be
347 database has to be created. It defaults to octal ``0o666`` (and will be modified
/external/python/cpython2/Doc/library/
Dfuture_builtins.rst62 then converted to octal.
Ddbm.rst64 database has to be created. It defaults to octal ``0666`` (and will be
Ddumbdbm.rst46 database has to be created. It defaults to octal ``0666`` (and will be modified
Danydbm.rst55 database has to be created. It defaults to octal ``0666`` (and will be
Dgdbm.rst78 database has to be created. It defaults to octal ``0666``.
/external/python/cpython2/Doc/reference/
Dlexical_analysis.rst514 | ``\ooo`` | Character with octal value | (3,5) |
534 As in Standard C, up to three octal digits are accepted.
540 In a string literal, hexadecimal and octal escapes denote the byte with the
613 single: octal literal
680 octal integers, but are interpreted using radix 10. For example, ``077e010`` is
770 .. [#] In versions of Python prior to 2.4, octal and hexadecimal literals in the range
/external/curl/docs/cmdline-opts/
Dquote.d34 mode operand is an octal integer mode number.
/external/llvm/docs/CommandGuide/
Dllvm-nm.rst132 x(hexadecomal) and o(octal).
/external/syslinux/doc/
Dkeytab-lilo.txt68 hexadecimal or as octal numbers if they are prefixed with 0x or 0,
/external/python/cpython3/Doc/reference/
Dlexical_analysis.rst508 | ``\ooo`` | Character with octal value | (1,3) |
532 As in Standard C, up to three octal digits are accepted.
538 In a bytes literal, hexadecimal and octal escapes denote the byte with the
710 octal literal, binary literal, decimal literal, imaginary literal, complex literal
748 for disambiguation with C-style octal literals, which Python used before version

12345