Lines Matching defs:bit
347 uint32_t bit, ormask; \
351 bit = ormask & -ormask; /* get lowest bit */ \
352 ormask ^= bit; /* remove lowest bit */ \
353 if (dmask & bit) { \
354 *dst++ = smask & bit ? *src++ : zero; \
470 uint32_t bit, ormask = src_mask | dst_mask;
473 bit = ormask & -ormask; /* get lowest bit */
474 ormask ^= bit; /* remove lowest bit */
475 if (src_mask & dst_mask & bit) { /* matching channel */
477 } else if (src_mask & bit) { /* source channel only */