Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/string/
Dmemcmp.c59 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro
89 if (!TOO_SMALL(n) && !UNALIGNED(s1,s2)) in memcmp()
Dmempcpy.c47 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) macro
72 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in mempcpy()
Dmemset.c51 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro
78 if (!TOO_SMALL (n)) in memset()
Dmemcpy.c61 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) macro
91 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memcpy()
Dstpncpy.c66 #define TOO_SMALL(LEN) ((LEN) < sizeof (long)) macro
81 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) in stpncpy()
Dstrncpy.c76 #define TOO_SMALL(LEN) ((LEN) < sizeof (long)) macro
109 if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) in strncpy()
Dmemchr.c59 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro
103 if (!TOO_SMALL (length)) in memchr()
Dmemmove.c64 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) macro
119 if (!TOO_SMALL(length) && !UNALIGNED (src, dst)) in memmove()
Dmemrchr.c45 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro
89 if (!TOO_SMALL (length)) in memrchr()
Dmemccpy.c45 #define TOO_SMALL(LEN) ((LEN) < LITTLEBLOCKSIZE) macro
94 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memccpy()
Drawmemchr.c44 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro