Lines Matching refs:txlen
581 int txlen = 0, tx_blocks = 0, count = 0;
662 txlen = len;
673 "len = 0x%04X, txlen = %d", len, txlen);
675 /* Set txlen to 0 so as to resend from same offset */
676 txlen = 0;
681 if (firmwarelen - offset < txlen)
682 txlen = firmwarelen - offset;
684 tx_blocks = DIV_ROUND_UP(txlen, blksz_dl);
686 memcpy(fwbuf, &firmware[offset], txlen);
701 offset += txlen;