Home
last modified time | relevance | path

Searched refs:usize (Results 1 – 25 of 25) sorted by relevance

/freebsd-12.1/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_b.h53 arena_prof_tctx_set(tsdn, ptr, usize, alloc_ctx, tctx); in prof_tctx_set()
84 if (likely(tdata->bytes_until_sample >= usize)) { in prof_sample_accum_update()
86 tdata->bytes_until_sample -= usize; in prof_sample_accum_update()
107 assert(usize == sz_s2u(usize)); in prof_alloc_prep()
126 assert(usize == isalloc(tsdn, ptr)); in prof_malloc()
129 prof_malloc_sample_object(tsdn, ptr, usize, tctx); in prof_malloc()
131 prof_tctx_set(tsdn, ptr, usize, alloc_ctx, in prof_malloc()
146 assert(usize == isalloc(tsd_tsdn(tsd), ptr)); in prof_realloc()
167 prof_tctx_set(tsd_tsdn(tsd), ptr, usize, NULL, in prof_realloc()
199 assert(usize == isalloc(tsd_tsdn(tsd), ptr)); in prof_free()
[all …]
H A Djemalloc_internal_inlines_c.h71 assert(usize != 0); in ipallocztm()
72 assert(usize == sz_sa2u(usize, alignment)); in ipallocztm()
93 ipalloc(tsd_t *tsd, size_t usize, size_t alignment, bool zero) { in ipalloc() argument
94 return ipallocztm(tsd_tsdn(tsd), usize, alignment, zero, in ipalloc()
141 size_t usize, copysize; in iralloct_realign() local
143 usize = sz_sa2u(size + extra, alignment); in iralloct_realign()
144 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in iralloct_realign()
147 p = ipalloct(tsdn, usize, alignment, zero, tcache, arena); in iralloct_realign()
153 usize = sz_sa2u(size, alignment); in iralloct_realign()
154 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in iralloct_realign()
[all …]
H A Dsz.h120 return usize; in sz_psz2u()
195 return usize; in sz_index2size_compute()
232 return usize; in sz_s2u_compute()
263 size_t usize; in sz_sa2u() local
284 if (usize < LARGE_MINCLASS) { in sz_sa2u()
285 return usize; in sz_sa2u()
297 usize = LARGE_MINCLASS; in sz_sa2u()
299 usize = sz_s2u(size); in sz_sa2u()
300 if (usize < size) { in sz_sa2u()
310 if (usize + sz_large_pad + PAGE_CEILING(alignment) - PAGE < usize) { in sz_sa2u()
[all …]
H A Dtcache_inlines.h47 size_t usize JEMALLOC_CC_SILENCE_INIT(0); in tcache_alloc_small()
73 usize = sz_index2size(binind); in tcache_alloc_small()
83 memset(ret, 0, usize); in tcache_alloc_small()
90 memset(ret, 0, usize); in tcache_alloc_small()
97 tcache->prof_accumbytes += usize; in tcache_alloc_small()
134 usize = sz_index2size(binind); in tcache_alloc_large()
135 assert(usize <= tcache_maxclass); in tcache_alloc_large()
142 usize); in tcache_alloc_large()
144 memset(ret, 0, usize); in tcache_alloc_large()
148 memset(ret, 0, usize); in tcache_alloc_large()
[all …]
H A Dprof_inlines_a.h45 prof_accum_cancel(tsdn_t *tsdn, prof_accum_t *prof_accum, size_t usize) { in prof_accum_cancel() argument
58 a1 = (a0 >= LARGE_MINCLASS - usize) ? a0 - (LARGE_MINCLASS - in prof_accum_cancel()
59 usize) : 0; in prof_accum_cancel()
65 a1 = (a0 >= LARGE_MINCLASS - usize) ? a0 - (LARGE_MINCLASS - usize) : in prof_accum_cancel()
H A Dlarge_externs.h4 void *large_malloc(tsdn_t *tsdn, arena_t *arena, size_t usize, bool zero);
5 void *large_palloc(tsdn_t *tsdn, arena_t *arena, size_t usize, size_t alignment,
9 void *large_ralloc(tsdn_t *tsdn, arena_t *arena, extent_t *extent, size_t usize,
H A Darena_externs.h32 size_t usize, size_t alignment, bool *zero);
57 void *arena_palloc(tsdn_t *tsdn, arena_t *arena, size_t usize,
59 void arena_prof_promote(tsdn_t *tsdn, const void *ptr, size_t usize);
H A Dprof_externs.h46 void prof_malloc_sample_object(tsdn_t *tsdn, const void *ptr, size_t usize,
48 void prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx);
H A Darena_inlines_b.h31 arena_prof_tctx_set(tsdn_t *tsdn, const void *ptr, UNUSED size_t usize, in arena_prof_tctx_set() argument
/freebsd-12.1/contrib/jemalloc/src/
H A Dlarge.c15 assert(usize == sz_s2u(usize)); in large_malloc()
30 ausize = sz_sa2u(usize, alignment); in large_palloc()
102 assert(oldusize > usize); in large_ralloc_no_move_shrink()
111 &extent_hooks, extent, usize + sz_large_pad, in large_ralloc_no_move_shrink()
136 size_t trailsize = usize - oldusize; in large_ralloc_no_move_expand()
181 szind_t szind = sz_size2index(usize); in large_ralloc_no_move_expand()
210 JEMALLOC_ALLOC_JUNK, usize - oldusize); in large_ralloc_no_move_expand()
267 return large_malloc(tsdn, arena, usize, zero); in large_ralloc_move_helper()
278 assert(usize > 0 && usize <= LARGE_MAXCLASS); in large_ralloc()
283 if (!large_ralloc_no_move(tsdn, extent, usize, usize, zero)) { in large_ralloc()
[all …]
H A Djemalloc.c1842 assert(usize > 0 && usize <= LARGE_MAXCLASS); in imalloc_body()
1846 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in imalloc_body()
1884 sopts, dopts, tsd, usize, usize, ind); in imalloc_body()
2214 size_t usize; in ifree() local
2335 ret = unlikely(usize == 0 || usize > LARGE_MAXCLASS) ? in je_realloc()
2668 size_t usize; in je_rallocx() local
2715 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in je_rallocx()
2759 size_t usize; in ixallocx_helper() local
2766 return usize; in ixallocx_helper()
2772 size_t usize; in ixallocx_prof_sample() local
[all …]
H A Darena.c295 usize = LARGE_MINCLASS; in arena_large_malloc_stats_update()
311 usize = LARGE_MINCLASS; in arena_large_dalloc_stats_update()
322 size_t usize) { in arena_large_ralloc_stats_update() argument
979 size_t usize; in arena_reset() local
1320 size_t usize; in arena_malloc_small() local
1363 memset(ret, 0, usize); in arena_malloc_small()
1396 ret = arena_malloc(tsdn, arena, usize, sz_size2index(usize), in arena_palloc()
1621 return arena_malloc(tsdn, arena, usize, sz_size2index(usize), in arena_ralloc_move_helper()
1624 usize = sz_sa2u(usize, alignment); in arena_ralloc_move_helper()
1625 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in arena_ralloc_move_helper()
[all …]
H A Dckh.c274 size_t usize; in ckh_grow() local
277 usize = sz_sa2u(sizeof(ckhc_t) << lg_curcells, CACHELINE); in ckh_grow()
278 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in ckh_grow()
282 tab = (ckhc_t *)ipallocztm(tsd_tsdn(tsd), usize, CACHELINE, in ckh_grow()
313 size_t usize; in ckh_shrink() local
322 usize = sz_sa2u(sizeof(ckhc_t) << lg_curcells, CACHELINE); in ckh_shrink()
323 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in ckh_shrink()
362 size_t mincells, usize; in ckh_new() local
398 usize = sz_sa2u(sizeof(ckhc_t) << lg_mincells, CACHELINE); in ckh_new()
399 if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) { in ckh_new()
[all …]
H A Dbase.c252 size_t usize = ALIGNMENT_CEILING(size, alignment); in base_block_alloc() local
264 + usize)); in base_block_alloc()
424 size_t usize = ALIGNMENT_CEILING(size, alignment); in base_alloc_impl() local
425 size_t asize = usize + alignment - QUANTUM; in base_alloc_impl()
438 extent = base_extent_alloc(tsdn, base, usize, alignment); in base_alloc_impl()
446 ret = base_extent_bump_alloc(base, extent, usize, alignment); in base_alloc_impl()
H A Dprof.c241 prof_malloc_sample_object(tsdn_t *tsdn, const void *ptr, size_t usize, in prof_malloc_sample_object() argument
243 prof_tctx_set(tsdn, ptr, usize, NULL, tctx); in prof_malloc_sample_object()
247 tctx->cnts.curbytes += usize; in prof_malloc_sample_object()
250 tctx->cnts.accumbytes += usize; in prof_malloc_sample_object()
257 prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx) { in prof_free_sampled_object() argument
260 assert(tctx->cnts.curbytes >= usize); in prof_free_sampled_object()
262 tctx->cnts.curbytes -= usize; in prof_free_sampled_object()
H A Dextent.c111 size_t usize, size_t pad, size_t alignment, bool slab, szind_t szind,
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lzop.c327 lzo_uint usize, csize; in drive_compressor() local
337 usize = (lzo_uint) in drive_compressor()
343 r = lzo1x_1_compress(data->uncompressed, usize, in drive_compressor()
348 r = lzo1x_1_15_compress(data->uncompressed, usize, in drive_compressor()
353 r = lzo1x_999_compress_level(data->uncompressed, usize, in drive_compressor()
365 archive_be32enc(p + header_bytes, (uint32_t)usize); in drive_compressor()
367 checksum = lzo_adler32(1, data->uncompressed, usize); in drive_compressor()
370 if (csize < usize) { in drive_compressor()
380 archive_be32enc(p + header_bytes + 4, (uint32_t)usize); in drive_compressor()
386 usize); in drive_compressor()
/freebsd-12.1/bin/ed/
H A Dundo.c36 static long usize = 0; /* stack size variable */ variable
47 (ustack = (undo_t *) malloc((usize = USIZE) * sizeof(undo_t))) == NULL) { in push_undo_stack()
54 if (u_p < usize || in push_undo_stack()
55 (t = (undo_t *) realloc(ustack, (usize += USIZE) * sizeof(undo_t))) != NULL) { in push_undo_stack()
68 usize = 0; in push_undo_stack()
/freebsd-12.1/usr.bin/gzip/
H A Dgzip.c1823 off_t usize, gsize; in handle_stdin() local
1920 (void)&usize; in handle_stdin()
1932 off_t usize; in handle_stdout() local
1964 usize = in handle_stdout()
2034 off_t usize, gsize; in handle_file() local
2042 print_test(file, usize != -1); in handle_file()
2044 if (usize == -1) in handle_file()
2051 usize = sbp->st_size; in handle_file()
2203 uint32_t usize; in print_list() local
2212 usize = le32dec(&buf[4]); in print_list()
[all …]
/freebsd-12.1/contrib/jemalloc/
H A DFREEBSD-diffs404 + size_t usize = je_xallocx(*ptr, size, extra, flags);
405 + ret = (usize >= size) ? ALLOCM_SUCCESS : ALLOCM_ERR_NOT_MOVED;
407 + *rsize = usize;
439 + size_t usize = je_nallocx(size, flags);
440 + if (usize == 0) {
444 + *rsize = usize;
/freebsd-12.1/contrib/gcc/
H A Dlocal-alloc.c1851 int usize, ssize; in combine_regs() local
1885 usize = hard_regno_nregs[ureg][GET_MODE (usedreg)]; in combine_regs()
1887 usize = ((GET_MODE_SIZE (GET_MODE (usedreg)) in combine_regs()
1929 || (offset > 0 && usize + offset > ssize) in combine_regs()
1930 || (offset < 0 && usize + offset < ssize) in combine_regs()
1933 || (ssize > usize && ureg >= FIRST_PSEUDO_REGISTER in combine_regs()
1934 && usize < qty[reg_qty[ureg]].size) in combine_regs()
2036 if (usize < ssize) in combine_regs()
/freebsd-12.1/sys/dev/iwi/
H A Dif_iwireg.h166 uint32_t usize; /* size of ucode image */ member
H A Dif_iwi.c2286 if (fp->datasize < sizeof(*hdr) + le32toh(hdr->bsize) + le32toh(hdr->usize) in iwi_get_firmware()
2296 sc->fw_uc.size = le32toh(hdr->usize); in iwi_get_firmware()
/freebsd-12.1/sys/crypto/ccp/
H A Dccp_hardware.c1422 enum ccp_xts_unitsize usize; in ccp_do_xts() local
1430 usize = ccp_xts_unitsize_map[i].cxu_id; in ccp_do_xts()
1456 desc->aes_xts.size = usize; in ccp_do_xts()
/freebsd-12.1/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_eeprom.c3991 usize = -1; in ar9300_eeprom_restore_internal_address()
3992 if (usize != mdata_size) { in ar9300_eeprom_restore_internal_address()
3995 __func__, usize, mdata_size); in ar9300_eeprom_restore_internal_address()