HomeSort by relevance Sort by last modified time
    Searched refs:siz (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /bionic/libc/upstream-openbsd/lib/libc/string/
strdup.c 41 size_t siz; local
44 siz = strlen(str) + 1;
45 if ((copy = malloc(siz)) == NULL)
47 (void)memcpy(copy, str, siz);
  /external/mksh/src/
strlcpy.c 24 * 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)
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/libevent/
strlcpy.c 42 * 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)
strlcpy-internal.h 12 size_t _event_strlcpy(char *dst, const char *src, size_t siz);
  /external/llvm/lib/Support/
regstrlcpy.c 24 * 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)
33 size_t n = siz;
45 if (siz != 0)
  /external/openssh/openbsd-compat/
strlcpy.c 28 * 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)
37 size_t n = siz;
49 if (siz != 0)
strlcat.c 28 * 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)
39 size_t n = siz;
46 n = siz - dlen;
  /external/swiftshader/third_party/LLVM/lib/Support/
regstrlcpy.c 24 * 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)
33 size_t n = siz;
45 if (siz != 0)
  /external/tcpdump/missing/
strlcpy.c 42 * 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 strlcpy(char *dst, const char *src, size_t siz)
51 register size_t n = siz;
63 if (siz != 0)
strlcat.c 42 * Appends src to string dst of size siz (unlike strncat, siz is the
43 * full size of dst, not space left). At most siz-1 characters
44 * will be copied. Always NUL terminates (unless siz == 0).
45 * Returns strlen(src); if retval >= siz, truncation occurred.
48 strlcat(char *dst, const char *src, size_t siz)
52 register size_t n = siz;
59 n = siz - dlen;
  /system/bt/osi/src/
compat.cc 60 * Copy src to string dst of size siz. At most siz-1 characters
61 * will be copied. Always NUL terminates (unless siz == 0).
62 * Returns strlen(src); if retval >= siz, truncation occurred.
64 size_t strlcpy(char* dst, const char* src, size_t siz) {
67 size_t n = siz;
78 if (siz != 0) *d = '\0'; /* NUL-terminate dst */
89 * Appends src to string dst of size siz (unlike strncat, siz is the
90 * full size of dst, not space left). At most siz-1 character
    [all...]
  /system/core/libcutils/
strlcpy.c 28 * 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)
37 size_t n = siz;
49 if (siz != 0)
  /system/bt/osi/include/
compat.h 31 /* Copy src to string dst of size siz. */
32 size_t strlcpy(char* dst, const char* src, size_t siz);
34 /* Appends src to string dst of size siz. */
35 size_t strlcat(char* dst, const char* src, size_t siz);
  /external/libedit/src/
strlcat.c 38 * 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...]
strlcpy.c 38 * 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)
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcslcat.c 42 * Appends src to string dst of size siz (unlike wcsncat, siz is the
43 * full size of dst, not space left). At most siz-1 characters
44 * will be copied. Always NUL terminates (unless siz == 0).
45 * Returns wcslen(initial dst) + wcslen(src); if retval >= siz,
49 wcslcat(wchar_t *dst, const wchar_t *src, size_t siz)
53 size_t n = siz;
60 n = siz - dlen;
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
strlcat.c 50 * Appends src to string dst of size siz (unlike strncat, siz is the
51 * full size of dst, not space left). At most siz-1 characters
52 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
53 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
54 * If retval >= siz, truncation occurred.
57 strlcat(char *dst, const char *src, size_t siz)
61 size_t n = siz;
71 n = siz - dlen;
strlcpy.c 50 * Copy src to string dst of size siz. At most siz-1 characters
51 * will be copied. Always NUL terminates (unless siz == 0).
52 * Returns strlen(src); if retval >= siz, truncation occurred.
55 strlcpy(char *dst, const char *src, size_t siz)
59 size_t n = siz;
74 if (siz != 0)
  /external/ipsec-tools/src/racoon/
logger.h 39 int siz; member in struct:log
logger.c 64 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; i++)
    [all...]
  /external/regex-re2/util/
benchmark.cc 66 static void runN(Benchmark *b, int n, int siz) {
74 b->fnr(n, siz);
95 void RunBench(Benchmark* b, int nthread, int siz) {
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...]
  /frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
CameraTooTest.java 107 Size[] siz = local
110 assertOptimalSize(siz, 0, 0, empty);
112 assertOptimalSize(siz, 1, 0, fatAndFlat);
113 assertOptimalSize(siz, 0, 1, tallAndThin);
115 assertOptimalSize(siz, 4, 4, smallSquare);
116 assertOptimalSize(siz, 1, 1, smallSquare);
117 assertOptimalSize(siz, 2, 1, smallSquare);
118 assertOptimalSize(siz, 1, 2, smallSquare);
119 assertOptimalSize(siz, 3, 4, smallSquare);
120 assertOptimalSize(siz, 4, 3, smallSquare)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
data.go 41 siz := int(lsiz)
42 if int64(siz) != lsiz {
45 if len(s.P) >= siz {
50 for cap(s.P) < siz {
53 s.P = s.P[:siz]
70 // prepwrite prepares to write data of size siz into s at offset off.
71 func (s *LSym) prepwrite(ctxt *Link, off int64, siz int) {
72 if off < 0 || siz < 0 || off >= 1<<30 {
73 log.Fatalf("prepwrite: bad off=%d siz=%d", off, siz)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
data.go 41 siz := int(lsiz)
42 if int64(siz) != lsiz {
45 if len(s.P) >= siz {
50 for cap(s.P) < siz {
53 s.P = s.P[:siz]
70 // prepwrite prepares to write data of size siz into s at offset off.
71 func (s *LSym) prepwrite(ctxt *Link, off int64, siz int) {
72 if off < 0 || siz < 0 || off >= 1<<30 {
73 log.Fatalf("prepwrite: bad off=%d siz=%d", off, siz)
    [all...]
  /external/llvm/tools/llvm-c-test/
disassemble.c 38 unsigned char *buf, int siz) {
50 while (pos < siz) {
51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,

Completed in 686 milliseconds

1 2 3 4 5