/external/swiftshader/third_party/LLVM/tools/llvm-size/ |
D | llvm-size.cpp | 50 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/ |
D | conversions-inl.h | 670 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/ |
D | SkPDFUtils.cpp | 308 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/ |
D | SkPDFUtils.cpp | 308 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/ |
D | compat.py | 29 def octal(lit): function 53 def octal(lit): function
|
D | util.py | 57 os.makedirs(dir, compat.octal("0775"))
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-02-19.data | 4 octal: 014
|
D | construct-int.data | 3 octal: 02472256
|
/external/llvm/test/YAMLParser/ |
D | spec-02-19.test | 6 octal: 014
|
D | construct-int.test | 5 octal: 02472256
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-4.1 | 157 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.
|
D | README-4.0 | 35 mode is the octal mode specifier, similar to that expected by chmod.
|
/external/toybox/tests/ |
D | printf.test | 21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
|
/external/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 71 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/ |
D | dbm.rst | 64 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/ |
D | future_builtins.rst | 62 then converted to octal.
|
D | dbm.rst | 64 database has to be created. It defaults to octal ``0666`` (and will be
|
D | dumbdbm.rst | 46 database has to be created. It defaults to octal ``0666`` (and will be modified
|
D | anydbm.rst | 55 database has to be created. It defaults to octal ``0666`` (and will be
|
D | gdbm.rst | 78 database has to be created. It defaults to octal ``0666``.
|
/external/python/cpython2/Doc/reference/ |
D | lexical_analysis.rst | 514 | ``\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/ |
D | quote.d | 34 mode operand is an octal integer mode number.
|
/external/llvm/docs/CommandGuide/ |
D | llvm-nm.rst | 132 x(hexadecomal) and o(octal).
|
/external/syslinux/doc/ |
D | keytab-lilo.txt | 68 hexadecimal or as octal numbers if they are prefixed with 0x or 0,
|
/external/python/cpython3/Doc/reference/ |
D | lexical_analysis.rst | 508 | ``\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
|