HomeSort by: relevance | last modified time | path
    Searched defs:fill_count (Results 1 - 4 of 4) sorted by relevancy

  /src/common/lib/libc/string/
memset2.c 89 size_t fill_count; local in function:memset
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
    [all...]
memset2.c 89 size_t fill_count; local in function:memset
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
    [all...]
memset2.c 89 size_t fill_count; local in function:memset
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
    [all...]
memset2.c 89 size_t fill_count; local in function:memset
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
    [all...]

Completed in 80 milliseconds