Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/stack/btm/
Dbtm_eir.h25 #define BTM_EIR_ARRAY_BITS 32 /* Number of bits in each array element */ macro
27 (((uint32_t)BTM_EIR_MAX_SERVICES / BTM_EIR_ARRAY_BITS) + \
28 (((uint32_t)BTM_EIR_MAX_SERVICES % BTM_EIR_ARRAY_BITS) ? 1 : 0))
Dbtm_inq.cc78 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] |= \
79 ((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS)))
83 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] &= \
84 ~((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS)))
88 ((((uint32_t*)(p))[(((uint32_t)(service)) / BTM_EIR_ARRAY_BITS)] & \
89 ((uint32_t)1 << (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS))) >> \
90 (((uint32_t)(service)) % BTM_EIR_ARRAY_BITS))
1681 BTM_EIR_SERVICE_ARRAY_SIZE * (BTM_EIR_ARRAY_BITS / 8)); in btm_process_inq_results_extended()