Lines Matching defs:buf_len
686 * @buf_len: buffer size
713 int i2400m_tx(struct i2400m *i2400m, const void *buf, size_t buf_len,
726 i2400m, buf, buf_len, pl_type);
727 padded_len = ALIGN(buf_len, I2400M_PL_ALIGN);
728 d_printf(5, dev, "padded_len %zd buf_len %zd\n", padded_len, buf_len);
780 memcpy(ptr, buf, buf_len);
781 memset(ptr + buf_len, 0xad, padded_len - buf_len);
782 i2400m_pld_set(&tx_msg->pld[num_pls], buf_len, pl_type);
785 pl_type, buf_len);
793 num_pls+1, ptr - i2400m->tx_buf, buf_len, padded_len);
805 i2400m, buf, buf_len, pl_type, result);