Home
last modified time | relevance | path

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

/system/bt/stack/include/
Dbtm_api_types.h548 #define BTM_EIR_ARRAY_BITS 32 /* Number of bits in each array element */ macro
550 (((uint32_t)BTM_EIR_MAX_SERVICES / BTM_EIR_ARRAY_BITS) + \
551 (((uint32_t)BTM_EIR_MAX_SERVICES % BTM_EIR_ARRAY_BITS) ? 1 : 0))
555 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] |= \
556 ((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS)))
560 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] &= \
561 ~((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS)))
565 ((((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] & \
566 ((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS))) >> \
567 (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS))
/system/bt/stack/btm/
Dbtm_inq.cc1778 BTM_EIR_SERVICE_ARRAY_SIZE * (BTM_EIR_ARRAY_BITS / 8)); in btm_process_inq_results()