Searched refs:CHECK_SIGNNESS (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 102 #define CHECK_SIGNNESS(TYPE, SIGNED) \ in test_sizeof_c_types() macro 114 CHECK_SIGNNESS(Py_UCS1, 0); in test_sizeof_c_types() 115 CHECK_SIGNNESS(Py_UCS2, 0); in test_sizeof_c_types() 116 CHECK_SIGNNESS(Py_UCS4, 0); in test_sizeof_c_types() 118 CHECK_SIGNNESS(int32_t, 1); in test_sizeof_c_types() 120 CHECK_SIGNNESS(uint32_t, 0); in test_sizeof_c_types() 122 CHECK_SIGNNESS(int64_t, 1); in test_sizeof_c_types() 124 CHECK_SIGNNESS(uint64_t, 0); in test_sizeof_c_types() 128 CHECK_SIGNNESS(size_t, 0); in test_sizeof_c_types() 130 CHECK_SIGNNESS(Py_ssize_t, 1); in test_sizeof_c_types() [all …]
|