Home
last modified time | relevance | path

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

/external/python/cffi/c/
D_cffi_backend.c7454 typedef wchar_t cffi_wchar_t; typedef
7456 typedef uint16_t cffi_wchar_t; /* random pick... */ typedef
7459 static cffi_wchar_t _cffi_to_c_wchar_t(PyObject *init)
7461 if (sizeof(cffi_wchar_t) == 2)
7462 return (cffi_wchar_t)_convert_to_char16_t(init);
7464 return (cffi_wchar_t)_convert_to_char32_t(init);
7466 static PyObject *_cffi_from_c_wchar_t(cffi_wchar_t x) {
7467 if (sizeof(cffi_wchar_t) == 2) {
7478 if (sizeof(cffi_wchar_t) == 4)
7484 if (sizeof(cffi_wchar_t) == 4) {