Home
last modified time | relevance | path

Searched refs:ormask (Results 1 – 1 of 1) sorted by relevance

/aosp12/system/media/audio_utils/
H A Dprimitives.c410 uint32_t bit, ormask; \
412 ormask = (dmask) | (smask); \
413 while (ormask) { \
414 bit = ormask & -ormask; /* get lowest bit */ \
415 ormask ^= bit; /* remove lowest bit */ \
533 uint32_t bit, ormask = src_mask | dst_mask; in memcpy_by_index_array_initialization() local
535 while (ormask && n < idxcount) { in memcpy_by_index_array_initialization()
536 bit = ormask & -ormask; /* get lowest bit */ in memcpy_by_index_array_initialization()
537 ormask ^= bit; /* remove lowest bit */ in memcpy_by_index_array_initialization()
546 return n + __builtin_popcount(ormask & dst_mask); in memcpy_by_index_array_initialization()