Lines Matching defs:nth32
1133 struct usb_cdc_ncm_nth32 *nth32 = (void *)skb->data;
1134 size_t ndpoffset = le32_to_cpu(nth32->dwNdpIndex);
1172 nth32->dwNdpIndex = cpu_to_le32(skb->len);
1191 struct usb_cdc_ncm_nth32 *nth32;
1269 nth.nth32 = skb_put_zero(skb_out, sizeof(struct usb_cdc_ncm_nth32));
1270 nth.nth32->dwSignature = cpu_to_le32(USB_CDC_NCM_NTH32_SIGN);
1271 nth.nth32->wHeaderLength = cpu_to_le16(sizeof(struct usb_cdc_ncm_nth32));
1272 nth.nth32->wSequence = cpu_to_le16(ctx->tx_seq++);
1398 nth.nth32 = (struct usb_cdc_ncm_nth32 *)skb_out->data;
1400 nth.nth32->dwNdpIndex = cpu_to_le32(skb_out->len);
1431 nth.nth32 = (struct usb_cdc_ncm_nth32 *)skb_out->data;
1432 nth.nth32->dwBlockLength = cpu_to_le32(skb_out->len);
1590 struct usb_cdc_ncm_nth32 *nth32;
1603 nth32 = (struct usb_cdc_ncm_nth32 *)skb_in->data;
1605 if (nth32->dwSignature != cpu_to_le32(USB_CDC_NCM_NTH32_SIGN)) {
1608 le32_to_cpu(nth32->dwSignature));
1612 len = le32_to_cpu(nth32->dwBlockLength);
1620 if ((ctx->rx_seq + 1) != le16_to_cpu(nth32->wSequence) &&
1621 (ctx->rx_seq || le16_to_cpu(nth32->wSequence)) &&
1622 !((ctx->rx_seq == 0xffff) && !le16_to_cpu(nth32->wSequence))) {
1625 ctx->rx_seq, le16_to_cpu(nth32->wSequence));
1627 ctx->rx_seq = le16_to_cpu(nth32->wSequence);
1629 ret = le32_to_cpu(nth32->dwNdpIndex);