Home | History | Annotate | Download | only in audio_utils

Lines Matching refs:bit

274     uint32_t bit, ormask; \
278 bit = ormask & -ormask; /* get lowest bit */ \
279 ormask ^= bit; /* remove lowest bit */ \
280 if (dmask & bit) { \
281 *dst++ = smask & bit ? *src++ : zero; \
397 uint32_t bit, ormask = src_mask | dst_mask;
400 bit = ormask & -ormask; /* get lowest bit */
401 ormask ^= bit; /* remove lowest bit */
402 if (src_mask & dst_mask & bit) { /* matching channel */
404 } else if (src_mask & bit) { /* source channel only */