Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/mimalloc/
Dalloc-aligned.c179 if (mi_count_size_overflow(count, size, &total)) return NULL; in mi_heap_calloc_aligned_at()
266 if (mi_count_size_overflow(newcount, size, &total)) return NULL; in mi_heap_recalloc_aligned_at()
272 if (mi_count_size_overflow(newcount, size, &total)) return NULL; in mi_heap_recalloc_aligned()
Dalloc.c687 if (mi_count_size_overflow(count,size,&total)) return NULL;
698 if (mi_count_size_overflow(count, size, &total)) return NULL;
758 if (mi_count_size_overflow(count, size, &total)) return NULL;
776 if (mi_count_size_overflow(count, size, &total)) return NULL;
999 if mi_unlikely(mi_count_size_overflow(count, size, &total)) {
1047 if mi_unlikely(mi_count_size_overflow(newcount, size, &total)) {
/external/python/cpython3/Include/internal/mimalloc/mimalloc/
Dinternal.h348 static inline bool mi_count_size_overflow(size_t count, size_t size, size_t* total) { in mi_count_size_overflow() function