Searched refs:siz (Results 1 - 25 of 79) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libsmbclient/smbwrapper/
H A Dbsd-strlfunc.h3 extern size_t strlcpy(char *dst, const char *src, size_t siz);
4 extern size_t strlcat(char *dst, const char *src, size_t siz);
H A Dbsd-strlcpy.c39 * Copy src to string dst of size siz. At most siz-1 characters
40 * will be copied. Always NUL terminates (unless siz == 0).
41 * Returns strlen(src); if retval >= siz, truncation occurred.
44 smbw_strlcpy(char *dst, const char *src, size_t siz) argument
48 size_t n = siz;
60 if (siz != 0)
H A Dbsd-strlcat.c39 * Appends src to string dst of size siz (unlike strncat, siz is the
40 * full size of dst, not space left). At most siz-1 characters
41 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
42 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
43 * If retval >= siz, truncation occurred.
46 smbw_strlcat(char *dst, const char *src, size_t siz) argument
50 size_t n = siz;
57 n = siz - dlen;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dlocal_string_utils.h24 size_t flac__strlcpy(char *dst, const char *src, size_t siz);
25 size_t flac__strlcat(char *dst, const char *src, size_t siz);
H A Dlocal_string_utils.c30 * Copy src to string dst of size siz. At most siz-1 characters
31 * will be copied. Always NUL terminates (unless siz == 0).
32 * Returns strlen(src); if retval >= siz, truncation occurred.
35 flac__strlcpy(char *dst, const char *src, size_t siz) argument
39 register size_t n = siz;
51 if (siz != 0)
77 * Appends src to string dst of size siz (unlike strncat, siz is the
78 * full size of dst, not space left). At most siz
84 flac__strlcat(char *dst, const char *src, size_t siz) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/
H A Dstrlcpy.c42 * Copy src to string dst of size siz. At most siz-1 characters
43 * will be copied. Always NUL terminates (unless siz == 0).
44 * Returns strlen(src); if retval >= siz, truncation occurred.
47 _event_strlcpy(dst, src, siz)
50 size_t siz;
54 register size_t n = siz;
66 if (siz != 0)
H A Dstrlcpy-internal.h12 size_t _event_strlcpy(char *dst, const char *src, size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/
H A Dstrlcpy.c44 * Copy src to string dst of size siz. At most siz-1 characters
45 * will be copied. Always NUL terminates (unless siz == 0).
46 * Returns strlen(src); if retval >= siz, truncation occurred.
49 _event_strlcpy(dst, src, siz)
52 size_t siz;
56 register size_t n = siz;
68 if (siz != 0)
H A Dstrlcpy-internal.h14 size_t _event_strlcpy(char *dst, const char *src, size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/buffer/
H A Dbuf_str.c80 char *BUF_strndup(const char *str, size_t siz) argument
87 siz = BUF_strnlen(str, siz);
89 if (siz >= INT_MAX)
92 ret = OPENSSL_malloc(siz + 1);
98 memcpy(ret, str, siz);
99 ret[siz] = '\0';
104 void *BUF_memdup(const void *data, size_t siz) argument
108 if (data == NULL || siz >= INT_MAX)
111 ret = OPENSSL_malloc(siz);
[all...]
H A Dbuffer.h92 * first |siz| bytes of |str|.
94 char *BUF_strndup(const char *str, size_t siz);
96 void *BUF_memdup(const void *data, size_t siz);
97 void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
100 size_t BUF_strlcpy(char *dst, const char *src, size_t siz);
101 size_t BUF_strlcat(char *dst, const char *src, size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/buffer/
H A Dbuf_str.c80 char *BUF_strndup(const char *str, size_t siz) argument
87 siz = BUF_strnlen(str, siz);
89 if (siz >= INT_MAX)
92 ret = OPENSSL_malloc(siz + 1);
98 memcpy(ret, str, siz);
99 ret[siz] = '\0';
104 void *BUF_memdup(const void *data, size_t siz) argument
108 if (data == NULL || siz >= INT_MAX)
111 ret = OPENSSL_malloc(siz);
[all...]
H A Dbuffer.h92 * first |siz| bytes of |str|.
94 char *BUF_strndup(const char *str, size_t siz);
96 void *BUF_memdup(const void *data, size_t siz);
97 void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
100 size_t BUF_strlcpy(char *dst, const char *src, size_t siz);
101 size_t BUF_strlcat(char *dst, const char *src, size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/missing/
H A Dstrlcpy.c45 * Copy src to string dst of size siz. At most siz-1 characters
46 * will be copied. Always NUL terminates (unless siz == 0).
47 * Returns strlen(src); if retval >= siz, truncation occurred.
50 strlcpy(char *dst, const char *src, size_t siz) argument
54 register size_t n = siz;
66 if (siz != 0)
H A Dstrlcat.c45 * Appends src to string dst of size siz (unlike strncat, siz is the
46 * full size of dst, not space left). At most siz-1 characters
47 * will be copied. Always NUL terminates (unless siz == 0).
48 * Returns strlen(src); if retval >= siz, truncation occurred.
51 strlcat(char *dst, const char *src, size_t siz) argument
55 register size_t n = siz;
62 n = siz - dlen;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dbuffer.h89 char * BUF_strndup(const char *str, size_t siz);
90 void * BUF_memdup(const void *data, size_t siz);
93 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
94 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/buffer/
H A Dbuffer.h89 char * BUF_strndup(const char *str, size_t siz);
90 void * BUF_memdup(const void *data, size_t siz);
93 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
94 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
H A Dbuffer.c171 char *BUF_strndup(const char *str, size_t siz) argument
177 ret=OPENSSL_malloc(siz+1);
183 BUF_strlcpy(ret,str,siz+1);
187 void *BUF_memdup(const void *data, size_t siz) argument
193 ret=OPENSSL_malloc(siz);
199 return memcpy(ret, data, siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DFileDetailListCtrl.h35 CFileDetailListCtrl(wxWindow * &parent, int id, const wxPoint & pos, wxSize siz, int flags);
H A DFileDetailListCtrl.cpp36 CFileDetailListCtrl::CFileDetailListCtrl(wxWindow * &parent, int id, const wxPoint & pos, wxSize siz, int flags):CMuleListCtrl(parent, id, pos, siz, flags) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/partitions/
H A Datari.h19 __be32 siz; /* length of partition */ member in struct:partition_info
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dlogger.h34 int siz; member in struct:log
H A Dlogger.c60 log_open(siz, fname)
61 size_t siz;
71 p->buf = (char **)racoon_malloc(sizeof(char *) * siz);
76 memset(p->buf, 0, sizeof(char *) * siz);
78 p->tbuf = (time_t *)racoon_malloc(sizeof(time_t *) * siz);
84 memset(p->tbuf, 0, sizeof(time_t *) * siz);
86 p->siz = siz;
109 p->head %= p->siz;
190 for (i = 0; i < p->siz;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/win/bmed/
H A Dutil.h77 char *Path(char *const dst, const size_t siz, const char *const parent, const char *const fname);
78 char *OurDirectoryPath(char *const dst, const size_t siz, const char *const fname);
82 char *OurInstallationPath(char *const dst, const size_t siz, const char *const fname);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/dynload/
H A Dcload.c428 s16 siz; local
433 siz = nsecs * sizeof(struct doff_scnhdr_t);
436 siz);
438 DL_ERROR(err_alloc, siz);
444 if (dlthis->strm->read_buffer(dlthis->strm, shp, siz) != siz) {
451 dload_reorder(shp, siz, dlthis->reorder_map);
454 if (~dload_checksum(dlthis->sect_hdrs, siz) !=
473 u16 curr_sect, nsecs, siz; local
490 siz
704 u32 sym_count, siz, dsiz, symbols_left; local
1079 int siz; local
[all...]

Completed in 166 milliseconds

1234