Home
last modified time | relevance | path

Searched refs:strstr (Results 1 – 12 of 12) sorted by relevance

/picolibc-latest/newlib/libm/test/
Dstring.c308 check(strstr("z", "abcd") == NULL); /* Not found. */ in test_string()
309 check(strstr("abx", "abcd") == NULL); /* Dead end. */ in test_string()
311 check(strstr(one,"c") == one+2); /* Basic test. */ in test_string()
312 check(strstr(one, "bc") == one+1); /* Multichar. */ in test_string()
313 check(strstr(one,"d") == one+3); /* End of string. */ in test_string()
314 check(strstr(one,"cd") == one+2); /* Tail of string. */ in test_string()
315 check(strstr(one,"abc") == one); /* Beginning. */ in test_string()
316 check(strstr(one,"abcd") == one); /* Exact match. */ in test_string()
317 check(strstr(one,"de") == NULL); /* Past end. */ in test_string()
318 check(strstr(one,"") == one); /* Finding empty. */ in test_string()
[all …]
/picolibc-latest/newlib/libc/stdlib/
Dwcstod.c206 char *d = strstr (buf, decimal_point); in wcstod_l()
278 char *d = strstr (buf, decimal_point); in wcstof_l()
Dwcstold.c102 char *d = strstr (buf, decimal_point); in wcstold_l()
/picolibc-latest/newlib/libc/string/
Dstrstr.c84 strstr (const char *hs, const char *ne) in strstr() function
161 strstr (const char *haystack, const char *needle) in strstr() function
Dstrings.tex65 * Function strstr:: Find string segment
197 @include string/strstr.def
DCMakeLists.txt91 strstr.c
Dmeson.build90 'strstr.c',
/picolibc-latest/newlib/libc/tinystdio/
Dsprintf_s.c61 } else if (strstr(fmt, " %n") != NULL) { in sprintf_s()
/picolibc-latest/newlib/libc/include/
Dstring.h183 char *strstr (const char *, const char *);
/picolibc-latest/newlib/
DNEWS93 - performance enhancements for qsort, strstr
DChangeLog-20154660 periodic needle having false positive. Affects memmem, strstr,
8955 Make strstr and strcasestr O(n), not O(n^2); add memmem.
8959 * libc/string/strstr.c (strstr): Provide O(n) implementation when
26928 strncmp.c strncpy.c strpbrk.c strrchr.c strspn.c strstr.c strtok.c
/picolibc-latest/
DCOPYING.picolibc2473 newlib/libc/string/strstr.c