Home | History | Annotate | Download | only in string

Lines Matching defs:fill_count

89 	size_t fill_count;
109 fill_count = -(uintptr_t)addr & (sizeof(memword_t) - 1);
111 if (__predict_false(fill_count != 0)) {
114 * We want to clear <fill_count> trailing bytes in the word.
120 keep_mask = ~(memword_t)0U << (fill_count * 8);
123 keep_mask = ~(memword_t)0U >> (fill_count * 8);
129 if (len >= fill_count) {
136 len -= fill_count;
157 if (len < fill_count)
158 fill_count = len;
159 for (dp = (uint8_t *)dstp, ep = dp + fill_count;
162 if ((len -= fill_count) == 0)