HomeSort by relevance Sort by last modified time
    Searched defs:MAC_EQUAL (Results 1 - 3 of 3) sorted by null

  /system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
utils.h 59 #define MAC_EQUAL(pDstMac,pSrcMac) \
  /hardware/ti/wlan/wl1271/utils/
tidef.h 188 /* Due to alignment exceptions MAC_COPY and MAC_EQUAL are done byte by byte */
202 * \def MAC_EQUAL
205 * Due to alignment exceptions MAC_EQUAL is done byte by byte
207 #define MAC_EQUAL(mac1,mac2) (((TI_UINT8*)(mac1))[0] == ((TI_UINT8*)(mac2))[0] && \
218 #define MAC_BROADCAST(mac) MAC_EQUAL (mac, "\xff\xff\xff\xff\xff\xff")
224 #define MAC_NULL(mac) MAC_EQUAL (mac, "\x0\x0\x0\x0\x0\x0")
  /system/wlan/ti/wilink_6_1/utils/
tidef.h 193 /* Due to alignment exceptions MAC_COPY and MAC_EQUAL are done byte by byte */
207 * \def MAC_EQUAL
210 * Due to alignment exceptions MAC_EQUAL is done byte by byte
212 #define MAC_EQUAL(mac1,mac2) (*((TI_UINT8*)&((mac1)[0])) == *((TI_UINT8*)&((mac2)[0])) && \
223 #define MAC_BROADCAST(mac) MAC_EQUAL (mac, "\xff\xff\xff\xff\xff\xff")
229 #define MAC_NULL(mac) MAC_EQUAL (mac, "\x0\x0\x0\x0\x0\x0")

Completed in 165 milliseconds