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

123

/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.
30 strlcpy(char *dst, const char *src, size_t siz) argument
34 if (siz == 0)
38 while (--siz && (*dst++ = *s++))
42 if (siz == 0) {
43 /* safe to NUL-terminate dst since we copied <= siz-1 chars */
/external/chromium_org/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/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/libedit/src/
H A Dstrlcat.c38 * Appends src to string dst of size siz (unlike strncat, siz is the
39 * full size of dst, not space left). At most siz-1 characters
40 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
41 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
42 * If retval >= siz, truncation occurred.
45 strlcat(char *dst, const char *src, size_t siz)
50 size_t n = siz;
60 n = siz - dlen;
79 * Find length of string in dst (maxing out at siz)
[all...]
H A Dstrlcpy.c38 * Copy src to string dst of size siz. At most siz-1 characters
39 * will be copied. Always NUL terminates (unless siz == 0).
40 * Returns strlen(src); if retval >= siz, truncation occurred.
43 strlcpy(char *dst, const char *src, size_t siz)
47 size_t n = siz;
62 if (siz != 0)
/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, const 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, const 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/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/chromium_org/third_party/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/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/llvm/tools/llvm-c-test/
H A Ddisassemble.c36 static void do_disassemble(const char *triple, unsigned char *buf, int siz) { argument
47 while (pos < siz) {
48 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
/external/chromium_org/third_party/hwcplus/src/
H A Dhwcplus_util.c24 size_t strlcpy(char* dst, const char* src, size_t siz) { argument
27 size_t n = siz;
39 if (siz != 0)
/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/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_sync_test.cc26 EXPECT_EQ(mb->siz, 1 * sizeof(u64));
41 EXPECT_EQ(mb1->siz, 1 * sizeof(u64));
43 EXPECT_EQ(mb2->siz, 3 * sizeof(u64));
92 EXPECT_EQ(mb1->siz, 3 * sizeof(u64));
95 EXPECT_EQ(mb2->siz, 1 * sizeof(u64));
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_sha1.c48 sctp_sha1_update(struct sctp_sha1_context *ctx, const unsigned char *ptr, unsigned int siz) argument
50 PK11_DigestOp(ctx->pk11_ctx, ptr, siz);
71 sctp_sha1_update(struct sctp_sha1_context *ctx, const unsigned char *ptr, unsigned int siz) argument
73 SHA1_Update(&ctx->sha_ctx, ptr, (unsigned long)siz);
196 sctp_sha1_update(struct sctp_sha1_context *ctx, const unsigned char *ptr, unsigned int siz) argument
200 number_left = siz;

Completed in 5427 milliseconds

123