Lines Matching defs:sign
1086 /* return a pointer to a valid struct usb_cdc_ncm_ndp16 of type sign, possibly
1089 static struct usb_cdc_ncm_ndp16 *cdc_ncm_ndp16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve)
1100 if (ctx->delayed_ndp16->dwSignature == sign)
1114 if (ndp16->dwSignature == sign)
1139 ndp16->dwSignature = sign;
1144 static struct usb_cdc_ncm_ndp32 *cdc_ncm_ndp32(struct cdc_ncm_ctx *ctx, struct sk_buff *skb, __le32 sign, size_t reserve)
1155 if (ctx->delayed_ndp32->dwSignature == sign)
1169 if (ndp32->dwSignature == sign)
1194 ndp32->dwSignature = sign;
1200 cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign)
1231 swap(sign, ctx->tx_rem_sign);
1300 sign = ctx->tx_rem_sign;
1310 ndp.ndp16 = cdc_ncm_ndp16(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder);
1312 ndp.ndp32 = cdc_ncm_ndp32(ctx, skb_out, sign, skb->len + ctx->tx_modulus + ctx->tx_remainder);
1332 ctx->tx_rem_sign = sign;