Lines Matching refs:UNROLL_FACTOR
38 #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()
138 dst += UNROLL_FACTOR; in strncpy()
170 #if UNROLL_FACTOR > 2 in strncpy()
185 dst += UNROLL_FACTOR; in strncpy()
195 while (count >= UNROLL_FACTOR*sizeof (word_type)) in strncpy()
197 count -= UNROLL_FACTOR*sizeof (word_type); in strncpy()
198 dst += UNROLL_FACTOR*sizeof (word_type); in strncpy()
199 #if UNROLL_FACTOR > 2 in strncpy()
207 #if UNROLL_FACTOR > 2 in strncpy()