Home
last modified time | relevance | path

Searched refs:SIZEOF_WCHAR_T (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Include/
Dunicodeobject.h67 #ifndef SIZEOF_WCHAR_T
68 #error Must define SIZEOF_WCHAR_T
71 #define Py_UNICODE_SIZE SIZEOF_WCHAR_T
/external/python/cpython3/android/
Dlauncher_main.cpp39 static_assert(sizeof(wchar_t) == SIZEOF_WCHAR_T);
/external/python/cpython2/android_x86/pyconfig/
Dpyconfig.h1049 #define SIZEOF_WCHAR_T 1 macro
/external/python/cpython2/android_arm/pyconfig/
Dpyconfig.h1049 #define SIZEOF_WCHAR_T 1 macro
/external/python/cpython2/android_arm64/pyconfig/
Dpyconfig.h1049 #define SIZEOF_WCHAR_T 1 macro
/external/python/cpython2/android_x86_64/pyconfig/
Dpyconfig.h1049 #define SIZEOF_WCHAR_T 1 macro
/external/python/cpython3/PC/
Dpyconfig.h627 #define SIZEOF_WCHAR_T 2 macro
/external/python/cpython2/darwin_x86_64/pyconfig/
Dpyconfig.h1055 #define SIZEOF_WCHAR_T 4 macro
/external/python/cpython2/linux_x86_64/pyconfig/
Dpyconfig.h1057 #define SIZEOF_WCHAR_T 4 macro
/external/python/cpython3/android/darwin_x86_64/pyconfig/
Dpyconfig.h1479 #define SIZEOF_WCHAR_T 4 macro
/external/python/cpython3/android/bionic/pyconfig/
Dpyconfig.h1485 #define SIZEOF_WCHAR_T 4 macro
/external/python/cpython3/android/linux_x86_64/pyconfig/
Dpyconfig.h1479 #define SIZEOF_WCHAR_T 4 macro
/external/python/cpython2/RISCOS/
Dpyconfig.h284 #undef SIZEOF_WCHAR_T
/external/python/cpython3/Objects/
Dunicodeobject.c574 #if SIZEOF_WCHAR_T == 2 in _PyUnicode_CheckConsistency()
1499 #if SIZEOF_WCHAR_T == 2
1773 #if SIZEOF_WCHAR_T == 2 in find_maxchar_surrogates()
1807 #if SIZEOF_WCHAR_T == 2 in _PyUnicode_Ready()
1860 #if SIZEOF_WCHAR_T == 2 in _PyUnicode_Ready()
1891 #if SIZEOF_WCHAR_T == 2 in _PyUnicode_Ready()
2242 #if SIZEOF_WCHAR_T == 2 in PyUnicode_FromWideChar()
3124 #if SIZEOF_WCHAR_T == 2 in unicode_get_widechar_size()
3160 #if SIZEOF_WCHAR_T == 4 in unicode_copy_as_widechar()
5192 #if SIZEOF_WCHAR_T == 4 in _Py_DecodeUTF8Ex()
[all …]
/external/python/cpython2/Modules/
D_testcapimodule.c1698 #if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4) in test_widechar()
/external/python/cpython3/Modules/
D_testcapimodule.c1779 #if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4) in test_widechar()
1819 #if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4) in test_widechar()
/external/python/cpython3/Lib/test/
Dtest_codecs.py21 SIZEOF_WCHAR_T = -1 variable
23 SIZEOF_WCHAR_T = ctypes.sizeof(ctypes.c_wchar) variable
/external/python/cpython3/Python/
Dinitconfig.c2685 #if SIZEOF_WCHAR_T > 2 in init_dump_ascii_wstr()
/external/python/cpython2/
Dpyconfig.h.in1080 #undef SIZEOF_WCHAR_T
/external/python/cpython2/Objects/
Dunicodeobject.c582 #if (Py_UNICODE_SIZE == 2) && defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4)
/external/python/cpython3/
Dpyconfig.h.in1478 #undef SIZEOF_WCHAR_T
/external/python/cpython3/Misc/
DHISTORY12284 - Issue #9684: Added a definition for SIZEOF_WCHAR_T to PC/pyconfig.h, to match