Home
last modified time | relevance | path

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

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dmemset.c42 #define LBLOCKSIZE (sizeof(long)) macro
43 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1))
44 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
76 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in _memset()
80 while (n >= LBLOCKSIZE*4) in _memset()
86 n -= 4*LBLOCKSIZE; in _memset()
89 while (n >= LBLOCKSIZE) in _memset()
92 n -= LBLOCKSIZE; in _memset()
A Dmemchr.c50 #define LBLOCKSIZE (sizeof (long)) macro
53 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
108 for (i = 32; i < LBLOCKSIZE * 8; i <<= 1) in _memchr()
111 while (length >= LBLOCKSIZE) in _memchr()
115 length -= LBLOCKSIZE; in _memchr()
A Dmemcmp.c49 #define LBLOCKSIZE (sizeof (long)) macro
52 #define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
87 while (n >= LBLOCKSIZE) in _memcmp()
93 n -= LBLOCKSIZE; in _memcmp()
A Dstrlen.c41 #define LBLOCKSIZE (sizeof (long)) macro
42 #define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1))
A Dstrchr.c46 #define LBLOCKSIZE (sizeof (long)) macro
105 for (j = 8; j < LBLOCKSIZE * 8; j <<= 1) in _strchr()

Completed in 9 milliseconds