Searched refs:Py_UCS1 (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Python/ |
D | pystrhex.c | 12 Py_UCS1* retbuf; in _Py_strhex_impl() 14 Py_UCS1 sep_char = 0; in _Py_strhex_impl() 67 retbuf = (Py_UCS1*) PyMem_Malloc(resultlen); in _Py_strhex_impl()
|
/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 243 Py_UCS1 *latin1; 336 #define PyUnicode_1BYTE_DATA(op) ((Py_UCS1*)PyUnicode_DATA(op)) 374 ((Py_UCS1 *)(data))[(index)] = (Py_UCS1)(value); \ 393 ((const Py_UCS1 *)(data))[(index)] : \ 409 ((const Py_UCS1 *)(PyUnicode_DATA((unicode))))[(index)] : \
|
/external/python/cpython3/Objects/stringlib/ |
D | ucs1lib.h | 11 #define STRINGLIB_CHAR Py_UCS1
|
D | asciilib.h | 11 #define STRINGLIB_CHAR Py_UCS1
|
/external/python/cpython3/Modules/_sqlite/ |
D | row.c | 97 const Py_UCS1 *p1 = PyUnicode_1BYTE_DATA(left); in equal_ignore_case() 98 const Py_UCS1 *p2 = PyUnicode_1BYTE_DATA(right); in equal_ignore_case()
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 239 Py_UCS1 ch = (unsigned char)value; in unicode_fill() 240 Py_UCS1 *to = (Py_UCS1 *)data + start; in unicode_fill() 321 _PyUnicode_FromUCS1(const Py_UCS1 *s, Py_ssize_t size); 835 BLOOM_UPDATE(Py_UCS1, mask, ptr, len); in make_bloom_mask() 919 if ((Py_UCS1) ch != ch) in findchar() 922 return ucs1lib_find_char((Py_UCS1 *) s, size, (Py_UCS1) ch); in findchar() 924 return ucs1lib_rfind_char((Py_UCS1 *) s, size, (Py_UCS1) ch); in findchar() 953 Py_UCS1 *data = PyUnicode_1BYTE_DATA(unicode); in unicode_fill_invalid() 1518 (Py_UCS1*)from_data + how_many); in _copy_characters() 1530 Py_UCS1, Py_UCS2, in _copy_characters() [all …]
|
D | longobject.c | 1896 Py_UCS1 *p; in long_to_decimal_string_internal() 1897 WRITE_UNICODE_DIGITS(Py_UCS1); in long_to_decimal_string_internal() 2073 Py_UCS1 *p; in long_format_binary() 2074 WRITE_UNICODE_DIGITS(Py_UCS1); in long_format_binary()
|
D | bytesobject.c | 2345 Py_UCS1 *str, *end; in _PyBytes_FromHex()
|
D | typeobject.c | 3178 Py_UCS1 *characters = PyUnicode_1BYTE_DATA(name); in is_dunder_name()
|
/external/python/cpython3/Include/ |
D | unicodeobject.h | 104 typedef uint8_t Py_UCS1; typedef
|
/external/python/cpython3/Modules/ |
D | _json.c | 311 Py_UCS1 *output = PyUnicode_1BYTE_DATA(rval); in escape_unicode()
|
D | _sre.c | 228 #define SRE_CHAR Py_UCS1
|
D | _testcapimodule.c | 107 CHECK_SIZEOF(Py_UCS1, 1); in test_sizeof_c_types() 110 CHECK_SIGNNESS(Py_UCS1, 0); in test_sizeof_c_types()
|
/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 46 Py_UCS1 119 .. c:function:: Py_UCS1* PyUnicode_1BYTE_DATA(PyObject *o)
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 2360 Py_UCS1 *str, *end; in _PyBytes_FromHex()
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 2048 Py_UCS1 *nl = PyUnicode_1BYTE_DATA(readnl); in _PyIO_find_line_ending()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2345 PyUnicode_1BYTE_DATA:Py_UCS1*:::
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2190 * :c:type:`Py_UCS1`, :c:type:`Py_UCS2`, :c:type:`Py_UCS4` types
|