| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| zero_realloc_free.c | 4 deallocated() { function 8 uint64_t deallocated; local 9 size_t sz = sizeof(deallocated); 10 expect_d_eq(mallctl("thread.deallocated", (void *)&deallocated, &sz, 12 return deallocated; 18 uint64_t deallocated_before = deallocated(); 20 uint64_t deallocated_after = deallocated();
|
| zero_realloc_alloc.c | 16 deallocated() { function 20 uint64_t deallocated; local 21 size_t sz = sizeof(deallocated); 22 expect_d_eq(mallctl("thread.deallocated", (void *)&deallocated, &sz, 24 return deallocated; 31 uint64_t deallocated_before = deallocated(); 34 uint64_t deallocated_after = deallocated();
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| zero_realloc_free.c | 4 deallocated(void) { function 8 uint64_t deallocated; local 9 size_t sz = sizeof(deallocated); 11 mallctl("thread.deallocated", (void *)&deallocated, &sz, NULL, 0), 13 return deallocated; 19 uint64_t deallocated_before = deallocated(); 21 uint64_t deallocated_after = deallocated();
|
| zero_realloc_alloc.c | 17 deallocated(void) { function 21 uint64_t deallocated; local 22 size_t sz = sizeof(deallocated); 24 mallctl("thread.deallocated", (void *)&deallocated, &sz, NULL, 0), 26 return deallocated; 33 uint64_t deallocated_before = deallocated(); 36 uint64_t deallocated_after = deallocated();
|
| /src/sys/ufs/ext2fs/ |
| ext2fs_balloc.c | 106 u_int deallocated; local 315 for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) { 317 deallocated += fs->e2fs_bsize; 345 if (deallocated) { 346 ext2fs_setnblock(ip, ext2fs_nblock(ip) - btodb(deallocated));
|
| /src/external/bsd/nsd/dist/ |
| netio.h | 72 netio_handler_list_type *deallocated; member in struct:netio 147 * instance is cleaned up when the REGION is deallocated.
|
| /src/sys/ufs/ffs/ |
| ffs_balloc.c | 121 int deallocated, osize, nsize, num, i, error; local 510 for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) { 512 deallocated += fs->fs_bsize; 514 if (deallocated) { 519 (void)chkdq(ip, -btodb(deallocated), cred, FORCE); 521 ip->i_ffs1_blocks -= btodb(deallocated); 539 int deallocated, osize, nsize, num, i, error; local 1030 for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) { 1032 deallocated += fs->fs_bsize; 1034 if (deallocated) { [all...] |
| /src/external/bsd/jemalloc.old/dist/src/ |
| jemalloc.c | 3142 uint64_t deallocated, threshold; local 3143 te_free_fastpath_ctx(tsd, &deallocated, &threshold); 3146 uint64_t deallocated_after = deallocated + usize;
|