Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/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.c62 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) macro
92 if (!TOO_SMALL(len0) && !UNALIGNED (src, dst)) in memcpy()
Dstpncpy.c65 #define TOO_SMALL(LEN) ((LEN) < sizeof (long)) macro
80 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.c60 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE) macro
104 if (!TOO_SMALL (length)) in memchr()
Dmemmove.c65 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) macro
120 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