Searched refs:BTM_SEC_ARRAY_BITS (Results 1 – 2 of 2) sorted by relevance
1123 #define BTM_SEC_ARRAY_BITS 32 /* Number of bits in each array element */ macro1125 (((uint32_t)BTM_SEC_MAX_SERVICES / BTM_SEC_ARRAY_BITS) + \1126 (((uint32_t)BTM_SEC_MAX_SERVICES % BTM_SEC_ARRAY_BITS) ? 1 : 0))1202 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_SEC_ARRAY_BITS)] |= \1203 ((uint32_t)1 << (((uint32_t)(service)) % BTM_SEC_ARRAY_BITS)))1207 (((uint32_t*)(p))[(((uint32_t)(service)) / BTM_SEC_ARRAY_BITS)] &= \1208 ~((uint32_t)1 << (((uint32_t)(service)) % BTM_SEC_ARRAY_BITS)))1213 (((((uint32_t*)(p))[(((uint32_t)(service)) / BTM_SEC_ARRAY_BITS)]) & \1214 (uint32_t)(((uint32_t)1 << (((uint32_t)(service)) % BTM_SEC_ARRAY_BITS)))) \
737 bta_service_id_to_btm_srv_id_lkup_tbl[index] / BTM_SEC_ARRAY_BITS; in bta_dm_add_device()