Searched refs:UNALIGNED (Results 1 – 11 of 11) sorted by relevance
/optee_os-3.20.0/lib/libutils/isoc/newlib/ |
A D | strchr.c | 73 #define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) macro 109 while (UNALIGNED (s)) 127 while (UNALIGNED (s))
|
A D | strlen.c | 73 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro 99 while (UNALIGNED(str)) {
|
A D | memcmp.c | 74 #define UNALIGNED(X, Y) \ macro 106 if (!TOO_SMALL(n) && !UNALIGNED(s1, s2)) {
|
A D | strcpy.c | 75 #define UNALIGNED(X, Y) \ macro 112 if (!UNALIGNED (src, dst))
|
A D | strcmp.c | 77 #define UNALIGNED(X, Y) \ macro 110 if (!UNALIGNED(s1, s2)) {
|
A D | memset.c | 72 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro 86 while (UNALIGNED(s)) {
|
A D | memcpy.c | 72 #define UNALIGNED(X, Y) \ macro 106 if (!TOO_SMALL(len0) && !UNALIGNED(src, dst)) {
|
A D | strncmp.c | 76 #define UNALIGNED(X, Y) \ macro 122 if (!UNALIGNED (s1, s2))
|
A D | strncpy.c | 81 #define UNALIGNED(X, Y) \ macro 130 if (!UNALIGNED (src, dst) && !TOO_SMALL (count))
|
A D | memchr.c | 76 #define UNALIGNED(X) ((long)X & (sizeof(long) - 1)) macro 116 while (UNALIGNED(src)) {
|
A D | memmove.c | 75 #define UNALIGNED(X, Y) \ macro 127 if (!TOO_SMALL(length) && !UNALIGNED(src, dst)) {
|
Completed in 7 milliseconds