Home
last modified time | relevance | path

Searched refs:TYPE (Results 1 – 16 of 16) sorted by relevance

/xnu-12377.81.4/bsd/net/
H A Dstrict_type_cnv_private.h151 #define __STC_OBJ_TO_BYTES_CNV_IMPL(CV, TAG, TYPE, MAX_LEN, CNV_F) \ argument
154 CNV_F(const TAG TYPE *ptr __single) \
156 return __STC_CONV_TO_BYTES_LEN(__DECONST(TAG TYPE *__single, ptr), (MAX_LEN)); \
159 #define __STC_BYTES_TO_OBJ_CNV_IMPL(CV, TAG, TYPE, BTYPE, MIN_LEN, CNV_F) \ argument
160 static inline CV TAG TYPE * __single \
165 return __STC_CONV_FROM_BYTES_LEN(CV TAG, TYPE, data, (MIN_LEN)); \
279 #define __STC_DEFINE_BYTE_TO_OBJ_CNVS(TAG, TYPE, MIN_LEN, MAX_LEN) \ argument
281 __STC_OBJ_TO_BYTES_CNV_IMPL(, TAG, TYPE, MAX_LEN, __STC_OBJ_TO_BY_CNV(TYPE)) \
284 __STC_OBJ_TO_BYTES_CNV_IMPL(, TAG, TYPE, MAX_LEN, __STC_COBJ_TO_CBY_CNV(TYPE)) \
287 __STC_BYTES_TO_OBJ_CNV_IMPL(, TAG, TYPE, void, MIN_LEN, __STC_BY_TO_OBJ_CNV(TYPE)) \
[all …]
/xnu-12377.81.4/bsd/kern/
H A Dqsort.c78 #define swapcode(TYPE, parmi, parmj, n) \ argument
79 long i = (n) / sizeof (TYPE); \
80 TYPE *pi = (TYPE *) (parmi); \
81 TYPE *pj = (TYPE *) (parmj); \
83 TYPE t = *pi; \
/xnu-12377.81.4/tests/vm/
H A Dvm_stress_slow.sh19 TYPE="ssd"
102 dmc configure "$RAMDISK_MP" "$TYPE" "$ACCESS_TIME" "$READ_THROUGHPUT" "$WRITE_THROUGHPUT" "$IOQUEUE…
/xnu-12377.81.4/libkern/zlib/
H A Dinflate.c605 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */ in inflate()
653 state->mode = hold & 0x200 ? DICTID : TYPE; in inflate()
788 state->mode = TYPE; in inflate()
805 state->mode = TYPE; in inflate()
807 case TYPE: in inflate()
871 state->mode = TYPE; in inflate()
1022 state->mode = TYPE; in inflate()
1194 (state->mode == TYPE ? 128 : 0); in inflate()
1341 state->mode = TYPE; in inflateSync()
H A Dinfback.c294 state->mode = TYPE; in inflateBack()
307 case TYPE: in inflateBack()
370 state->mode = TYPE; in inflateBack()
534 state->mode = TYPE; in inflateBack()
H A Dinflate.h59 TYPE, /* i: waiting for type bits, including last-flag bit */ enumerator
H A Dinffast.c287 state->mode = TYPE; in inflate_fast()
/xnu-12377.81.4/iokit/DriverKit/
H A DOSAction.iig49 …* a TYPE attribute. The generated methods are named CreateAction{name of method with type attribut…
68 …* a TYPE attribute, so there should not be any need to directly call OSAction::Create…
H A DIODataQueueDispatchSource.iig79 OSAction * action TYPE(DataAvailable));
91 OSAction * action TYPE(DataServiced));
H A DIOUserClient.iig290 OSAction * completion TYPE(IOUserClient::AsyncCompletion)) LOCAL
300 TYPE(IOUserClient::AsyncCompletion);
H A DIOServiceNotificationDispatchSource.iig104 OSAction * action TYPE(ServiceNotificationReady));
H A DIOServiceStateNotificationDispatchSource.iig92 OSAction * action TYPE(StateNotificationReady));
H A DIOInterruptDispatchSource.iig112 OSAction * action TYPE(InterruptOccurred)) LOCAL;
H A DOSObject.iig92 #define TYPE(p) IIG_TYPE(p)
/xnu-12377.81.4/tools/lldbmacros/
H A Dlog.py52 TYPE = { variable in FTID
98 return (code_id, self.TYPE.get(code_id, "<unknown>"))
/xnu-12377.81.4/tests/ktrace/
H A Dkperf_tests.c429 #define CIRQ_INIT(TYPE, NSLOTS) \ argument
431 .nslots = NSLOTS, .tail_slot = 0, .slot_size = sizeof(TYPE), \