Home
last modified time | relevance | path

Searched refs:h_ty (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.41.6/iokit/IOKit/
H A DIOLib.h434 #define IONew_3(h_ty, e_ty, count) ({ \ argument
435 static KALLOC_TYPE_VAR_DEFINE(kt_view_var, h_ty, e_ty, KT_SHARED_ACCT); \
436 (h_ty *) IOMallocTypeVarImpl(kt_view_var, \
437 IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)); \
443 #define IONewZero_3(h_ty, e_ty, count) \ argument
444 IONew_3(h_ty, e_ty, count)
450 #define IONew_3(h_ty, e_ty, count) \ argument
451 ((h_ty *)IOMalloc(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)))
456 #define IONewZero_3(h_ty, e_ty, count) \ argument
457 ((h_ty *)IOMallocZero(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)))
[all …]
/xnu-12377.41.6/tools/lldbmacros/kmemory/
H A Dbtlog.py301 h_ty = library.bth_head_type
302 h_tysz = h_ty.GetByteSize()
311 None, h_base + i * h_tysz, h_ty).xGetIntegerByName('bthh_first')
317 None, h_base + i * h_tysz, h_ty).xGetIntegerByName('bthh_first'), )
/xnu-12377.41.6/osfmk/kern/
H A Dkalloc.h1286 #define kt_realign_sizeof(h_ty, e_ty) \ argument
1287 ((sizeof(h_ty) + _Alignof(e_ty) - 1) & -_Alignof(e_ty))