Home
last modified time | relevance | path

Searched refs:UNALIGNED (Results 1 – 20 of 20) sorted by relevance

/picolibc-latest/newlib/libc/string/
Dstrchr.c51 #define UNALIGNED(X) ((uintptr_t)X & (sizeof (long) - 1)) macro
86 while (UNALIGNED (s)) in strchr()
104 while (UNALIGNED (s)) in strchr()
Dstrlen.c50 #define UNALIGNED(X) ((uintptr_t)X & (LBLOCKSIZE - 1)) macro
77 while (UNALIGNED (str)) in strlen()
Dmemcmp.c52 #define UNALIGNED(X, Y) \ macro
89 if (!TOO_SMALL(n) && !UNALIGNED(s1,s2)) in memcmp()
Dstpcpy.c41 #define UNALIGNED(X, Y) \ macro
69 if (!UNALIGNED (src, dst)) in stpcpy()
Dmempcpy.c37 #define UNALIGNED(X, Y) \ macro
72 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in mempcpy()
Dstrcpy.c53 #define UNALIGNED(X, Y) \ macro
92 if (!UNALIGNED (src, dst)) in strcpy()
Dmemset.c50 #define UNALIGNED(X) ((uintptr_t)X & (LBLOCKSIZE - 1)) macro
70 while (UNALIGNED (s)) in memset()
Dstrcmp.c53 #define UNALIGNED(X, Y) \ macro
89 if (!UNALIGNED (s1, s2)) in strcmp()
Dmemcpy.c51 #define UNALIGNED(X, Y) \ macro
91 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memcpy()
Dstpncpy.c48 #define UNALIGNED(X, Y) \ macro
81 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) in stpncpy()
Dstrncmp.c53 #define UNALIGNED(X, Y) \ macro
98 if (!UNALIGNED (s1, s2)) in strncmp()
Drawmemchr.c38 #define UNALIGNED(X) ((uintptr_t)X & (sizeof (long) - 1)) macro
78 while (UNALIGNED (src)) in rawmemchr()
Dstrncpy.c58 #define UNALIGNED(X, Y) \ macro
109 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) in strncpy()
Dmemchr.c53 #define UNALIGNED(X) ((uintptr_t)X & (sizeof (long) - 1)) macro
94 while (UNALIGNED (src)) in memchr()
Dmemmove.c54 #define UNALIGNED(X, Y) \ macro
119 if (!TOO_SMALL(length) && !UNALIGNED (src, dst)) in memmove()
Dmemrchr.c39 #define UNALIGNED(X) ((uintptr_t)(X + 1) & (sizeof (long) - 1)) macro
80 while (UNALIGNED (src)) in memrchr()
Dmemccpy.c38 #define UNALIGNED(X, Y) \ macro
94 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memccpy()
/picolibc-latest/newlib/libc/machine/microblaze/
Dstrlen.c64 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro
98 if (!UNALIGNED (str)) in strlen()
Dstrcmp.c67 #define UNALIGNED(X, Y) \ macro
105 if (!UNALIGNED (s1, s2)) in strcmp()
Dstrcpy.c67 #define UNALIGNED(X, Y) \ macro
106 if (!UNALIGNED (src, dst)) in strcpy()