Home
last modified time | relevance | path

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

/xnu-11417.140.69/iokit/IOKit/
H A DIOLib.h410 #define IONew_3(h_ty, e_ty, count) ({ \ argument
411 static KALLOC_TYPE_VAR_DEFINE(kt_view_var, h_ty, e_ty, KT_SHARED_ACCT); \
412 (h_ty *) IOMallocTypeVarImpl(kt_view_var, \
413 IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)); \
419 #define IONewZero_3(h_ty, e_ty, count) \ argument
420 IONew_3(h_ty, e_ty, count)
426 #define IONew_3(h_ty, e_ty, count) \ argument
427 ((h_ty *)IOMalloc(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)))
432 #define IONewZero_3(h_ty, e_ty, count) \ argument
433 ((h_ty *)IOMallocZero(IOMallocArraySize(sizeof(h_ty), sizeof(e_ty), count)))
[all …]
/xnu-11417.140.69/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-11417.140.69/osfmk/kern/
H A Dkalloc.h1267 #define kt_realign_sizeof(h_ty, e_ty) \ argument
1268 ((sizeof(h_ty) + _Alignof(e_ty) - 1) & -_Alignof(e_ty))