Searched refs:BTM_EIR_ARRAY_BITS (Results 1 – 2 of 2) sorted by relevance
511 #define BTM_EIR_ARRAY_BITS 32 /* Number of bits in each array element */ macro512 #define BTM_EIR_SERVICE_ARRAY_SIZE (((UINT32)BTM_EIR_MAX_SERVICES / BTM_EIR_ARRAY_BITS) + \513 (((UINT32)BTM_EIR_MAX_SERVICES % BTM_EIR_ARRAY_BITS) ? 1 : 0))516 #define BTM_EIR_SET_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS…517 ((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS)))521 #define BTM_EIR_CLR_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS…522 ~((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS)))525 …BTM_EIR_HAS_SERVICE(p, service) ((((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS)] & \526 …((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS))) >> (((UINT32)(service)) % BTM_EIR_ARRAY…
2196 BTM_EIR_SERVICE_ARRAY_SIZE * (BTM_EIR_ARRAY_BITS/8)); in btm_process_inq_results()