HomeSort by relevance Sort by last modified time
    Searched refs:PyUnicode_Kind (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Include/
unicodeobject.h 435 enum PyUnicode_Kind {
440 /* Return values of the PyUnicode_KIND() macro: */
448 No checks are performed, use PyUnicode_KIND() before to ensure
456 #define PyUnicode_KIND(op) \
516 calls PyUnicode_KIND() and might call it twice. For single reads, use
523 (PyUnicode_KIND((unicode)) == PyUnicode_1BYTE_KIND ? \
525 (PyUnicode_KIND((unicode)) == PyUnicode_2BYTE_KIND ? \
561 (PyUnicode_KIND(op) == PyUnicode_1BYTE_KIND ? \
563 (PyUnicode_KIND(op) == PyUnicode_2BYTE_KIND ? \
884 enum PyUnicode_Kind kind
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 524 int kind = PyUnicode_KIND(unicode);
580 enum PyUnicode_Kind kind;
584 kind = PyUnicode_KIND(unicode);
647 enum PyUnicode_Kind kind;
651 kind = PyUnicode_KIND(unicode);
870 int kind = PyUnicode_KIND(unicode);
895 char_size = PyUnicode_KIND(unicode);
940 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
963 char_size = PyUnicode_KIND(unicode);
995 PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0)
    [all...]
longobject.c     [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 62 int kind = PyUnicode_KIND(str);
170 int kind = PyUnicode_KIND(format_spec);
442 int kind = PyUnicode_KIND(s);
641 if (PyUnicode_KIND(digits) < kind) {
655 if (PyUnicode_KIND(digits) < kind)
    [all...]
  /external/python/cpython3/Modules/_decimal/
_decimal.c     [all...]

Completed in 269 milliseconds