Lines Matching refs:size64
116 uint64_t size64 = 0; in grab_pgo_data() local
180 err = OSKextGrabPgoData(uuid, &size64, NULL, 0, 0, !!(uap->flags & PGO_METADATA)); in grab_pgo_data()
181 if (size64 == 0 && err == 0) { in grab_pgo_data()
188 ssize_t size = size64; in grab_pgo_data()
189 if (((uint64_t) size) != size64 || in grab_pgo_data()
202 err = OSKextGrabPgoData(uuid, &size64, NULL, 0, in grab_pgo_data()
206 if (size64 == 0 && err == 0) { in grab_pgo_data()
213 if (uap->size < 0 || (uint64_t)uap->size < size64) { in grab_pgo_data()
218 buffer = kalloc_data(size64, Z_WAITOK | Z_ZERO); in grab_pgo_data()
224 err = OSKextGrabPgoData(uuid, &size64, buffer, size64, in grab_pgo_data()
231 ssize_t size = size64; in grab_pgo_data()
232 if (((uint64_t) size) != size64 || in grab_pgo_data()
251 size64 = get_size_for_buffer(uap->flags); in grab_pgo_data()
252 ssize_t size = size64; in grab_pgo_data()
259 if (((uint64_t) size) != size64 || in grab_pgo_data()
305 kfree_data(buffer, size64); in grab_pgo_data()