Searched refs:BTM_EIR_ARRAY_BITS (Results 1 – 2 of 2) sorted by relevance
25 #define BTM_EIR_ARRAY_BITS 32 /* Number of bits in each array element */ macro27 (((uint32_t)BTM_EIR_MAX_SERVICES / BTM_EIR_ARRAY_BITS) + \28 (((uint32_t)BTM_EIR_MAX_SERVICES % BTM_EIR_ARRAY_BITS) ? 1 : 0))
78 (((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()