Home
last modified time | relevance | path

Searched refs:local_s (Results 1 – 3 of 3) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/
Dstrlen_ea.c44 void *local_s; in strlen_ea() local
53 local_s = __cache_fetch (curr_s); in strlen_ea()
54 where_null = memchr (local_s, '\0', left_in_cacheline); in strlen_ea()
59 (int) local_s); in strlen_ea()
Dmemchr_ea.c44 void *local_s; in memchr_ea() local
56 local_s = __cache_fetch (curr_s); in memchr_ea()
57 where = memchr (local_s, c, search_size); in memchr_ea()
62 ((size_ea_t) (int) where - (size_ea_t) (int) local_s); in memchr_ea()
Dstrspn_ea.c44 char *local_s; in strspn_ea() local
53 local_s = (char *) __cache_fetch (curr_s); in strspn_ea()
54 if (!strchr (accept, local_s[0])) in strspn_ea()