Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h1391 kmp_uint32 old_sz = skipPerLevel[depth - 1]; in resize() local
1394 for (kmp_uint32 i = depth; i < maxLevels && nproc > old_sz; ++i) { in resize()
1397 old_sz *= 2; in resize()
1400 if (nproc > old_sz) { // Not enough space, need to expand hierarchy in resize()
1401 while (nproc > old_sz) { in resize()
1402 old_sz *= 2; in resize()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp304 uptr old_sz = user_alloc_usable_size(p); in user_realloc() local
305 internal_memcpy(new_p, p, min(old_sz, sz)); in user_realloc()