Searched refs:allocsz (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_persistent_allocator.h56 uptr allocsz = 64 * 1024; local
57 if (allocsz < size) allocsz = size;
58 uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
59 atomic_store(&region_end, mem + allocsz, memory_order_release);
/freebsd-13-stable/contrib/ntp/libntp/
H A Demalloc.c36 size_t allocsz; local
39 allocsz = 1;
41 allocsz = newsz;
43 mem = EREALLOC_IMPL(ptr, allocsz, file, line);
/freebsd-13-stable/sys/dev/nvme/
H A Dnvme_qpair.c651 size_t cmdsz, cplsz, prpsz, allocsz, prpmemsz; local
713 allocsz = cmdsz + cplsz + prpmemsz;
717 allocsz, 1, allocsz, 0, NULL, NULL, &qpair->dma_tag);
731 queuemem, allocsz, nvme_single_map, &queuemem_phys, 0) != 0) {

Completed in 123 milliseconds