Lines Matching refs:__TBB_ASSERT
135 __TBB_ASSERT(allocate_handler == &initialize_allocate_handler, nullptr); in initialize_handler_pointers()
162 __TBB_ASSERT(allocate_handler != &initialize_allocate_handler, nullptr); in initialize_allocate_handler()
169 …__TBB_ASSERT(cache_aligned_allocate_handler != &initialize_cache_aligned_allocate_handler, nullptr… in initialize_cache_aligned_allocate_handler()
183 __TBB_ASSERT(is_power_of_two(cache_line_size), "must be power of two"); in cache_aligned_allocate()
196 __TBB_ASSERT(is_aligned(result, cache_line_size), "The returned address isn't aligned"); in cache_aligned_allocate()
201 __TBB_ASSERT(cache_aligned_deallocate_handler, "Initialization has not been yet."); in cache_aligned_deallocate()
225 …__TBB_ASSERT((result - base) >= sizeof(std::uintptr_t), "Cannot store a base pointer to the header… in std_cache_aligned_allocate()
226 __TBB_ASSERT(space - (result - base) >= bytes, "Not enough space for the storage"); in std_cache_aligned_allocate()
241 …__TBB_ASSERT(reinterpret_cast<std::uintptr_t>(p) >= 0x4096, "attempt to free block not obtained fr… in std_cache_aligned_deallocate()
244 …__TBB_ASSERT(((base + nfs_size) & ~(nfs_size - 1)) == reinterpret_cast<std::uintptr_t>(p), "Incorr… in std_cache_aligned_deallocate()
260 __TBB_ASSERT(deallocate_handler, "Initialization has not been yet."); in deallocate_memory()
271 …__TBB_ASSERT(handler_snapshot != &initialize_allocate_handler && deallocate_handler != nullptr, nu… in is_tbbmalloc_used()
273 …__TBB_ASSERT((reinterpret_cast<void*>(handler_snapshot) == reinterpret_cast<void*>(&std::malloc)) … in is_tbbmalloc_used()