HomeSort by: relevance | last modified time | path
    Searched defs:ssize (Results 1 - 11 of 11) sorted by relevancy

  /src/usr.bin/systat/
fetch.c 65 size_t ssize; local in function:fetch_cptime
73 ssize = CPUSTATES * sizeof(u_int64_t);
74 memset(cptime, 0, ssize);
78 if (sysctl(mib, 2, cptime, &ssize, NULL, 0) < 0) {
  /src/tests/lib/libc/sys/
t_lwp_create.c 109 static const size_t ssize = 16*1024; local in function:ATF_TC_BODY
111 stack = malloc(ssize);
112 _lwp_makecontext(&uc, lwp_main_func, NULL, NULL, stack, ssize);
135 static const size_t ssize = 16*1024; local in function:ATF_TC_BODY
137 stack = malloc(ssize);
138 _lwp_makecontext(&uc, lwp_main_func, NULL, NULL, stack, ssize);
  /src/sys/dev/ieee1394/
fwdma.c 146 * each segment size is equal to ssize except last segment.
154 bus_size_t ssize; local in function:fwdma_malloc_multiseg
160 esize = ssize = roundup2(esize, PAGE_SIZE);
164 ssize = rounddown(PAGE_SIZE, esize);
165 nseg = howmany(n, ssize / esize);
174 am->ssize = ssize;
181 ssize, alignment, flags);
fwdma.h 55 bus_size_t ssize; member in struct:fwdma_alloc_multi
65 bus_size_t ssize = am->ssize; local in function:fwdma_v_addr
68 return (char *)am->seg[offset / ssize].v_addr + (offset % ssize);
74 bus_size_t ssize = am->ssize; local in function:fwdma_bus_addr
77 return am->seg[offset / ssize].bus_addr + (offset % ssize);
86 off = (am->esize * start) % am->ssize;
    [all...]
  /src/sys/fs/tmpfs/
tmpfs_subr.c 375 int ssize = 0; local in function:tmpfs_construct_node
381 ssize = strlen(target);
382 KASSERT(ssize < MAXPATHLEN);
383 if (ssize > 0) {
384 slink = tmpfs_strname_alloc(tmp, ssize);
387 memcpy(slink, target, ssize);
395 tmpfs_strname_free(tmp, slink, ssize);
403 tmpfs_strname_free(tmp, slink, ssize);
412 tmpfs_strname_free(tmp, slink, ssize);
421 node->tn_size = ssize;
    [all...]
  /src/sbin/newfs_lfs/
make_lfs.c 409 int ssize; /* Segment size */ local in function:make_lfs
473 if (!(ssize = seg_size)) {
474 ssize = DFL_LFSSEG;
476 ssize = SMALL_LFSSEG;
486 /* Sanity check: fsize<=bsize<ssize */
493 if (bsize >= ssize) {
494 /* Only fatal if ssize was explicitly set */
498 progname, ssize, DFL_LFSSEG);
499 ssize = DFL_LFSSEG;
534 segshift = lfs_log2(ssize);
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.cc 253 static void ClearShadowMemoryForContextStack(uptr stack, uptr ssize) {
257 ssize += stack - bottom;
258 ssize = RoundUpTo(ssize, PageSize);
260 if (AddrIsInMem(bottom) && ssize && ssize <= kMaxSaneContextStackSize) {
261 PoisonShadow(bottom, ssize, 0);
275 uptr stack, ssize; local in function:INTERCEPTOR
276 ReadContextStack(ucp, &stack, &ssize);
277 ClearShadowMemoryForContextStack(stack, ssize);
    [all...]
  /src/sys/arch/aarch64/aarch64/
db_trace.c 243 vsize_t ssize = 0, lr_off = 0; variable in typeref:typename:vsize_t
265 * sub sp, sp, #ALLOCSIZE -> ssize += ALLOCSIZE
266 * sub sp, sp, #ALLOCSIZE, lsl #12 -> ssize += (ALLOCSIZE << 12)
270 * sub sp, sp, xN -> ssize += ALLOCSIZE
272 * stp x30, x??, [sp, #-ALLOCSIZE]! -> ssize =+ ALLOCSIZE, lr_off=0
273 * stp x??, x30, [sp, #-ALLOCSIZE]! -> ssize =+ ALLOCSIZE, lr_off=8
274 * stp x??, x??, [sp, #-ALLOCSIZE]! -> ssize =+ ALLOCSIZE
276 * str x30, [sp, #-ALLOCSIZE]! -> ssize =+ ALLOCSIZE, lr_off=0
318 ssize += imm12;
354 ssize += v
    [all...]
  /src/lib/libc/db/hash/
hash.h 74 int32_t ssize; /* Segment Size */ member in struct:hashhdr
284 #define SGSIZE hdr.ssize
  /src/lib/libc/regex/
regcomp.c 111 sopno ssize; /* malloced strip size (allocated) */ member in struct:parse
317 p->ssize = (sopno)(len / 2 * 3 + 1); /* ugh */
318 assert(p->ssize >= len);
320 p->strip = calloc(p->ssize, sizeof(*p->strip));
1856 if (!enlarge(p, p->ssize + len)) /* this many unexpected additions */
1885 if (p->slen >= p->ssize)
1886 if (!enlarge(p, (p->ssize+1) / 2 * 3)) /* +50% */
1960 if (p->ssize >= size)
1969 p->ssize = size;
  /src/usr.bin/vmstat/
vmstat.c 888 size_t ssize; local in function:dosum
897 ssize = sizeof(uvmexp);
898 memset(&uvmexp, 0, ssize);
903 &ssize, NULL, 0) == -1)
1088 ssize = sizeof(nch_stats);
1089 if (sysctlbyname("vfs.namecache_stats", &nch_stats, &ssize,

Completed in 18 milliseconds