Searched refs:size_t (Results 26 - 50 of 2191) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libc/inc/
H A Dmse_int.h38 extern size_t wcsftime(wchar_t *, size_t, const char *, const struct tm *);
39 extern size_t __wcsftime_xpg5(wchar_t *, size_t, const wchar_t *,
/osnet-11/usr/src/lib/libc/port/gen/
H A Dstrlcpy.c39 size_t
40 strlcpy(char *dst, const char *src, size_t len)
42 size_t slen = strlen(src);
43 size_t copied;
H A Dtls_data.c34 __thread size_t __strdupa_len;
H A Dstrlcat.c40 size_t
41 strlcat(char *dst, const char *src, size_t dstsize)
44 size_t left = dstsize;
45 size_t l1;
46 size_t l2 = strlen(src);
47 size_t copied;
H A Dstrnlen.c37 size_t
38 strnlen(const char *str, size_t maxlen)
/osnet-11/usr/src/lib/libproc/common/
H A DPutil.h56 extern void prset_fill(void *, size_t);
57 extern void prset_empty(void *, size_t);
58 extern void prset_add(void *, size_t, uint_t);
59 extern void prset_del(void *, size_t, uint_t);
60 extern int prset_ismember(void *, size_t, uint_t);
/osnet-11/usr/src/lib/libmapmalloc/common/
H A Dcalloc.c35 calloc(size_t num, size_t size)
38 size_t total = num * size;
53 cfree(void *p, size_t num, size_t size)
/osnet-11/usr/src/lib/libdhcpsvc/modules/util/
H A Dutil.h47 extern void nhconvert(void *, const void *, size_t);
51 extern int pnread(int, void *, size_t, off_t);
52 extern int pnwrite(int, const void *, size_t, off_t);
53 extern void escape(char, const char *, char *, size_t);
54 extern void unescape(char, const char *, char *, size_t);
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_strtab.h41 size_t str_off; /* offset in bytes of this string */
42 size_t str_len; /* length in bytes of this string */
52 size_t str_bufsz; /* size of individual buffer */
54 size_t str_size; /* total size of strings in bytes */
57 typedef ssize_t dt_strtab_write_f(const char *, size_t, size_t, void *);
59 extern dt_strtab_t *dt_strtab_create(size_t);
63 extern size_t dt_strtab_size(const dt_strtab_t *);
66 extern ulong_t dt_strtab_hash(const char *, size_t *);
H A Ddt_string.h36 extern size_t stresc2chr(char *);
37 extern char *strchr2esc(const char *, size_t);
/osnet-11/usr/src/lib/libsmbns/common/
H A Dsmbns_hash.h82 size_t hi_flags;
93 size_t he_count;
110 size_t ht_sequence;
111 size_t ht_table_size;
112 size_t ht_table_mask;
113 size_t ht_key_size;
114 size_t ht_total_items; /* show total number of available items */
115 size_t ht_flags;
116 size_t (*ht_hash)(struct ht_handle *handle, const char *key);
118 int (*ht_cmp)(const char *key1, const char *key2, size_t
[all...]
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dxalloc.h56 void *xmalloc (size_t s) ATTRIBUTE_MALLOC;
57 void *xzalloc (size_t s) ATTRIBUTE_MALLOC;
58 void *xcalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
59 void *xrealloc (void *p, size_t s);
60 void *x2realloc (void *p, size_t *pn);
61 void *xmemdup (void const *p, size_t s) ATTRIBUTE_MALLOC;
73 sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
77 ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t)
[all...]
/osnet-11/usr/src/lib/libsoftcrypto/common/
H A Dlibsoftcrypto.h96 ucrypto_mech_t mech_type, uchar_t *key_str, size_t key_len,
97 void *iv, size_t iv_len);
100 size_t in_len, uchar_t *out, size_t *out_len);
103 size_t *out_len);
107 size_t key_len, void *iv, size_t iv_len, uchar_t *in,
108 size_t in_len, uchar_t *out, size_t *out_len);
112 ucrypto_mech_t mech_type, uchar_t *key_str, size_t key_le
[all...]
/osnet-11/usr/src/lib/libumem/common/
H A Dumem_base.h39 extern size_t pagesize;
91 extern size_t umem_transaction_log_size;
92 extern size_t umem_content_log_size;
93 extern size_t umem_failure_log_size;
94 extern size_t umem_slab_log_size;
95 extern size_t umem_content_maxsave;
96 extern size_t umem_lite_minsize;
97 extern size_t umem_lite_maxalign;
98 extern size_t umem_maxverify;
99 extern size_t umem_minfirewal
[all...]
/osnet-11/usr/src/lib/libast/common/path/
H A Dpathnative.c40 size_t
41 pathnative(const char* path, char* buf, size_t siz)
52 size_t
53 pathnative(const char* path, char* buf, size_t siz)
55 size_t n;
74 size_t
75 pathnative(const char* path, char* buf, size_t siz)
78 size_t n;
97 size_t
98 pathnative(const char* path, char* buf, size_t si
[all...]
H A Dpathposix.c40 size_t
41 pathposix(const char* path, char* buf, size_t siz)
52 size_t
53 pathposix(const char* path, char* buf, size_t siz)
55 size_t n;
74 size_t
75 pathposix(const char* path, char* buf, size_t siz)
78 size_t n;
97 size_t
98 pathposix(const char* path, char *buf, size_t si
[all...]
/osnet-11/usr/src/lib/libresolv2/include/isc/
H A Dirpmarshall.h48 int irp_marshall_pw(const struct passwd *, char **, size_t *);
50 int irp_marshall_gr(const struct group *, char **, size_t *);
52 int irp_marshall_sv(const struct servent *, char **, size_t *);
54 int irp_marshall_pr(struct protoent *, char **, size_t *);
56 int irp_marshall_ho(struct hostent *, char **, size_t *);
59 char **, size_t *);
61 int irp_marshall_nw(struct nwent *, char **, size_t *);
63 int irp_marshall_ne(struct netent *, char **, size_t *);
83 * int irp_marshall_XX(struct yyyy *XX, char **buffer, size_t *len);
H A Dmemcluster.h39 int meminit(size_t, size_t);
40 void * __memget(size_t);
41 void __memput(void *, size_t);
42 void * __memget_debug(size_t, const char *, int);
43 void __memput_debug(void *, size_t, const char *, int);
44 void * __memget_record(size_t, const char *, int);
45 void __memput_record(void *, size_t, const char *, int);
/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dcollate.h35 const void *data1, size_t data1_len,
36 const void *data2, size_t data2_len);
/osnet-11/usr/src/lib/fm/libasr/common/
H A Dasr_mem.h36 extern void *asr_alloc(size_t size);
37 extern void *asr_zalloc(size_t size);
/osnet-11/usr/src/lib/fm/libldom/sparc/
H A Dldom_alloc.c29 ldom_alloc(size_t size)
35 ldom_free(void *data, size_t size)
H A Dldom_alloc.h36 extern void *ldom_alloc(size_t size);
37 extern void ldom_free(void *data, size_t size);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dstrnlen1.c27 size_t
28 strnlen1 (const char *string, size_t maxlen)
/osnet-11/usr/src/cmd/sendmail/db/include/
H A Dos.h22 size_t pagesize; /* Page size. */
25 size_t bytes; /* Bytes read/written. */
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dwcsnlen.c35 size_t
36 wcsnlen(const wchar_t *str, size_t maxlen)

Completed in 64 milliseconds

1234567891011>>