Searched refs:UNALIGNED (Results 1 – 11 of 11) sorted by relevance
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | strchr.c | 43 #define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) macro 77 while (UNALIGNED (s)) in _strchr() 95 while (UNALIGNED (s)) in _strchr()
|
A D | strlen.c | 42 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro 69 while (UNALIGNED (str)) in _strlen()
|
A D | memcmp.c | 45 #define UNALIGNED(X, Y) \ macro 81 if (!TOO_SMALL(n) && !UNALIGNED(s1,s2)) in _memcmp()
|
A D | strcpy.c | 45 #define UNALIGNED(X, Y) \ macro 81 if (!UNALIGNED (src, dst)) in _strcpy()
|
A D | strcmp.c | 45 #define UNALIGNED(X, Y) \ macro 80 if (!UNALIGNED (s1, s2)) in _strcmp()
|
A D | memcpy.c | 44 #define UNALIGNED(X, Y) \ macro 80 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in _memcpy()
|
A D | memset.c | 43 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1)) macro 59 while (UNALIGNED (s)) in _memset()
|
A D | strncmp.c | 46 #define UNALIGNED(X, Y) \ macro 89 if (!UNALIGNED (s1, s2)) in _strncmp()
|
A D | memmove.c | 48 #define UNALIGNED(X, Y) \ macro 109 if (!TOO_SMALL(length) && !UNALIGNED (src, dst)) in _memmove()
|
A D | strncpy.c | 51 #define UNALIGNED(X, Y) \ macro 98 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) in _strncpy()
|
A D | memchr.c | 47 #define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) macro 86 while (UNALIGNED (src)) in _memchr()
|
Completed in 14 milliseconds