HomeSort by relevance Sort by last modified time
    Searched refs:BTM_EIR_ARRAY_BITS (Results 1 - 2 of 2) sorted by null

  /system/bt/stack/include/
btm_api_types.h 548 #define BTM_EIR_ARRAY_BITS 32 /* Number of bits in each array element */
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))
    [all...]
  /system/bt/stack/btm/
btm_inq.cc     [all...]

Completed in 78 milliseconds