/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_allocator_local_cache.h | 50 CompactPtrT chunk = c->chunks[--c->count]; 68 c->chunks[c->count++] = chunk; 89 CompactPtrT chunks[2 * SizeClassMap::kMaxNumCachedHint]; member in struct:SizeClassAllocator64LocalCache::PerClass 110 if (UNLIKELY(!allocator->GetFromAllocator(&stats_, class_id, c->chunks, 123 &c->chunks[first_idx_to_drain], count); 229 // of the chunks. If using a separate size class, it will always be
|
sanitizer_allocator_secondary.h | 17 // Fixed array to store LargeMmapAllocator chunks list, limited to 32K total 18 // allocated chunks. To be used in memory constrained or not memory hungry cases 29 // Much less restricted LargeMmapAllocator chunks list (comparing to 30 // PtrArrayStatic). Backed by mmaped memory region and can hold up to 1M chunks. 67 // This class can (de)allocate only large chunks of memory using mmap/unmap. 207 Header **chunks = AddressSpaceView::LoadWritable(chunks_, n_chunks_); local in function:LargeMmapAllocator::EnsureSortedChunks 208 Sort(reinterpret_cast<uptr *>(chunks), n_chunks_); 210 AddressSpaceView::LoadWritable(chunks[i])->chunk_idx = i; 240 // There are 2 chunks left, choose one. 274 // Iterate over all existing chunks 278 const Header *const *chunks = AddressSpaceView::Load(chunks_, n_chunks_); local in function:LargeMmapAllocator::ForEachChunk [all...] |
/src/usr.bin/split/ |
split.c | 80 off_t chunks = 0; /* Number of chunks to split into. */ local in function:main 126 case 'n': /* Chunks. */ 128 (chunks = (size_t)strtoul(optarg, &ep, 10)) == 0 || 130 errx(EXIT_FAILURE, "%s: illegal number of chunks.", optarg); 156 else if (bytecnt || chunks) 159 if (bytecnt && chunks) 164 else if (chunks) 165 split3(chunks); 289 * Split the input into specified number of chunks [all...] |
/src/sys/arch/arm/arm32/ |
arm32_kvminit.c | 530 pv_addr_t chunks[__arraycount(bmi->bmi_l2pts) + 11]; local in function:arm32_kernel_vm_init 552 for (size_t i = 0; i < __arraycount(chunks); i++) { 553 SLIST_INSERT_HEAD(&bmi->bmi_freechunks, &chunks[i], pv_list); 810 VPRINTF("Listing Chunks\n"); 819 VPRINTF("\nMapping Chunks\n");
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_allocator_test.cc | 210 // Allocate a bunch of chunks. 459 uint32_t chunks[kNumChunks]; local in function:TEST 460 a->GetFromAllocator(&stats, 30, chunks, kNumChunks); 531 uint32_t chunks[kNumChunks]; local in function:TEST 534 if (!a.GetFromAllocator(&stats, 52, chunks, kNumChunks)) { 921 // Allocate a bunch of chunks. 1049 // In a world where regions are small and chunks are huge... 1299 // Verify that there are no released pages touched by used chunks and all 1300 // ranges of free chunks big enough to contain the entire memory pages had 1331 // chunks were released [all...] |
/src/lib/libc/stdlib/ |
jemalloc.c | 44 * + Memory is managed in chunks and runs (chunks can be split into runs), 93 * Huge : Each allocation is backed by a dedicated contiguous set of chunks. 302 * Size and alignment of memory chunks that are allocated by the OS's virtual 413 /* Number of chunks that were allocated. */ 416 /* High-water mark for number of chunks allocated. */ 420 * Current number of chunks allocated. This value isn't maintained for 434 /* Tree of chunks. */ 496 * detection of empty chunks fast. 576 * almost-empty chunks 617 rb_tree_t chunks; member in struct:arena_s [all...] |
/src/sys/external/bsd/drm/dist/shared-core/ |
radeon_drm.h | 775 uint64_t chunks; /* this points to uint64_t * which point to member in struct:drm_radeon_cs 776 cs chunks */
|
radeon_drv.h | 255 struct drm_radeon_kernel_chunk *chunks; member in struct:drm_radeon_cs_parser
|
/src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
amdgpu_drm.h | 560 /** this points to __u64 * which point to cs chunks */ 561 __u64 chunks; member in struct:drm_amdgpu_cs_in
|
radeon_drm.h | 988 /* this points to __u64 * which point to cs chunks */ 989 __u64 chunks; member in struct:drm_radeon_cs
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu.h | 487 /* chunks */ 489 struct amdgpu_cs_chunk *chunks; member in struct:amdgpu_cs_parser
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon.h | 1108 /* chunks */ 1110 struct radeon_cs_chunk *chunks; member in struct:radeon_cs_parser 1120 /* indices of various chunks */
|