Lines Matching defs:count
100 * @count: size of buffer
105 static int tpm_ibmvtpm_recv(struct tpm_chip *chip, u8 *buf, size_t count)
117 if (count < len) {
119 "Invalid size in recv: count=%zd, crq_size=%d\n",
120 count, len);
194 * @count: size of buffer
200 static int tpm_ibmvtpm_send(struct tpm_chip *chip, u8 *buf, size_t count)
211 if (count > ibmvtpm->rtce_size) {
213 "Invalid size in send: count=%zd, rtce_size=%d\n",
214 count, ibmvtpm->rtce_size);
229 memcpy((void *)ibmvtpm->rtce_buf, (void *)buf, count);
240 count, ibmvtpm->rtce_dma_handle);