Home
last modified time | relevance | path

Searched refs:LBLOCKSIZE (Results 1 – 8 of 8) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/string/
Dmemset.c49 #define LBLOCKSIZE (sizeof(long)) macro
50 #define UNALIGNED(X) ((uintptr_t)X & (LBLOCKSIZE - 1))
51 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
87 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in memset()
91 while (n >= LBLOCKSIZE*4) in memset()
97 n -= 4*LBLOCKSIZE; in memset()
100 while (n >= LBLOCKSIZE) in memset()
103 n -= LBLOCKSIZE; in memset()
Dmemrchr.c42 #define LBLOCKSIZE (sizeof (long)) macro
45 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
99 asrc = (unsigned long *) (src - LBLOCKSIZE + 1); in memrchr()
102 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in memrchr()
105 while (length >= LBLOCKSIZE) in memrchr()
109 length -= LBLOCKSIZE; in memrchr()
116 src = (unsigned char *) asrc + LBLOCKSIZE - 1; in memrchr()
Dmemchr.c57 #define LBLOCKSIZE (sizeof (long)) macro
60 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
117 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in memchr()
120 while (length >= LBLOCKSIZE) in memchr()
124 length -= LBLOCKSIZE; in memchr()
Dmemcmp.c56 #define LBLOCKSIZE (sizeof (long)) macro
59 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
95 while (n >= LBLOCKSIZE) in memcmp()
101 n -= LBLOCKSIZE; in memcmp()
Drawmemchr.c41 #define LBLOCKSIZE (sizeof (long)) macro
44 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
95 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in rawmemchr()
Dstrlen.c50 #define LBLOCKSIZE (sizeof (long)) macro
51 #define UNALIGNED(X) ((uintptr_t)X & (LBLOCKSIZE - 1))
Dstrchr.c54 #define LBLOCKSIZE (sizeof (long)) macro
114 for (j = 8; j < LBLOCKSIZE * 8; j <<= 1) in strchr()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/microblaze/
Dstrlen.c62 #define LBLOCKSIZE (sizeof (long)) macro
63 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1))