Home
last modified time | relevance | path

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

/netbsd-src/common/lib/libc/string/
H A Dmemset2.c89 size_t fill_count; in memset() local
109 fill_count = -(uintptr_t)addr & (sizeof(memword_t) - 1); in memset()
111 if (__predict_false(fill_count != 0)) { in memset()
120 keep_mask = ~(memword_t)0U << (fill_count * 8); in memset()
123 keep_mask = ~(memword_t)0U >> (fill_count * 8); in memset()
129 if (len >= fill_count) { in memset()
136 len -= fill_count; in memset()
157 if (len < fill_count) in memset()
158 fill_count = len; in memset()
159 for (dp = (uint8_t *)dstp, ep = dp + fill_count; in memset()
[all …]