| /src/external/bsd/jemalloc/dist/test/unit/ |
| sz.c | 11 for (size_t psz = i * PAGE + 1; psz <= (i + 1) * PAGE; psz++) { 12 pszind_t ind = sz_psz2ind(psz); 14 ind, i, "Got %u as sz_psz2ind of %zu", ind, psz); 42 for (size_t psz = base_psz; psz <= 64 * 1024 * 1024; psz += PAGE / 3) { 43 pszind_t ind = sz_psz2ind(psz); 45 expect_zu_gt(psz, [all...] |
| retained.c | 157 size_t psz = sz_pind2sz(pind); local 158 size_t psz_fragmented = psz % esz; 159 size_t psz_usable = psz - psz_fragmented;
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| sz.c | 11 for (size_t psz = i * PAGE + 1; psz <= (i + 1) * PAGE; psz++) { 12 pszind_t ind = sz_psz2ind(psz); 14 ind, i, "Got %u as sz_psz2ind of %zu", ind, psz); 42 for (size_t psz = base_psz; psz <= 64 * 1024 * 1024; psz += PAGE / 3) { 43 pszind_t ind = sz_psz2ind(psz); 45 expect_zu_gt(psz, [all...] |
| retained.c | 157 size_t psz = sz_pind2sz(pind); local 158 size_t psz_fragmented = psz % esz; 159 size_t psz_usable = psz - psz_fragmented;
|
| /src/sys/kern/ |
| subr_pserialize.c | 77 pserialize_t psz; local 79 psz = kmem_zalloc(sizeof(*psz), KM_SLEEP); 80 return psz; 89 pserialize_destroy(pserialize_t psz) 92 kmem_free(psz, sizeof(*psz)); 101 pserialize_perform(pserialize_t psz)
|
| kern_module_hook.c | 51 pserialize_t psz; member in struct:__anon6853 75 pserialize_perform(module_hook.psz); 95 pserialize_perform(module_hook.psz); 133 module_hook.psz = pserialize_create();
|
| /src/external/bsd/jemalloc/dist/test/integration/ |
| rallocx.c | 122 size_t psz, qsz, i, j; local 131 psz = sallocx(p, 0); 134 validate_fill(p, 0, 0, psz), "Expected zeroed memory"); 135 memset(p, FILL_BYTE, psz); 136 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 143 if (q != p || qsz != psz) { 145 validate_fill(q, FILL_BYTE, 0, psz), 148 validate_fill(q, 0, psz, qsz - psz), 151 if (psz != qsz) [all...] |
| /src/external/bsd/jemalloc.old/dist/test/integration/ |
| rallocx.c | 122 size_t psz, qsz, i, j; local 131 psz = sallocx(p, 0); 134 validate_fill(p, 0, 0, psz), "Expected zeroed memory"); 135 memset(p, FILL_BYTE, psz); 136 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 143 if (q != p || qsz != psz) { 145 validate_fill(q, FILL_BYTE, 0, psz), 148 validate_fill(q, 0, psz, qsz - psz), 151 if (psz != qsz) [all...] |
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| size_classes.sh | 100 psz="yes" 108 psz="yes" 110 psz="no" 142 printf ' SC(%3d, %6d, %8d, %6d, %3s, %3s, %3d, %2s) \\\n' ${index} ${lg_grp} ${lg_delta} ${ndelta} ${psz} ${bin} ${pgs} ${lg_delta_lookup} 144 # - psz ("yes" or "no") 165 echo " /* index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup */ \\" 183 if [ ${psz} = "yes" ] ; then 207 if [ ${psz} = "yes" ] ; then 215 if [ ${psz} = "yes" ] ; then 237 if [ ${psz} = "yes" ] ; the [all...] |
| sz.h | 63 sz_psz2ind(size_t psz) { 64 assert(psz > 0); 65 if (unlikely(psz > SC_LARGE_MAXCLASS)) { 68 /* x is the lg of the first base >= psz. */ 69 pszind_t x = lg_ceil(psz); 77 * off_to_first_ps_rg is 1 when psz is (PAGE * SC_NGROUP + 1). 94 * Let's write psz in binary, e.g. 0011 for 0x3, 0111 for 0x7. 95 * The leftmost bits whose len is lg_base decide the base of psz. 105 * Why use (psz - 1)? 106 * To handle case: psz % (1 << lg_delta) == 0 [all...] |
| sc.h | 323 bool psz; member in struct:sc_s
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| sz.h | 63 sz_psz2ind(size_t psz) { 64 assert(psz > 0); 65 if (unlikely(psz > SC_LARGE_MAXCLASS)) { 68 /* x is the lg of the first base >= psz. */ 69 pszind_t x = lg_ceil(psz); 77 * off_to_first_ps_rg is 1 when psz is (PAGE * SC_NGROUP + 1). 94 * Let's write psz in binary, e.g. 0011 for 0x3, 0111 for 0x7. 95 * The leftmost bits whose len is lg_base decide the base of psz. 105 * Why use (psz - 1)? 106 * To handle case: psz % (1 << lg_delta) == 0 [all...] |
| sc.h | 323 bool psz; member in struct:sc_s
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| sz.h | 63 sz_psz2ind(size_t psz) { 64 assert(psz > 0); 65 if (unlikely(psz > SC_LARGE_MAXCLASS)) { 68 /* x is the lg of the first base >= psz. */ 69 pszind_t x = lg_ceil(psz); 77 * off_to_first_ps_rg is 1 when psz is (PAGE * SC_NGROUP + 1). 94 * Let's write psz in binary, e.g. 0011 for 0x3, 0111 for 0x7. 95 * The leftmost bits whose len is lg_base decide the base of psz. 105 * Why use (psz - 1)? 106 * To handle case: psz % (1 << lg_delta) == 0 [all...] |
| sc.h | 323 bool psz; member in struct:sc_s
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| sz.h | 63 sz_psz2ind(size_t psz) { 64 assert(psz > 0); 65 if (unlikely(psz > SC_LARGE_MAXCLASS)) { 68 /* x is the lg of the first base >= psz. */ 69 pszind_t x = lg_ceil(psz); 77 * off_to_first_ps_rg is 1 when psz is (PAGE * SC_NGROUP + 1). 94 * Let's write psz in binary, e.g. 0011 for 0x3, 0111 for 0x7. 95 * The leftmost bits whose len is lg_base decide the base of psz. 105 * Why use (psz - 1)? 106 * To handle case: psz % (1 << lg_delta) == 0 [all...] |
| sc.h | 323 bool psz; member in struct:sc_s
|
| /src/external/gpl3/gcc/dist/gcc/jit/ |
| jit-w32.cc | 41 LPSTR psz = NULL; local 51 reinterpret_cast<LPSTR>(&psz), 56 fprintf (stderr, "%s\n", psz); 57 LocalFree (psz);
|
| /src/external/gpl3/gcc.old/dist/gcc/jit/ |
| jit-w32.cc | 41 LPSTR psz = NULL; local 51 reinterpret_cast<LPSTR>(&psz), 56 fprintf (stderr, "%s\n", psz); 57 LocalFree (psz);
|
| /src/external/bsd/jemalloc/dist/src/ |
| sc.c | 66 sc->psz = (size % (ZU(1) << lg_page) == 0); 68 assert(!sc->psz); 120 if (sc->psz) { 148 if (sc->psz) { 161 if (sc->psz) { 189 if (sc->psz) {
|
| eset.c | 76 size_t psz = sz_psz_quantize_floor(size); local 77 pszind_t pind = sz_psz2ind(psz); 119 size_t psz = sz_psz_quantize_floor(size); local 120 pszind_t pind = sz_psz2ind(psz);
|
| sz.c | 61 if (sc->psz) {
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| sc.c | 66 sc->psz = (size % (ZU(1) << lg_page) == 0); 68 assert(!sc->psz); 120 if (sc->psz) { 148 if (sc->psz) { 161 if (sc->psz) { 189 if (sc->psz) {
|
| eset.c | 76 size_t psz = sz_psz_quantize_floor(size); local 77 pszind_t pind = sz_psz2ind(psz); 119 size_t psz = sz_psz_quantize_floor(size); local 120 pszind_t pind = sz_psz2ind(psz);
|
| /src/sys/uvm/pmap/ |
| pmap_pvt.c | 64 pserialize_t psz; member in struct:__anon7779 73 pv_unmanaged.psz = pserialize_create(); 136 pserialize_perform(pv_unmanaged.psz);
|