Searched defs:totsize (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libmapmalloc/common/
H A Dtextmem.c129 size_t totsize = size + HDR_PAGE; local
130 size_t totpage = align(totsize, pagesize);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dfnmatch.c284 size_t totsize; local
300 totsize = patsize + strsize;
301 if (__builtin_expect (! (patsize <= totsize
302 && totsize <= SIZE_MAX / sizeof (wchar_t)),
310 if (__builtin_expect (totsize < ALLOCA_LIMIT, 1))
311 wpattern = (wchar_t *) alloca (totsize * sizeof (wchar_t));
314 wpattern = malloc (totsize * sizeof (wchar_t));
331 if (__builtin_expect (! (totsize < ALLOCA_LIMIT), 0))
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkgtrans.c776 int partcnt, totsize; local
797 totsize = 0;
807 totsize += statbuf.st_size/BLK_SIZE + 1;
811 * totsize contains number of blocks used by the pkginfo files
813 totsize += i/4 + 1;
814 if (dstdev.capacity && totsize > dstdev.capacity) {
816 logerr(pkg_gt(MSG_NOSPACE), totsize, dstdev.capacity); local
867 totsize += nparts * maxpsize;
868 if (dstdev.capacity && dstdev.capacity < totsize) {
880 if (totsize)
[all...]

Completed in 25 milliseconds