OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Py_UCS4
(Results
1 - 4
of
4
) sorted by null
/external/python/cpython3/Include/
unicodeobject.h
110
/*
Py_UCS4
and Py_UCS2 are typedefs for the respective
112
typedef uint32_t
Py_UCS4
;
166
/* Join two surrogate characters and return a single
Py_UCS4
value. */
168
(((((
Py_UCS4
)(high) & 0x03FF) << 10) | \
169
((
Py_UCS4
)(low) & 0x03FF)) + 0x10000)
307
* character type =
Py_UCS4
(32 bits, unsigned)
354
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
...]
Completed in 364 milliseconds