Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/
H A Dscalable_allocator.h63 TBBMALLOC_EXPORT void* __TBB_EXPORTED_FUNC scalable_calloc(size_t nobj, size_t size);
/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp3072 extern "C" void * scalable_calloc(size_t nobj, size_t size) in scalable_calloc() argument
3076 const size_t arraySize = nobj * size; in scalable_calloc()
3079 if (nobj>=mult_not_overflow || size>=mult_not_overflow) // 1) heuristic check in scalable_calloc()
3080 if (nobj && arraySize / nobj != size) { // 2) exact check in scalable_calloc()