Searched refs:old_sz (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h791 kmp_uint32 old_sz = skipPerLevel[depth - 1];
794 for (kmp_uint32 i = depth; i < maxLevels && nproc > old_sz; ++i) {
797 old_sz *= 2;
800 if (nproc > old_sz) { // Not enough space, need to expand hierarchy
801 while (nproc > old_sz) {
802 old_sz *= 2;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp251 uptr old_sz = user_alloc_usable_size(p); local
252 internal_memcpy(new_p, p, min(old_sz, sz));

Completed in 72 milliseconds