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

/freebsd-9.3-release/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-9.3-release/etc/rc.d/
H A Dtmp43 mount_md ${tmpsize} /tmp "${tmpmfs_flags}"
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Da_object.c92 int tmpsize = sizeof ftmp; local
169 if (blsize > tmpsize) {
172 tmpsize = blsize + 32;
173 tmp = OPENSSL_malloc(tmpsize);
/freebsd-9.3-release/usr.bin/truss/
H A Dsyscalls.c784 int i, tmpsize, u, used; local
793 tmpsize = 1 + per_fd * numfds + 2;
794 if ((tmp = malloc(tmpsize)) == NULL)
796 tmpsize);
824 int i, tmpsize, u, used; local
833 tmpsize = 1 + numfds * per_fd + 2;
834 if ((tmp = malloc(tmpsize)) == NULL)
836 "output", tmpsize);
1094 int i, tmpsize, u, used; local
1110 tmpsize
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_fsops.c124 xfs_extlen_t tmpsize; local
211 tmpsize = agsize - XFS_PREALLOC_BLOCKS(mp);
212 agf->agf_freeblks = cpu_to_be32(tmpsize);
213 agf->agf_longest = cpu_to_be32(tmpsize);
/freebsd-9.3-release/etc/defaults/
H A Drc.conf50 tmpsize="20m" # Size of mfs /tmp if created
/freebsd-9.3-release/lib/libfetch/
H A Dcommon.c1025 size_t tmpsize; local
1049 tmpsize = conn->bufsize * 2 + 1;
1050 if ((tmp = realloc(tmp, tmpsize)) == NULL) {
1055 conn->bufsize = tmpsize;
/freebsd-9.3-release/sys/i386/xen/
H A Dpmap.c4012 vm_size_t tmpsize;
4025 for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE)
4026 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
4027 pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
4011 vm_size_t tmpsize; local
/freebsd-9.3-release/sys/amd64/amd64/
H A Dpmap.c5028 vm_size_t tmpsize;
5045 for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE)
5046 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
5047 pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
5048 pmap_invalidate_cache_range(va, va + tmpsize);
5027 vm_size_t tmpsize; local
/freebsd-9.3-release/sys/i386/i386/
H A Dpmap.c5059 vm_size_t tmpsize;
5072 for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE)
5073 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
5074 pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
5058 vm_size_t tmpsize; local

Completed in 222 milliseconds