HomeSort by relevance Sort by last modified time
    Searched defs:Py_UCS4 (Results 1 - 8 of 8) sorted by null

  /external/python/cpython3/Include/
unicodeobject.h 114 /* Py_UCS4 and Py_UCS2 are typedefs for the respective
116 typedef uint32_t Py_UCS4;
170 /* Join two surrogate characters and return a single Py_UCS4 value. */
172 (((((Py_UCS4)(high) & 0x03FF) << 10) | \
173 ((Py_UCS4)(low) & 0x03FF)) + 0x10000)
311 * character type = Py_UCS4 (32 bits, unsigned)
358 Py_UCS4 *ucs4;
447 Py_UCS2, or Py_UCS4 for direct character access.
453 #define PyUnicode_4BYTE_DATA(op) ((Py_UCS4*)PyUnicode_DATA(op))
498 ((Py_UCS4 *)(data))[(index)] = (Py_UCS4)(value);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /external/python/cpython2/Include/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
unicodeobject.h 100 # define PY_UNICODE_TYPE Py_UCS4
128 typedef unsigned int Py_UCS4;
130 typedef unsigned long Py_UCS4;
    [all...]

Completed in 318 milliseconds