Lines Matching refs:size64
159 uint64_t size64 = 0; in grab_pgo_data() local
218 err = OSKextGrabPgoData(uuid, &size64, NULL, 0, 0, !!(uap->flags & PGO_METADATA)); in grab_pgo_data()
219 if (size64 == 0 && err == 0) { in grab_pgo_data()
226 ssize_t size = size64; in grab_pgo_data()
227 if (((uint64_t) size) != size64 || in grab_pgo_data()
240 err = OSKextGrabPgoData(uuid, &size64, NULL, 0, in grab_pgo_data()
244 if (size64 == 0 && err == 0) { in grab_pgo_data()
251 if (uap->size < 0 || (uint64_t)uap->size < size64) { in grab_pgo_data()
256 buffer = kalloc_data(size64, Z_WAITOK | Z_ZERO); in grab_pgo_data()
262 err = OSKextGrabPgoData(uuid, &size64, buffer, size64, in grab_pgo_data()
269 ssize_t size = size64; in grab_pgo_data()
270 if (((uint64_t) size) != size64 || in grab_pgo_data()
289 size64 = get_size_for_buffer(uap->flags); in grab_pgo_data()
290 ssize_t size = size64; in grab_pgo_data()
297 if (((uint64_t) size) != size64 || in grab_pgo_data()
343 kfree_data(buffer, size64); in grab_pgo_data()