Searched refs:CHECK_SIGNNESS (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 87 #define CHECK_SIGNNESS(TYPE, SIGNED) \ in test_sizeof_c_types() macro 99 CHECK_SIGNNESS(Py_UCS1, 0); in test_sizeof_c_types() 100 CHECK_SIGNNESS(Py_UCS2, 0); in test_sizeof_c_types() 101 CHECK_SIGNNESS(Py_UCS4, 0); in test_sizeof_c_types() 103 CHECK_SIGNNESS(int32_t, 1); in test_sizeof_c_types() 105 CHECK_SIGNNESS(uint32_t, 0); in test_sizeof_c_types() 107 CHECK_SIGNNESS(int64_t, 1); in test_sizeof_c_types() 109 CHECK_SIGNNESS(uint64_t, 0); in test_sizeof_c_types() 113 CHECK_SIGNNESS(size_t, 0); in test_sizeof_c_types() 115 CHECK_SIGNNESS(Py_ssize_t, 1); in test_sizeof_c_types() [all …]
|