Lines Matching defs:count
232 * @count: bytes to read
234 * Description: Reads @count bytes from @state->bdev into @buffer.
238 u64 lba, u8 *buffer, size_t count)
247 while (count) {
253 if (copied > count)
254 copied = count;
259 count -= copied;
276 size_t count;
282 count = (size_t)le32_to_cpu(gpt->num_partition_entries) *
284 if (!count)
286 pte = kmalloc(count, GFP_KERNEL);
291 (u8 *) pte, count) < count) {