Home
last modified time | relevance | path

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

/optee_os/lib/libutils/isoc/newlib/
H A Dstrchr.c73 #define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) macro
110 while (UNALIGNED (s))
128 while (UNALIGNED (s))
H A Dstrlen.c73 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro
100 while (UNALIGNED(str)) {
H A Dmemcmp.c74 #define UNALIGNED(X, Y) \ macro
106 if (!TOO_SMALL(n) && !UNALIGNED(s1, s2)) {
H A Dstrcpy.c75 #define UNALIGNED(X, Y) \ macro
113 if (!UNALIGNED (src, dst))
H A Dmemset.c72 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro
86 while (UNALIGNED(s)) {
H A Dstrcmp.c77 #define UNALIGNED(X, Y) \ macro
111 if (!UNALIGNED(s1, s2)) {
H A Dmemcpy.c72 #define UNALIGNED(X, Y) \ macro
106 if (!TOO_SMALL(len0) && !UNALIGNED(src, dst)) {
H A Dstrncmp.c76 #define UNALIGNED(X, Y) \ macro
122 if (!UNALIGNED (s1, s2))
H A Dstrncpy.c81 #define UNALIGNED(X, Y) \ macro
130 if (!UNALIGNED (src, dst) && !TOO_SMALL (count))
H A Dmemmove.c75 #define UNALIGNED(X, Y) \ macro
127 if (!TOO_SMALL(length) && !UNALIGNED(src, dst)) {
H A Dmemchr.c76 #define UNALIGNED(X) ((long)X & (sizeof(long) - 1)) macro
116 while (UNALIGNED(src)) {