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

  /src/common/lib/libc/string/
memset2.c 87 memword_t keep_mask = 0; local in function:memset
116 * bits respectively. So as we shift, the keep_mask will only
120 keep_mask = ~(memword_t)0U << (fill_count * 8);
123 keep_mask = ~(memword_t)0U >> (fill_count * 8);
135 *dstp = (*dstp & keep_mask) | (fill & ~keep_mask);
147 * use the keep_mask above to preserve the leading
151 keep_mask = 0;
188 * the keep_mask will only have bits set for the bytes we won't
191 * But the keep_mask could already have bytes to preserv
    [all...]

Completed in 14 milliseconds