Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/machine/mips/
Dstrncpy.c38 #ifndef UNROLL_FACTOR
39 #define UNROLL_FACTOR 4 macro
41 #elif (UNROLL_FACTOR != 2) && (UNROLL_FACTOR != 4)
76 #if UNROLL_FACTOR > 2 in strncpy()
90 while (((uintptr_t) src & (UNROLL_FACTOR - 1)) != 0 && count > 0) in strncpy()
106 odd_bytes = (count & (UNROLL_FACTOR - 1)); in strncpy()
113 #if UNROLL_FACTOR > 2 in strncpy()
117 src += UNROLL_FACTOR; in strncpy()
118 count -= UNROLL_FACTOR; in strncpy()
128 #if UNROLL_FACTOR > 2 in strncpy()
[all …]