/third_party/musl/porting/liteos_a/kernel/src/string/ |
D | strchrnul.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
|
D | strlen.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
|
D | stpcpy.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
|
D | memchr.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
D | stpncpy.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
|
D | strlcpy.c | 9 #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/ |
D | strchrnul.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
|
D | strlen.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
|
D | stpcpy.c | 8 #define HASZERO(x) (((x)-ONES) & ~(x) & HIGHS) macro 20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
|
D | memchr.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
D | stpncpy.c | 8 #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/ |
D | strchrnul.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
|
D | strlen.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
|
D | stpcpy.c | 8 #define HASZERO(x) (((x)-ONES) & ~(x) & HIGHS) macro 20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
|
D | memchr.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
D | stpncpy.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
|
/third_party/musl/src/string/ |
D | strchrnul.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++); in __strchrnul()
|
D | strlen.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 17 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
|
D | stpcpy.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 20 for (; !HASZERO(*ws); *wd++ = *ws++); in __stpcpy()
|
D | memchr.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 21 for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS); in memchr()
|
D | stpncpy.c | 8 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 20 for (; n>=sizeof(size_t) && !HASZERO(*ws); in __stpncpy()
|
D | strlcpy.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 24 for (; n>=sizeof(size_t) && !HASZERO(*ws); in strlcpy()
|
D | memccpy.c | 8 #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/ |
D | strlen.c | 9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) macro 18 for (w = (const void *)s; !HASZERO(*w); w++); in strlen()
|