Searched refs:octet (Results 1 - 4 of 4) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h712 #define ETHERP_TO_MACF(ea) ((struct ether_addr *) (ea))->octet[0], \
713 ((struct ether_addr *) (ea))->octet[1], \
714 ((struct ether_addr *) (ea))->octet[2], \
715 ((struct ether_addr *) (ea))->octet[3], \
716 ((struct ether_addr *) (ea))->octet[4], \
717 ((struct ether_addr *) (ea))->octet[5]
719 #define ETHER_TO_MACF(ea) (ea).octet[0], \
720 (ea).octet[1], \
721 (ea).octet[2], \
722 (ea).octet[
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A Dethernet.h128 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c1015 ea->octet[i++] = (char) bcm_strtoul(p, &ep, 16);
1063 const uint8 *octet = ea->octet; local
1067 for (i = 0; i < 6; i++, octet++) {
1068 *p++ = hex[(*octet >> 4) & 0xf];
1069 *p++ = hex[*octet & 0xf];
H A Ddhdu.c3094 n->octet[i++] = (uint8)strtoul(a, &c, 16);

Completed in 350 milliseconds