OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Py_UNICODE
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
unicodeobject.h
133
/*
Py_UNICODE
is the native Unicode storage format (code unit) used by
137
typedef PY_UNICODE_TYPE
Py_UNICODE
;
394
Py_MEMCPY((target), (source), (length)*sizeof(
Py_UNICODE
))
397
do {Py_ssize_t i_;
Py_UNICODE
*t_ = (target);
Py_UNICODE
v_ = (value);\
407
!memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(
Py_UNICODE
)))
418
Py_UNICODE
*str; /* Raw Unicode buffer */
435
(((PyUnicodeObject *)(op))->length * sizeof(
Py_UNICODE
))
448
#define Py_UNICODE_REPLACEMENT_CHARACTER ((
Py_UNICODE
) 0xFFFD)
452
/* --- Plain
Py_UNICODE
--------------------------------------------------- *
[
all
...]
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
unicodeobject.h
133
/*
Py_UNICODE
is the native Unicode storage format (code unit) used by
137
typedef PY_UNICODE_TYPE
Py_UNICODE
;
394
Py_MEMCPY((target), (source), (length)*sizeof(
Py_UNICODE
))
397
do {Py_ssize_t i_;
Py_UNICODE
*t_ = (target);
Py_UNICODE
v_ = (value);\
407
!memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(
Py_UNICODE
)))
418
Py_UNICODE
*str; /* Raw Unicode buffer */
435
(((PyUnicodeObject *)(op))->length * sizeof(
Py_UNICODE
))
448
#define Py_UNICODE_REPLACEMENT_CHARACTER ((
Py_UNICODE
) 0xFFFD)
452
/* --- Plain
Py_UNICODE
--------------------------------------------------- *
[
all
...]
Completed in 28 milliseconds