Home
last modified time | relevance | path

Searched refs:HASZERO (Results 1 – 24 of 24) sorted by relevance

/third_party/musl/porting/liteos_a/kernel/src/string/
Dstrchrnul.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
Dstrlen.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
Dstpcpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
Dmemchr.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
Dstpncpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
Dstrlcpy.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
24 for (; n>=sizeof(size_t) && !HASZERO(*ws); in strlcpy()
/third_party/musl/porting/liteos_m/kernel/src/string/
Dstrchrnul.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
Dstrlen.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
Dstpcpy.c8 #define HASZERO(x) (((x)-ONES) & ~(x) & HIGHS) macro
20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
Dmemchr.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
Dstpncpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
/third_party/musl/porting/uniproton/kernel/src/string/
Dstrchrnul.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
Dstrlen.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
Dstpcpy.c8 #define HASZERO(x) (((x)-ONES) & ~(x) & HIGHS) macro
20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
Dmemchr.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
Dstpncpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
/third_party/musl/src/string/
Dstrchrnul.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
Dstrlen.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
Dstpcpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
Dmemchr.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
Dstpncpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
Dstrlcpy.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
24 for (; n>=sizeof(size_t) && !HASZERO(*ws); in strlcpy()
Dmemccpy.c8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
25 for (; n>=sizeof(size_t) && !HASZERO(*ws^k); in memccpy()
/third_party/musl/porting/liteos_m/user/src/string/
Dstrlen.c9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro
18 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()