Home
last modified time | relevance | path

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

/system/media/audio_utils/
Dprimitives.c347 uint32_t bit, ormask; \
349 ormask = dmask | smask; \
350 while (ormask) { \
351 bit = ormask & -ormask; /* get lowest bit */ \
352 ormask ^= bit; /* remove lowest bit */ \
470 uint32_t bit, ormask = src_mask | dst_mask; in memcpy_by_index_array_initialization() local
472 while (ormask && n < idxcount) { in memcpy_by_index_array_initialization()
473 bit = ormask & -ormask; /* get lowest bit */ in memcpy_by_index_array_initialization()
474 ormask ^= bit; /* remove lowest bit */ in memcpy_by_index_array_initialization()
483 return n + popcount(ormask & dst_mask); in memcpy_by_index_array_initialization()