Home | History | Annotate | Download | only in include

Lines Matching refs:id

47  * BTA_ID_RES can be used to fs ID in bte_appl.
51 btapp id */
122 /* helper macros to set, clear and get current BTA module id in a 32bit ARRAY!! */
123 /* set bit id to 1 in UINT32 a[] NO RANGE CHECK!*/
124 #define BTAPP_SET_BTA_MOD(id, a) { a[id/32] |= (UINT32)(1<<(id % 32)); }
126 /* set bit id to 0 (cleared) in UINT32 a[] NO RANGE CHECK */
127 #define BTAPP_CLEAR_BTA_MOD(id, a) { a[id/32] &= (UINT32)!(1<<(id % 32)); }
129 /* tests if bit id is 1 in UINT32 a[] NO RANGE CHECK */
130 #define BTAPP_BTA_MOD_IS_SET(id, a) (a[id/32] & (UINT32)(1<<(id % 32)))