Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/machine/mips/
Dstrncpy.c40 #ifndef UNROLL_FACTOR
41 #define UNROLL_FACTOR 4 macro
43 #elif (UNROLL_FACTOR != 2) && (UNROLL_FACTOR != 4)
78 #if UNROLL_FACTOR > 2 in strncpy()
92 while (((uintptr_t) src & (UNROLL_FACTOR - 1)) != 0 && count > 0) in strncpy()
108 odd_bytes = (count & (UNROLL_FACTOR - 1)); in strncpy()
115 #if UNROLL_FACTOR > 2 in strncpy()
119 src += UNROLL_FACTOR; in strncpy()
120 count -= UNROLL_FACTOR; in strncpy()
130 #if UNROLL_FACTOR > 2 in strncpy()
[all …]