Home
last modified time | relevance | path

Searched refs:strlen (Results 1 – 25 of 136) sorted by relevance

123456

/picolibc-latest/newlib/libc/machine/ft32/
Dstpcmp.S17 .global strlen
18 .type strlen,@function
19 strlen: label
20 strlen.b $r0,$r0
23 .size strlen,.Lend2-strlen
Dstrlen.S17 .global strlen
18 .type strlen,@function
19 strlen: label
20 strlen.b $r0,$r0
23 .size strlen,.Lend2-strlen
/picolibc-latest/newlib/libc/machine/xtensa/
Dstrlen.S32 .global strlen
33 .type strlen, @function
34 strlen: label
117 .size strlen, . - strlen
/picolibc-latest/newlib/libc/machine/arm/
Dstrlen-thumb1-Os.S43 def_fn strlen p2align=1
52 .size strlen, . - strlen
Dstrlen-thumb2-Os.S49 def_fn strlen p2align=1
64 .size strlen, . - strlen
/picolibc-latest/test/
Dtest-memmove_s.c113 res = memmove_s(buf + 7, sizeof(buf) - 7, buf, strlen(buf) + 1); in main()
121 res = memmove_s(buf + 7, 5, buf, strlen(buf) + 1); in main()
129 res = memmove_s(NULL, sizeof(buf), buf, strlen(buf) + 1); in main()
135 res = memmove_s(buf, sizeof(buf), NULL, strlen(buf) + 1); in main()
Dtest-memcpy_s.c114 res = memcpy_s(dest, sizeof(dest), src, strlen(src) + 1); in main()
122 res = memcpy_s(dest, 5, src, strlen(src) + 1); in main()
130 res = memcpy_s(NULL, sizeof(dest), src, strlen(src) + 1); in main()
136 res = memcpy_s(dest, sizeof(dest), NULL, strlen(src) + 1); in main()
Dtime-sprintf.c31 assert( strlen( s_testData ) == 100 ); in Test5()
32 assert( strlen( s_testFmt ) == 102 ); in Test5()
Dtest-memset_s.c113 res = memset_s(buf, sizeof(buf), 'A', strlen("Hello, world!")); in main()
129 res = memset_s(NULL, sizeof(buf), 'C', strlen("Hello, world!")); in main()
135 res = memset_s(buf, 0, 'D', strlen("Hello, world!")); in main()
Dtest-funopen.c127 check(memcmp(test_buf, MESSAGE, strlen(MESSAGE)) == 0, "printf"); in main()
130 check(ret == strlen(MESSAGE), "fread size"); in main()
131 check(memcmp(buf, MESSAGE, strlen(MESSAGE)) == 0, "fread contents"); in main()
/picolibc-latest/semihost/
Dsys_rename.c49 .field2 = strlen(old_pathname), in sys_semihost_rename()
51 .field4 = strlen(new_pathname) in sys_semihost_rename()
/picolibc-latest/newlib/libc/argz/
Dargz_create.c33 *argz_len += (strlen(argv[argc]) + 1); in argz_create()
44 len = strlen(argv[i]) + 1; in argz_create()
Denvz_add.c29 name_len = strlen(name); in envz_add()
30 val_len = strlen(value); in envz_add()
Dargz_create_sep.c45 len = strlen(token); in argz_create_sep()
62 len = strlen(token) + 1; in argz_create_sep()
Dargz_replace.c22 const size_t str_len = strlen(str); in argz_replace()
23 const size_t with_len = strlen(with); in argz_replace()
/picolibc-latest/newlib/libc/machine/x86/
Dstrlen-32.S15 .global SYM (strlen)
16 SOTYPE_FUNCTION(strlen)
18 SYM (strlen):
/picolibc-latest/newlib/testsuite/newlib.string/
Dtstring.c112 if (strcmp (target, "A") || strlen(target) != 1 || memchr (target, 'A', 0) != NULL in main()
153 if (strcmp (target, "X") || strlen (target) != 1 || in main()
177 strlen (target) != 2 || memchr (target, 'Y', 2) != target || in main()
190 strlen (target) != 2 || memchr (target, 'W', 2) != target || in main()
222 strlen (target) != 3) in main()
230 memcmp (target, "ZZZ", 3) >= 0 || strlen (target) != 3 || in main()
242 strlen (target) != 3) in main()
324 strlen (tmp1) != i || memchr (tmp1, first_char, i) != tmp1 || in main()
/picolibc-latest/newlib/libc/stdio/
Dtmpnam.c180 length = strlen (dir) + strlen (prefix) + (4 * sizeof (int)) + 2 + 1; in tempnam()
/picolibc-latest/newlib/libc/iconv/lib/
Diconvnls.c66 int dirlen = strlen (dir); in _iconv_nls_construct_filename()
71 len1 = strlen (path); in _iconv_nls_construct_filename()
72 len2 = strlen (file); in _iconv_nls_construct_filename()
73 len3 = ext ? strlen (ext) : 0; in _iconv_nls_construct_filename()
Daliasesi.c105 l = strlen (alias); in find_alias()
157 p = find_alias (ca, _iconv_aliases, strlen (_iconv_aliases)); in _iconv_resolve_encoding_name()
/picolibc-latest/newlib/libc/machine/hppa/
Dstrlen.S28 ENTRY(strlen)
81 EXIT(strlen)
/picolibc-latest/newlib/libc/machine/arc/
DCMakeLists.txt64 strlen-bs-norm.S
65 strlen-bs.S
66 strlen.S
67 strlen-stub.c
Dmeson.build61 'strlen-bs-norm.S',
62 'strlen-bs.S',
63 'strlen.S',
64 'strlen-stub.c',
/picolibc-latest/newlib/libc/stdlib/
Dsetenv.c58 l_value = strlen (value); in setenv()
66 if (strlen (C) >= l_value) in setenv()
/picolibc-latest/newlib/libc/posix/
Dregerror.c137 assert(strlen(convbuf) < sizeof(convbuf)); in regerror()
143 len = strlen(s) + 1; in regerror()

123456