Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_bitutils.h39 Py_BUILD_ASSERT(sizeof(word) == sizeof(unsigned short)); in _Py_bswap16()
54 Py_BUILD_ASSERT(sizeof(word) == sizeof(unsigned long)); in _Py_bswap32()
100 Py_BUILD_ASSERT(sizeof(x) <= sizeof(unsigned int)); in _Py_popcount32()
105 Py_BUILD_ASSERT(sizeof(x) <= sizeof(unsigned long)); in _Py_popcount32()
149 Py_BUILD_ASSERT(sizeof(unsigned long) <= 4); in _Py_bit_length()
Dpycore_atomic_funcs.h45 Py_BUILD_ASSERT(sizeof(__int64) == sizeof(*var));
52 Py_BUILD_ASSERT(sizeof(long) == sizeof(*var));
65 Py_BUILD_ASSERT(sizeof(__int64) == sizeof(*var));
69 Py_BUILD_ASSERT(sizeof(long) == sizeof(*var));
/third_party/python/Python/
Dpytime.c78 Py_BUILD_ASSERT(sizeof(time_t) <= sizeof(long)); in _PyLong_AsTime_t()
96 Py_BUILD_ASSERT(sizeof(time_t) <= sizeof(long)); in _PyLong_FromTime_t()
250 Py_BUILD_ASSERT(INT_MAX <= _PyTime_MAX / SEC_TO_NS); in _PyTime_FromSeconds()
251 Py_BUILD_ASSERT(INT_MIN >= _PyTime_MIN / SEC_TO_NS); in _PyTime_FromSeconds()
279 Py_BUILD_ASSERT(sizeof(long long) == sizeof(_PyTime_t)); in _PyTime_FromNanosecondsObject()
301 Py_BUILD_ASSERT(sizeof(ts->tv_sec) <= sizeof(_PyTime_t)); in pytime_fromtimespec()
347 Py_BUILD_ASSERT(sizeof(tv->tv_sec) <= sizeof(_PyTime_t)); in pytime_fromtimeval()
421 Py_BUILD_ASSERT(sizeof(long long) <= sizeof(_PyTime_t)); in _PyTime_FromObject()
475 Py_BUILD_ASSERT(sizeof(long long) >= sizeof(_PyTime_t)); in _PyTime_AsNanosecondsObject()
808 Py_BUILD_ASSERT(sizeof(timebase.numer) < sizeof(_PyTime_t)); in py_mach_timebase_info()
[all …]
Dfileutils.c957 Py_BUILD_ASSERT(sizeof(wchar_t) == 4); in _Py_ConvertWCharForm()
Dinitconfig.c1615 Py_BUILD_ASSERT(sizeof(_Py_HashSecret_t) == sizeof(_Py_HashSecret.uc)); in config_init_hash_seed()
/third_party/python/Include/
Dpymacro.h42 #define Py_BUILD_ASSERT(cond) do { \ macro
/third_party/python/Objects/
Dsliceobject.c209 Py_BUILD_ASSERT(PY_SSIZE_T_MIN + 1 <= -PY_SSIZE_T_MAX); in PySlice_Unpack()
Dlongobject.c696 Py_BUILD_ASSERT(PyLong_SHIFT <= sizeof(unsigned long) * 8); in bit_length_digit()
5341 Py_BUILD_ASSERT(PyLong_SHIFT <= 32); in popcount_digit()
/third_party/python/Modules/
D_datetimemodule.c6657 Py_BUILD_ASSERT(DI4Y == 4 * 365 + 1); in _datetime_exec()
6663 Py_BUILD_ASSERT(DI400Y == 4 * DI100Y + 1); in _datetime_exec()
6669 Py_BUILD_ASSERT(DI100Y == 25 * DI4Y - 1); in _datetime_exec()
Dpyexpat.c754 Py_BUILD_ASSERT(MAX_CHUNK_SIZE <= INT_MAX); in pyexpat_xmlparser_Parse_impl()
Dposixmodule.c2401 Py_BUILD_ASSERT(sizeof(unsigned long long) >= sizeof(st->st_ino)); in _pystat_fromstructstat()
2416 Py_BUILD_ASSERT(sizeof(long long) >= sizeof(st->st_size)); in _pystat_fromstructstat()
13735 Py_BUILD_ASSERT(sizeof(unsigned long long) >= sizeof(self->win32_file_index)); in os_DirEntry_inode_impl()
13738 Py_BUILD_ASSERT(sizeof(unsigned long long) >= sizeof(self->d_ino)); in os_DirEntry_inode_impl()
D_testcapimodule.c4967 Py_BUILD_ASSERT(sizeof(unsigned long long) >= sizeof(version)); in dict_get_version()
D_pickle.c957 Py_BUILD_ASSERT(sizeof(size_t) <= 8); in _write_size64()
/third_party/python/Modules/_ctypes/
D_ctypes.c2688 Py_BUILD_ASSERT(sizeof(string) - 1 > sizeof(Py_ssize_t) * 2); in unique_key()