Searched refs:size_t (Results 1 - 25 of 10989) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/diff/lib/
H A Dcmpbuf.h20 size_t block_read (int, char *, size_t);
21 size_t buffer_lcm (size_t, size_t, size_t);
/freebsd-13-stable/contrib/tcpdump/lbl/
H A Dos-osf4.h23 int snprintf(char *, size_t, const char *, ...);
24 int vsnprintf(char *, size_t, const char *, va_list);
/freebsd-13-stable/lib/libprocstat/
H A Dzfs_defs.h33 extern size_t sizeof_znode_t;
34 extern size_t offsetof_z_id;
35 extern size_t offsetof_z_size;
36 extern size_t offsetof_z_mode;
/freebsd-13-stable/crypto/openssh/
H A Dxmalloc.h20 void *xmalloc(size_t);
21 void *xcalloc(size_t, size_t);
22 void *xreallocarray(void *, size_t, size_t);
23 void *xrecallocarray(void *, size_t, size_t, size_t);
H A Datomicio.h35 size_t
36 atomicio6(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n,
37 int (*cb)(void *, size_t), void *);
38 size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
40 #define vwrite (ssize_t (*)(int, void *, size_t))write
45 size_t
47 const struct iovec *_iov, int iovcnt, int (*cb)(void *, size_t), voi
[all...]
/freebsd-13-stable/contrib/mandoc/
H A Dmandoc_aux.h21 void *mandoc_calloc(size_t, size_t);
22 void *mandoc_malloc(size_t);
23 void *mandoc_realloc(void *, size_t);
24 void *mandoc_reallocarray(void *, size_t, size_t);
25 void *mandoc_recallocarray(void *, size_t, size_t, size_t);
27 char *mandoc_strndup(const char *, size_t);
[all...]
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/
H A Djemalloc_typedefs.h5 * extent_alloc(extent_hooks_t *extent_hooks, void *new_addr, size_t size,
6 * size_t alignment, bool *zero, bool *commit, unsigned arena_ind);
8 typedef void *(extent_alloc_t)(extent_hooks_t *, void *, size_t, size_t, bool *,
13 * extent_dalloc(extent_hooks_t *extent_hooks, void *addr, size_t size,
16 typedef bool (extent_dalloc_t)(extent_hooks_t *, void *, size_t, bool,
21 * extent_destroy(extent_hooks_t *extent_hooks, void *addr, size_t size,
24 typedef void (extent_destroy_t)(extent_hooks_t *, void *, size_t, bool,
29 * extent_commit(extent_hooks_t *extent_hooks, void *addr, size_t size,
30 * size_t offse
[all...]
/freebsd-13-stable/contrib/libexecinfo/
H A Dexecinfo.h38 size_t backtrace(void **, size_t);
39 char **backtrace_symbols(void *const *, size_t);
40 int backtrace_symbols_fd(void *const *, size_t, int);
41 char **backtrace_symbols_fmt(void *const *, size_t, const char *);
42 int backtrace_symbols_fd_fmt(void *const *, size_t, int, const char *);
/freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dcompress.h38 extern size_t compress(void *, void *, size_t);
39 extern size_t decompress(void *, void *, size_t, size_t);
40 extern uint32_t checksum32(void *, size_t);
/freebsd-13-stable/contrib/libpcap/lbl/
H A Dos-osf4.h23 int pcap_snprintf(char *, size_t, const char *, ...);
24 int pcap_vsnprintf(char *, size_t, const char *, va_list);
H A Dos-osf5.h27 int pcap_snprintf(char *, size_t, const char *, ...);
28 int pcap_vsnprintf(char *, size_t, const char *, va_list);
H A Dos-solaris2.h24 int pcap_snprintf(char *, size_t, const char *, ...);
/freebsd-13-stable/contrib/netcat/
H A Datomicio.h35 size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
37 #define vwrite (ssize_t (*)(int, void *, size_t))write
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_core/hsalsa20/
H A Dcore_hsalsa20.c3 size_t
8 size_t
13 size_t
18 size_t
/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dder-private.h24 size_t /*len*/,
26 size_t */*size*/);
33 size_t /*len*/,
35 size_t */*size*/);
41 size_t /*len*/,
43 size_t */*size*/);
50 size_t
67 size_t /*reallen*/,
68 size_t */*len*/);
70 size_t
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/
H A Dgenerichash_blake2.c4 size_t
9 size_t
14 size_t
19 size_t
24 size_t
29 size_t
34 size_t
39 size_t
44 size_t
47 return (sizeof(crypto_generichash_blake2b_state) + (size_t) 6
[all...]
/freebsd-13-stable/contrib/wpa/src/utils/
H A Dbase64.h12 unsigned char * base64_encode(const unsigned char *src, size_t len,
13 size_t *out_len);
14 unsigned char * base64_decode(const unsigned char *src, size_t len,
15 size_t *out_len);
16 unsigned char * base64_url_encode(const unsigned char *src, size_t len,
17 size_t *out_len, int add_pad);
18 unsigned char * base64_url_decode(const unsigned char *src, size_t len,
19 size_t *out_len);
/freebsd-13-stable/sbin/rcorder/
H A Dealloc.h4 void *emalloc(size_t len);
6 void *erealloc(void *ptr, size_t size);
7 void *ecalloc(size_t nmemb, size_t size);
/freebsd-13-stable/contrib/ntp/include/
H A Drc_cmdlength.h2 extern size_t remoteconfig_cmdlength( const char *src_buf, const char *src_end );
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/
H A Dhash_sha256.c3 size_t
9 size_t
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/
H A Dhash_sha512.c3 size_t
9 size_t
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/
H A Dshorthash_siphash24.c3 size_t
8 size_t
H A Dshorthash_siphashx24.c3 size_t
8 size_t
/freebsd-13-stable/stand/arm64/libarm64/
H A Dcache.h35 void cpu_flush_dcache(const void *, size_t);
36 void cpu_inval_icache(const void *, size_t);
/freebsd-13-stable/tools/tools/ifinfo/
H A Difinfo.h34 typedef void (*printfcn)(const void *, size_t);
36 extern void print_1650(const void *, size_t);

Completed in 386 milliseconds

1234567891011>>