Home
last modified time | relevance | path

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

/picolibc-latest/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.c55 #define BIGBLOCKSIZE (sizeof (long) << 2) macro
61 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
97 while (len0 >= BIGBLOCKSIZE) in memcpy()
103 len0 -= BIGBLOCKSIZE; in memcpy()
Dmemmove.c58 #define BIGBLOCKSIZE (sizeof (long) << 2) macro
64 #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
125 while (length >= BIGBLOCKSIZE) in memmove()
131 length -= BIGBLOCKSIZE; in memmove()