HomeSort by relevance Sort by last modified time
    Searched refs:Py_UNICODE (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodectype.c 26 const Py_UNICODE upper;
27 const Py_UNICODE lower;
28 const Py_UNICODE title;
37 gettyperecord(Py_UNICODE code)
57 Py_UNICODE _PyUnicode_ToTitlecase(register Py_UNICODE ch)
74 int _PyUnicode_IsTitlecase(Py_UNICODE ch)
84 int _PyUnicode_ToDecimalDigit(Py_UNICODE ch)
91 int _PyUnicode_IsDecimalDigit(Py_UNICODE ch)
101 int _PyUnicode_ToDigit(Py_UNICODE ch)
    [all...]
unicodeobject.c 188 Py_UNICODE
229 Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len)
243 Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen)
289 sizeof(Py_UNICODE) * (length + 1));
291 unicode->str = (Py_UNICODE *)oldstr;
328 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
347 size_t new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
348 unicode->str = (Py_UNICODE*) PyObject_MALLOC(new_size);
357 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodectype.c 26 const Py_UNICODE upper;
27 const Py_UNICODE lower;
28 const Py_UNICODE title;
37 gettyperecord(Py_UNICODE code)
57 Py_UNICODE _PyUnicode_ToTitlecase(register Py_UNICODE ch)
74 int _PyUnicode_IsTitlecase(Py_UNICODE ch)
84 int _PyUnicode_ToDecimalDigit(Py_UNICODE ch)
91 int _PyUnicode_IsDecimalDigit(Py_UNICODE ch)
101 int _PyUnicode_ToDigit(Py_UNICODE ch)
    [all...]
unicodeobject.c 175 Py_UNICODE
216 Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len)
230 Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen)
276 sizeof(Py_UNICODE) * (length + 1));
278 unicode->str = (Py_UNICODE *)oldstr;
315 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
334 size_t new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
335 unicode->str = (Py_UNICODE*) PyObject_MALLOC(new_size);
344 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
    [all...]
  /external/python/cpython2/Objects/
unicodectype.c 26 const Py_UNICODE upper;
27 const Py_UNICODE lower;
28 const Py_UNICODE title;
37 gettyperecord(Py_UNICODE code)
57 Py_UNICODE _PyUnicode_ToTitlecase(register Py_UNICODE ch)
74 int _PyUnicode_IsTitlecase(Py_UNICODE ch)
84 int _PyUnicode_ToDecimalDigit(Py_UNICODE ch)
91 int _PyUnicode_IsDecimalDigit(Py_UNICODE ch)
101 int _PyUnicode_ToDigit(Py_UNICODE ch
    [all...]
unicodeobject.c 188 Py_UNICODE
229 Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len)
243 Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen)
289 sizeof(Py_UNICODE) * (length + 1));
291 unicode->str = (Py_UNICODE *)oldstr;
328 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
347 size_t new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
348 unicode->str = (Py_UNICODE*) PyObject_MALLOC(new_size);
357 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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...]
  /external/python/cpython2/Include/
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...]
  /external/python/cpython3/PC/clinic/
winreg.c.h 141 const Py_UNICODE *computer_name, HKEY key);
147 const Py_UNICODE *computer_name;
188 winreg_CreateKey_impl(PyObject *module, HKEY key, const Py_UNICODE *sub_key);
195 const Py_UNICODE *sub_key;
242 const Py_UNICODE *sub_key, int reserved,
252 const Py_UNICODE *sub_key;
293 winreg_DeleteKey_impl(PyObject *module, HKEY key, const Py_UNICODE *sub_key);
300 const Py_UNICODE *sub_key;
342 const Py_UNICODE *sub_key, REGSAM access,
352 const Py_UNICODE *sub_key
    [all...]
  /external/python/cpython3/Include/
unicodeobject.h 86 /* Py_UNICODE was the native Unicode storage format (code unit) used by
88 With PEP 393, Py_UNICODE is deprecated and replaced with a
93 typedef wchar_t Py_UNICODE /* Py_DEPRECATED(3.3) */;
155 memcpy((target), (source), (length)*sizeof(Py_UNICODE))
158 do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\
181 !memcmp((string)->wstr + (offset), (substring)->wstr, (substring)->wstr_length*sizeof(Py_UNICODE)))
374 /* Returns the deprecated Py_UNICODE representation's size in code units
376 If the Py_UNICODE representation is not available, it will be computed
392 /* Alias for PyUnicode_AsUnicode(). This will create a wchar_t/Py_UNICODE
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.h 36 const Py_UNICODE **inbuf, Py_ssize_t inleft,
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
84 Py_UNICODE pending[MAXENCPENDING]; \
_codecs_tw.c 17 Py_UNICODE c = **inbuf;
72 Py_UNICODE c = IN1;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.h 36 const Py_UNICODE **inbuf, Py_ssize_t inleft,
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
84 Py_UNICODE pending[MAXENCPENDING]; \
_codecs_tw.c 17 Py_UNICODE c = **inbuf;
72 Py_UNICODE c = IN1;
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.h 36 const Py_UNICODE **inbuf, Py_ssize_t inleft,
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
84 Py_UNICODE pending[MAXENCPENDING]; \
_codecs_tw.c 17 Py_UNICODE c = **inbuf;
72 Py_UNICODE c = IN1;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
unicodedefs.h 10 #define STRINGLIB_CHAR Py_UNICODE
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
unicodedefs.h 10 #define STRINGLIB_CHAR Py_UNICODE
  /external/python/cpython2/Objects/stringlib/
unicodedefs.h 10 #define STRINGLIB_CHAR Py_UNICODE
  /external/python/cpython3/Objects/stringlib/
unicodedefs.h 13 #define STRINGLIB_CHAR Py_UNICODE
  /external/libchrome/third_party/markupsafe/
_speedups.c 26 static Py_UNICODE *escaped_chars_repl[ESCAPED_CHARS_TABLE_SIZE];
59 Py_UNICODE *inp = PyUnicode_AS_UNICODE(in);
60 const Py_UNICODE *inp_end = PyUnicode_AS_UNICODE(in) + PyUnicode_GET_SIZE(in);
61 Py_UNICODE *next_escp;
62 Py_UNICODE *outp;
  /external/python/cpython2/PC/
msvcrtmodule.c 212 Py_UNICODE ch;
213 Py_UNICODE u[1];
257 Py_UNICODE ch;
258 Py_UNICODE s[1];
298 Py_UNICODE *ch;
344 Py_UNICODE ch;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
stringio.c 12 Py_UNICODE *buf;
59 Py_UNICODE *new_buf = NULL;
87 if (alloc > ((size_t)-1) / sizeof(Py_UNICODE))
89 new_buf = (Py_UNICODE *)PyMem_Realloc(self->buf,
90 alloc * sizeof(Py_UNICODE));
111 Py_UNICODE *str;
164 (self->pos - self->string_size) * sizeof(Py_UNICODE));
169 memcpy(self->buf + self->pos, str, len * sizeof(Py_UNICODE));
217 Py_UNICODE *output;
257 Py_UNICODE *start, *end, old_char;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
stringio.c 12 Py_UNICODE *buf;
59 Py_UNICODE *new_buf = NULL;
87 if (alloc > ((size_t)-1) / sizeof(Py_UNICODE))
89 new_buf = (Py_UNICODE *)PyMem_Realloc(self->buf,
90 alloc * sizeof(Py_UNICODE));
111 Py_UNICODE *str;
164 (self->pos - self->string_size) * sizeof(Py_UNICODE));
169 memcpy(self->buf + self->pos, str, len * sizeof(Py_UNICODE));
217 Py_UNICODE *output;
257 Py_UNICODE *start, *end, old_char;
    [all...]

Completed in 737 milliseconds

1 2 3 4 5 6 7