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

12

/external/mksh/src/
H A Dstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
25 * will be copied. Always NUL terminates (unless siz == 0).
26 * Returns strlen(src); if retval >= siz, truncation occurred.
29 strlcpy(char *dst, const char *src, size_t siz) argument
33 if (siz == 0)
37 while (--siz && (*dst++ = *s++))
41 if (siz == 0) {
42 /* safe to NUL-terminate dst since we copied <= siz-1 chars */
/external/chromium/third_party/libevent/
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);
/external/llvm/lib/Support/
H A Dregstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
25 * will be copied. Always NUL terminates (unless siz == 0).
26 * Returns strlen(src); if retval >= siz, truncation occurred.
29 llvm_strlcpy(char *dst, const char *src, size_t siz) argument
33 size_t n = siz;
45 if (siz != 0)
H A Dregex_impl.h102 size_t llvm_strlcpy(char *dst, const char *src, size_t siz);
/external/openssh/openbsd-compat/
H A Dstrlcpy.c28 * Copy src to string dst of size siz. At most siz-1 characters
29 * will be copied. Always NUL terminates (unless siz == 0).
30 * Returns strlen(src); if retval >= siz, truncation occurred.
33 strlcpy(char *dst, const char *src, size_t siz) argument
37 size_t n = siz;
49 if (siz != 0)
H A Dstrlcat.c28 * Appends src to string dst of size siz (unlike strncat, siz is the
29 * full size of dst, not space left). At most siz-1 characters
30 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
31 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
32 * If retval >= siz, truncation occurred.
35 strlcat(char *dst, const char *src, size_t siz) argument
39 size_t n = siz;
46 n = siz - dlen;
H A Dvis.c147 * Strnvis will write no more than siz-1 bytes (and will NULL terminate).
166 strnvis(char *dst, const char *src, size_t siz, int flag) argument
173 for (start = dst, end = start + siz - 1; (c = *src) && dst < end; ) {
199 if (siz > 0)
/external/tcpdump/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;
/external/openssl/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);
91 void BUF_reverse(unsigned char *out, unsigned char *in, size_t siz);
94 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
95 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
H A Dbuf_str.c69 char *BUF_strndup(const char *str, size_t siz) argument
75 ret=OPENSSL_malloc(siz+1);
81 BUF_strlcpy(ret,str,siz+1);
85 void *BUF_memdup(const void *data, size_t siz) argument
91 ret=OPENSSL_malloc(siz);
97 return memcpy(ret, data, siz);
/external/openssl/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);
91 void BUF_reverse(unsigned char *out, unsigned char *in, size_t siz);
94 size_t BUF_strlcpy(char *dst,const char *src,size_t siz);
95 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
/external/dropbear/
H A Dcompat.h35 size_t strlcat(char *dst, const char *src, size_t siz);
H A Dcompat.c120 * Appends src to string dst of size siz (unlike strncat, siz is the
121 * full size of dst, not space left). At most siz-1 characters
122 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
123 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
124 * If retval >= siz, truncation occurred.
127 strlcat(dst, src, siz)
130 size_t siz;
134 register size_t n = siz;
141 n = siz
[all...]
/external/ipsec-tools/src/racoon/
H A Dlogger.h39 int siz; member in struct:log
H A Dlogger.c64 log_open(siz, fname)
65 size_t siz;
75 p->buf = (char **)racoon_malloc(sizeof(char *) * siz);
80 memset(p->buf, 0, sizeof(char *) * siz);
82 p->tbuf = (time_t *)racoon_malloc(sizeof(time_t *) * siz);
88 memset(p->tbuf, 0, sizeof(time_t *) * siz);
90 p->siz = siz;
113 p->head %= p->siz;
194 for (i = 0; i < p->siz;
[all...]
/external/regex-re2/util/
H A Dbenchmark.cc66 static void runN(Benchmark *b, int n, int siz) { argument
74 b->fnr(n, siz);
95 void RunBench(Benchmark* b, int nthread, int siz) { argument
104 runN(b, n, siz);
114 runN(b, n, siz);
124 if(siz >= (1<<20))
125 snprintf(suf, sizeof suf, "/%dM", siz/(1<<20));
126 else if(siz >= (1<<10))
127 snprintf(suf, sizeof suf, "/%dK", siz/(1<<10));
129 snprintf(suf, sizeof suf, "/%d", siz);
[all...]
/external/svox/pico/lib/
H A Dpicopal.c107 picopal_int32 picopal_strncmp(const picopal_char *a, const picopal_char *b, picopal_objsize_t siz) { argument
108 return (picopal_int32)strncmp((const char *)a, (const char *)b, (size_t) siz);
132 /* copy src into dst, but make sure that dst is not accessed beyond its size 'siz' and is allways NULLC-terminated.
133 * 'siz' is the number of bytes of the destination, including one byte for NULLC!
135 * the copy is successfull without truncation if picopal_strlcpy(dst,src,siz) < siz */
136 picopal_objsize_t picopal_strlcpy(picopal_char *dst, const picopal_char *src, picopal_objsize_t siz) argument
140 picopal_objsize_t n = siz;
153 if (siz != 0) {
176 picopal_objsize_t picopal_vslprintf(picopal_char * dst, picopal_objsize_t siz, cons argument
237 picopal_slprintf(picopal_char * dst, picopal_objsize_t siz, const picopal_char *fmt, ...) argument
[all...]
H A Dpicopal.h128 picopal_int32 picopal_strncmp(const picopal_char *a, const picopal_char *b, picopal_objsize_t siz);
143 picopal_objsize_t picopal_vslprintf(picopal_char * dst, picopal_objsize_t siz, const picopal_char *fmt, va_list args);
144 picopal_objsize_t picopal_slprintf(picopal_char * dst, picopal_objsize_t siz, const picopal_char *fmt, /*args*/ ...);
145 picopal_objsize_t picopal_strlcpy(picopal_char *dst, const picopal_char *src, picopal_objsize_t siz);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Drandom.c171 size_t siz, i; local
176 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
177 for (i = 0; i < siz; i++)
179 left -= siz;
186 size_t siz, i; local
195 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
196 for (i = 0; i < siz; i++)
198 left -= siz;
/external/wpa_supplicant_8/src/crypto/
H A Drandom.c171 size_t siz, i; local
176 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
177 for (i = 0; i < siz; i++)
179 left -= siz;
186 size_t siz, i; local
195 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
196 for (i = 0; i < siz; i++)
198 left -= siz;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Drandom.c171 size_t siz, i; local
176 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
177 for (i = 0; i < siz; i++)
179 left -= siz;
186 size_t siz, i; local
195 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
196 for (i = 0; i < siz; i++)
198 left -= siz;
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dos_win32.c200 size_t os_strlcpy(char *dest, const char *src, size_t siz) argument
203 size_t left = siz;
215 if (siz != 0)
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_win32.c213 size_t os_strlcpy(char *dest, const char *src, size_t siz) argument
216 size_t left = siz;
228 if (siz != 0)

Completed in 1490 milliseconds

12