Searched refs:h_ty (Results 1 – 1 of 1) sorted by relevance
| /xnu-8792.41.9/iokit/IOKit/ |
| H A D | IOLib.h | 402 #define IONew_3(h_ty, e_ty, count) ({ \ argument 403 static KALLOC_TYPE_VAR_DEFINE(kt_view_var, h_ty, e_ty, KT_SHARED_ACCT); \ 404 (h_ty *) IOMallocTypeVarImpl(kt_view_var, \ 405 IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)); \ 411 #define IONewZero_3(h_ty, e_ty, count) \ argument 412 IONew_3(h_ty, e_ty, count) 418 #define IONew_3(h_ty, e_ty, count) \ argument 419 ((h_ty *)IOMalloc(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count))) 424 #define IONewZero_3(h_ty, e_ty, count) \ argument 425 ((h_ty *)IOMallocZero(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count))) [all …]
|