Lines Matching defs:hdr16
2228 struct ncm_header16 *hdr16 = NULL;
2244 hdr16 = sc->sc_tx_buf;
2245 USETDW(hdr16->dwSignature, NCM_HDR16_SIG);
2246 USETW(hdr16->wHeaderLength, sizeof (*hdr16));
2247 USETW(hdr16->wSequence, sc->sc_tx_seq);
2248 USETW(hdr16->wBlockLength, 0);
2249 offs = sizeof (*hdr16);
2286 USETW(hdr16->wNdpIndex, poffs);
2342 USETW(hdr16->wBlockLength, offs);
2404 struct ncm_header16 *hdr16;
2420 if (len < sizeof (*hdr16))
2423 hdr16 = (struct ncm_header16 *)buf;
2424 hsig = UGETDW(hdr16->dwSignature);
2428 blen = UGETW(hdr16->wBlockLength);
2429 ptroff = UGETW(hdr16->wNdpIndex);
2430 if (UGETW(hdr16->wHeaderLength) != sizeof (*hdr16)) {
2432 DEVNAM(sc), UGETW(hdr16->wHeaderLength),
2433 sizeof (*hdr16));
2440 hdr32 = (struct ncm_header32 *)hdr16;