Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/machine/mips/
Dstrncpy.c32 typedef unsigned word_type __attribute__ ((mode (DI))); typedef
34 typedef unsigned word_type __attribute__ ((mode (SI))); typedef
191 while (count && (((long)dst) & (sizeof (word_type) - 1)) != 0) in strncpy()
197 while (count >= UNROLL_FACTOR*sizeof (word_type)) in strncpy()
199 count -= UNROLL_FACTOR*sizeof (word_type); in strncpy()
200 dst += UNROLL_FACTOR*sizeof (word_type); in strncpy()
202 ((word_type *)(void *)dst)[-4] = 0; in strncpy()
203 ((word_type *)(void *)dst)[-3] = 0; in strncpy()
205 ((word_type *)(void *)dst)[-2] = 0; in strncpy()
206 ((word_type *)(void *)dst)[-1] = 0; in strncpy()
[all …]