Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/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.c51 #define UNALIGNED(X) ((uintptr_t)X & (LBLOCKSIZE - 1)) macro
78 while (UNALIGNED (str)) in strlen()
Dstpcpy.c39 #define UNALIGNED(X, Y) \ macro
67 if (!UNALIGNED (src, dst)) in stpcpy()
Dmemcmp.c52 #define UNALIGNED(X, Y) \ macro
89 if (!TOO_SMALL(n) && !UNALIGNED(s1,s2)) in memcmp()
Dstrcpy.c53 #define UNALIGNED(X, Y) \ macro
92 if (!UNALIGNED (src, dst)) in strcpy()
Dmempcpy.c37 #define UNALIGNED(X, Y) \ macro
72 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in mempcpy()
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.c52 #define UNALIGNED(X, Y) \ macro
92 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memcpy()
Dstpncpy.c47 #define UNALIGNED(X, Y) \ macro
80 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.c54 #define UNALIGNED(X) ((uintptr_t)X & (sizeof (long) - 1)) macro
95 while (UNALIGNED (src)) in memchr()
Dmemmove.c55 #define UNALIGNED(X, Y) \ macro
120 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-3.7.0-3.6.0/newlib/libc/machine/microblaze/
Dstrlen.c63 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro
97 if (!UNALIGNED (str)) in strlen()
Dstrcmp.c65 #define UNALIGNED(X, Y) \ macro
103 if (!UNALIGNED (s1, s2)) in strcmp()
Dstrcpy.c65 #define UNALIGNED(X, Y) \ macro
104 if (!UNALIGNED (src, dst)) in strcpy()