Home
last modified time | relevance | path

Searched refs:_type (Results 1 – 14 of 14) sorted by relevance

/xnu-11215/EXTERNAL_HEADERS/image4/shim/
H A Dbase.h182 #define OS_ENUM(_name, _type, ...) \ argument
183 typedef enum : _type { __VA_ARGS__ } _name##_t
184 #define OS_CLOSED_ENUM(_name, _type, ...) \ argument
186 #define OS_OPTIONS(_name, _type, ...) \ argument
188 #define OS_CLOSED_OPTIONS(_name, _type, ...) \ argument
221 #define __OS_ENUM_C_FALLBACK(_name, _type, ...) \ argument
224 #define OS_ENUM(_name, _type, ...) \ argument
225 typedef _type _name##_t; enum { __VA_ARGS__ }
226 #define OS_CLOSED_ENUM(_name, _type, ...) \ argument
229 #define OS_OPTIONS(_name, _type, ...) \ argument
[all …]
/xnu-11215/libkern/os/
H A Dbase.h183 #define OS_ENUM(_name, _type, ...) \ argument
184 typedef enum : _type { __VA_ARGS__ } _name##_t
185 #define OS_CLOSED_ENUM(_name, _type, ...) \ argument
187 #define OS_OPTIONS(_name, _type, ...) \ argument
189 #define OS_CLOSED_OPTIONS(_name, _type, ...) \ argument
222 #define __OS_ENUM_C_FALLBACK(_name, _type, ...) \ argument
225 #define OS_ENUM(_name, _type, ...) \ argument
226 typedef _type _name##_t; enum { __VA_ARGS__ }
227 #define OS_CLOSED_ENUM(_name, _type, ...) \ argument
230 #define OS_OPTIONS(_name, _type, ...) \ argument
[all …]
/xnu-11215/bsd/sys/
H A Dcdefs.h1269 #define __enum_decl(_name, _type, ...) \ argument
1270 typedef enum : _type __VA_ARGS__ __enum_open _name
1271 #define __enum_closed_decl(_name, _type, ...) \ argument
1273 #define __options_decl(_name, _type, ...) \ argument
1275 #define __options_closed_decl(_name, _type, ...) \ argument
1278 #define __enum_decl(_name, _type, ...) \ argument
1279 typedef _type _name; enum __VA_ARGS__ __enum_open
1280 #define __enum_closed_decl(_name, _type, ...) \ argument
1281 typedef _type _name; enum __VA_ARGS__ __enum_closed
1282 #define __options_decl(_name, _type, ...) \ argument
[all …]
H A Dspawn_internal.h61 #define PS_ACTION_SIZE(x, _type, _member_type) ({\ argument
67 sizeof(_type), \
/xnu-11215/libkern/kxld/
H A Dkxld_reloc.c1215 generic_reloc_has_pair(u_int _type) in generic_reloc_has_pair() argument
1311 x86_64_reloc_has_pair(u_int _type) in x86_64_reloc_has_pair() argument
1313 enum reloc_type_x86_64 type = _type; in x86_64_reloc_has_pair()
1329 x86_64_reloc_has_got(u_int _type) in x86_64_reloc_has_got() argument
1331 enum reloc_type_x86_64 type = _type; in x86_64_reloc_has_got()
1544 arm_reloc_has_pair(u_int _type) in arm_reloc_has_pair() argument
1546 enum reloc_type_arm type = _type; in arm_reloc_has_pair()
1589 enum reloc_type_arm type = _type; in arm_process_reloc()
1666 arm64_reloc_has_pair(u_int _type) in arm64_reloc_has_pair() argument
1686 arm64_reloc_has_got(u_int _type) in arm64_reloc_has_got() argument
[all …]
/xnu-11215/libkdd/
H A Dkcdata_core.m334 uint32_t _type = (size >= sizeof(uint32_t)) ? *(uint32_t*)dataBuffer : 0;
340 uint32_t rootType = _type;
344 switch (_type) {
384 _type = kcdata_iter_type(iter);
389 if (_type == rootType)
392 if (_type == KCDATA_TYPE_ARRAY) {
404 if (_type == KCDATA_TYPE_CONTAINER_BEGIN) {
424 if (_type == KCDATA_TYPE_TYPEDEFINTION) {
428 kcd_type = getKCDataTypeForID(_type);
445 kcd_type = getKCDataTypeForID(_type);
[all …]
/xnu-11215/libkern/firehose/
H A Dtracepoint_private.h49 firehose_tracepoint_type_t _type; member
93 ._type = type, \
102 ((tid).ftid._type = _firehose_tracepoint_type_##ns##_##type)
/xnu-11215/bsd/net/
H A Dif_ports_used.h293 #define X(_type, _field, ...) _type _field; argument
H A Dpf.c6638 #define TYPE_LEN_CHECK(_type, _name) \ in pf_pptp_handler() argument
6639 case PF_PPTP_CTRL_TYPE_##_type: \ in pf_pptp_handler()
/xnu-11215/bsd/skywalk/packet/
H A Dpacket_common.h71 #define PKT_SUBTYPE_ASSERT(_ph, _type, _subtype) do { \ argument
72 if (__improbable(SK_PTR_TYPE(_ph) != (uint64_t)(_type) || \
74 pkt_subtype_assert_fail(_ph, _type, _subtype); \
80 #define PKT_TYPE_ASSERT(_ph, _type) do { \ argument
81 if (__improbable(SK_PTR_TYPE(_ph) != (uint64_t)(_type))) { \
82 pkt_type_assert_fail(_ph, _type); \
88 #define PKT_SUBTYPE_ASSERT(_ph, _type, _subtype) ((void)0) argument
89 #define PKT_TYPE_ASSERT(_ph, _type) ((void)0) argument
/xnu-11215/osfmk/kern/
H A Dwaitq.h227 waitq_type_t prefix##_type:3; \
/xnu-11215/tools/lldbmacros/
H A Dlog.py97 code_id = int(self._ftid.ftid._type)
/xnu-11215/libsyscall/wrappers/skywalk/
H A Dos_channel.c185 #define _CHANNEL_OFFSET(_type, _ptr, _offset) \ argument
186 ((_type)(void *)((uintptr_t)(_ptr) + (_offset)))
/xnu-11215/bsd/netinet/
H A Din_pcb.c716 #define INP_ALIGN_AND_CAST(_type, _ptr) ({ \ in in_pcballoc() argument
717 typeof((_type)(void *__header_bidi_indexable)NULL) __roundup_type;\ in in_pcballoc()
721 __DEQUALIFY(_type, __roundup_align_ptr); \ in in_pcballoc()