Home
last modified time | relevance | path

Searched refs:BIGBLOCKSIZE (Results 1 – 3 of 3) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/string/
Dmempcpy.c41 #define BIGBLOCKSIZE (sizeof (long) << 2) macro
47 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
78 while (len0 >= BIGBLOCKSIZE) in mempcpy()
84 len0 -= BIGBLOCKSIZE; in mempcpy()
Dmemcpy.c56 #define BIGBLOCKSIZE (sizeof (long) << 2) macro
62 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
98 while (len0 >= BIGBLOCKSIZE) in memcpy()
104 len0 -= BIGBLOCKSIZE; in memcpy()
Dmemmove.c59 #define BIGBLOCKSIZE (sizeof (long) << 2) macro
65 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
126 while (length >= BIGBLOCKSIZE) in memmove()
132 length -= BIGBLOCKSIZE; in memmove()