HomeSort by: relevance | last modified time | path
    Searched defs:plcp_length (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/ic/
rt2661.c 1432 uint16_t plcp_length; local in function:rt2661_setup_tx_desc
1462 plcp_length = len & 0xfff;
1463 desc->plcp_length_hi = plcp_length >> 6;
1464 desc->plcp_length_lo = plcp_length & 0x3f;
1466 plcp_length = (16 * len + rate - 1) / rate;
1472 desc->plcp_length_hi = plcp_length >> 8;
1473 desc->plcp_length_lo = plcp_length & 0xff;
rt2560.c 1676 uint16_t plcp_length; local in function:rt2560_setup_tx_desc
1698 plcp_length = len & 0xfff;
1699 desc->plcp_length_hi = plcp_length >> 6;
1700 desc->plcp_length_lo = plcp_length & 0x3f;
1702 plcp_length = (16 * len + rate - 1) / rate;
1708 desc->plcp_length_hi = plcp_length >> 8;
1709 desc->plcp_length_lo = plcp_length & 0xff;
  /src/sys/dev/usb/
if_rum.c 1027 uint16_t plcp_length; local in function:rum_setup_tx_desc
1050 plcp_length = len & 0xfff;
1051 desc->plcp_length_hi = plcp_length >> 6;
1052 desc->plcp_length_lo = plcp_length & 0x3f;
1054 plcp_length = (16 * len + rate - 1) / rate;
1060 desc->plcp_length_hi = plcp_length >> 8;
1061 desc->plcp_length_lo = plcp_length & 0xff;
if_ural.c 1084 uint16_t plcp_length; local in function:ural_setup_tx_desc
1102 plcp_length = len & 0xfff;
1103 desc->plcp_length_hi = plcp_length >> 6;
1104 desc->plcp_length_lo = plcp_length & 0x3f;
1106 plcp_length = (16 * len + rate - 1) / rate;
1112 desc->plcp_length_hi = plcp_length >> 8;
1113 desc->plcp_length_lo = plcp_length & 0xff;
if_zydreg.h 991 uint16_t plcp_length; member in struct:zyd_tx_desc

Completed in 19 milliseconds