Home
last modified time | relevance | path

Searched refs:sizep (Results 1 – 25 of 29) sorted by relevance

12

/dragonfly/lib/libc/gen/
H A Dsysctlnametomib.c42 sysctlnametomib(const char *name, int *mibp, size_t *sizep) in sysctlnametomib() argument
50 *sizep *= sizeof(int); in sysctlnametomib()
51 error = sysctl(oid, 2, mibp, sizep, name, strlen(name)); in sysctlnametomib()
52 *sizep /= sizeof(int); in sysctlnametomib()
/dragonfly/lib/libc/stdio/
H A Dopen_memstream.c45 size_t *sizep; member
82 *ms->sizep = ms->len < ms->offset ? ms->len : ms->offset; in memstream_update()
170 open_memstream(char **bufp, size_t *sizep) in open_memstream() argument
176 if (bufp == NULL || sizep == NULL) { in open_memstream()
192 ms->sizep = sizep; in open_memstream()
H A Dopen_wmemstream.c45 size_t *sizep; member
83 *ms->sizep = ms->len < ms->offset ? ms->len : ms->offset; in wmemstream_update()
231 open_wmemstream(wchar_t **bufp, size_t *sizep) in open_wmemstream() argument
237 if (bufp == NULL || sizep == NULL) { in open_wmemstream()
253 ms->sizep = sizep; in open_wmemstream()
/dragonfly/lib/libc/xdr/
H A Dxdr_array.c70 xdr_array(XDR *xdrs, caddr_t *addrp, u_int *sizep, u_int maxsize, u_int elsize, in xdr_array() argument
80 if (!xdr_u_int(xdrs, sizep)) { in xdr_array()
83 c = *sizep; in xdr_array()
H A Dxdr.c560 xdr_bytes(XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize) in xdr_bytes() argument
569 if (! xdr_u_int(xdrs, sizep)) { in xdr_bytes()
572 nodesize = *sizep; in xdr_bytes()
/dragonfly/stand/lib/
H A Dsbrk.c48 getheap(size_t *sizep) in getheap() argument
50 *sizep = maxheap; in getheap()
/dragonfly/contrib/cryptsetup/lib/
H A Dbackends.c17 const char *passphrase, size_t sizep) in hash() argument
40 EVP_DigestUpdate(mdctx, passphrase, sizep); in hash()
H A Dgcrypt.c41 int sizep, const char *passphrase) in gcrypt_hash() argument
56 gcry_md_write(md, passphrase, sizep); in gcrypt_hash()
H A Dinternal.h34 int sizep, const char *passphrase);
65 const char *passphrase, size_t sizep);
/dragonfly/bin/ed/
H A Dio.c218 get_extended_line(int *sizep, int nonl) in get_extended_line() argument
229 *sizep = l; in get_extended_line()
232 *sizep = -1; in get_extended_line()
254 *sizep = l; in get_extended_line()
/dragonfly/stand/boot/efi/loader/arch/x86_64/
H A Dframebuffer.c223 uint64_t *sizep) in efifb_uga_locate_framebuffer() argument
235 *sizep = 0; in efifb_uga_locate_framebuffer()
259 if (size > *sizep) { in efifb_uga_locate_framebuffer()
261 *sizep = size; in efifb_uga_locate_framebuffer()
264 return ((*addrp == 0 || *sizep == 0) ? EFI_DEVICE_ERROR : 0); in efifb_uga_locate_framebuffer()
/dragonfly/sys/kern/
H A Dkern_xio.c197 xio_uio_copy(xio_t xio, int uoffset, struct uio *uio, size_t *sizep) in xio_uio_copy() argument
209 *sizep = bytes; in xio_uio_copy()
211 *sizep = 0; in xio_uio_copy()
/dragonfly/sys/bus/u4b/
H A Dusb_hid.c803 void **descp, uint16_t *sizep, in usbd_req_get_hid_desc() argument
819 *sizep = UGETW(hid->descrs[0].wDescriptorLength); in usbd_req_get_hid_desc()
820 if (*sizep == 0) { in usbd_req_get_hid_desc()
826 *descp = kmalloc(*sizep, mem, M_ZERO | M_WAITOK); in usbd_req_get_hid_desc()
835 (udev, lock, *descp, *sizep, iface_index); in usbd_req_get_hid_desc()
H A Dusbhid.h243 void **descp, uint16_t *sizep, struct malloc_type *mem,
/dragonfly/sys/libprop/
H A Dprop_data.c386 uint8_t *target, size_t targsize, size_t *sizep, in _prop_data_internalize_decode() argument
524 if (sizep != NULL) in _prop_data_internalize_decode()
525 *sizep = tarindex; in _prop_data_internalize_decode()
H A Dprop_object.c505 char *target, size_t targsize, size_t *sizep, in _prop_object_internalize_decode_string() argument
566 if (sizep != NULL) in _prop_object_internalize_decode_string()
567 *sizep = tarindex; in _prop_object_internalize_decode_string()
/dragonfly/contrib/binutils-2.34/libctf/
H A Dctf-open.c82 ssize_t *sizep, ssize_t *incrementp, size_t lsize, in get_ctt_size_common() argument
99 if (sizep) in get_ctt_size_common()
100 *sizep = size; in get_ctt_size_common()
109 ssize_t *sizep, ssize_t *incrementp) in get_ctt_size_v1() argument
113 return (get_ctt_size_common (fp, tp, sizep, incrementp, in get_ctt_size_v1()
123 ssize_t *sizep, ssize_t *incrementp) in get_ctt_size_v2_unconverted() argument
127 return (get_ctt_size_common (fp, tp, sizep, incrementp, in get_ctt_size_v2_unconverted()
135 ssize_t *sizep, ssize_t *incrementp) in get_ctt_size_v2() argument
137 return (get_ctt_size_common (fp, tp, sizep, incrementp, in get_ctt_size_v2()
H A Dctf-impl.h345 ssize_t *sizep, in ctf_get_ctt_size() argument
348 return (fp->ctf_fileops->ctfo_get_ctt_size (fp, tp, sizep, incrementp)); in ctf_get_ctt_size()
/dragonfly/sys/sys/
H A Dxio.h95 int xio_uio_copy(xio_t xio, int uoffset, struct uio *uio, size_t *sizep);
/dragonfly/usr.sbin/makefs/msdos/
H A Dmsdosfs_fat.c79 u_long *sizep, u_long *bop);
95 fatblock(struct msdosfsmount *pmp, u_long ofs, u_long *bnp, u_long *sizep, in fatblock() argument
107 if (sizep) in fatblock()
108 *sizep = size; in fatblock()
/dragonfly/sys/platform/pc64/x86_64/
H A Dbusdma_machdep.c1316 bus_size_t *sizep) in add_bounce_page() argument
1349 size = *sizep; in add_bounce_page()
1357 if (size < *sizep) { in add_bounce_page()
1358 *sizep = size; in add_bounce_page()
1360 size = *sizep; in add_bounce_page()
/dragonfly/contrib/binutils-2.34/bfd/
H A Dsyms.c804 unsigned int *sizep) in _bfd_generic_read_minisymbols() argument
838 *sizep = sizeof (asymbol *); in _bfd_generic_read_minisymbols()
1546 unsigned int *sizep ATTRIBUTE_UNUSED) in _bfd_nosymbols_read_minisymbols()
/dragonfly/sys/vfs/msdosfs/
H A Dmsdosfs_fat.c80 fatblock(struct msdosfsmount *pmp, u_long ofs, u_long *bnp, u_long *sizep, in fatblock() argument
91 if (sizep) in fatblock()
92 *sizep = size; in fatblock()
/dragonfly/contrib/gdb-7/readline/
H A Dbind.c770 _rl_read_file (filename, sizep) in _rl_read_file() argument
772 size_t *sizep;
809 if (sizep)
810 *sizep = i;
/dragonfly/contrib/gdb-7/bfd/
H A Dsyms.c800 unsigned int *sizep) in _bfd_generic_read_minisymbols() argument
827 *sizep = sizeof (asymbol *); in _bfd_generic_read_minisymbols()

12