Searched refs:tmpsize (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_straddch.c54 size_t tmpsize; local
59 tmpsize = MIN_STR_SIZE;
60 if ((tmpstr = malloc(tmpsize)) == NULL) {
66 *size = tmpsize;
70 tmpsize = *size * 2;
71 if ((tmpstr = realloc(*str, tmpsize)) == NULL) {
76 *size = tmpsize;
/freebsd-11-stable/etc/rc.d/
H A Dtmp44 mount_md ${tmpsize} /tmp "${tmpmfs_flags}"
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_object.c103 int tmpsize = sizeof(ftmp); local
180 if (blsize > tmpsize) {
183 tmpsize = blsize + 32;
184 tmp = OPENSSL_malloc(tmpsize);
/freebsd-11-stable/lib/libfetch/
H A Dcommon.c1124 size_t tmpsize; local
1148 tmpsize = conn->bufsize * 2 + 1;
1149 if ((tmp = realloc(tmp, tmpsize)) == NULL) {
1154 conn->bufsize = tmpsize;
/freebsd-11-stable/etc/defaults/
H A Drc.conf51 tmpsize="20m" # Size of mfs /tmp if created
/freebsd-11-stable/sys/net/
H A Dflowtable.c765 int curbit, tmpsize; local
770 tmpsize = ft->ft_size;
819 bit_ffs(tmpmask, tmpsize, &curbit);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-debug.c436 int tmpsize = cvmx_debug_strlen(tmp); local
438 char *packet = __builtin_alloca(tmpsize + bufsize + 1);
440 cvmx_debug_strcpy(&packet[tmpsize], buf);
/freebsd-11-stable/sys/i386/i386/
H A Dpmap.c5239 vm_size_t tmpsize; local
5281 for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE) {
5285 pmap_kenter_attr(va + tmpsize, pa + tmpsize,
5290 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
5292 pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp1126 uptr tmpsize; local
1128 if (ReadFileToBuffer("/proc/self/cmdline", &tmpbuf, &tmpsize, &tmplen,
1131 UnmapOrDie(tmpbuf, tmpsize);
/freebsd-11-stable/sys/amd64/amd64/
H A Dpmap.c6940 vm_size_t tmpsize;
6993 for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE)
6994 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
6995 pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
6997 pmap_invalidate_cache_range(va, va + tmpsize, FALSE);
6939 vm_size_t tmpsize; local

Completed in 154 milliseconds