Home | History | Annotate | Download | only in audio_utils

Lines Matching full:ormask

274     uint32_t bit, ormask; \
276 ormask = dmask | smask; \
277 while (ormask) { \
278 bit = ormask & -ormask; /* get lowest bit */ \
279 ormask ^= bit; /* remove lowest bit */ \
397 uint32_t bit, ormask = src_mask | dst_mask;
399 while (ormask && n < idxcount) {
400 bit = ormask & -ormask; /* get lowest bit */
401 ormask ^= bit; /* remove lowest bit */
410 return n + popcount(ormask & dst_mask);