Searched refs:_unsafe_type (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215.1.10/osfmk/mach/ |
| H A D | vm_types_unsafe.h | 53 #define VM_GENERATE_UNSAFE_WRAPPER(_safe_type, _unsafe_type) \ argument 54 typedef _safe_type _unsafe_type 56 #define VM_GENERATE_UNSAFE_WRAPPER(_safe_type, _unsafe_type) \ argument 57 typedef union { _safe_type UNSAFE; } _unsafe_type \ 59 _Static_assert(sizeof(_safe_type) == sizeof(_unsafe_type), \ 81 #define VM_GENERATE_UNSAFE_TYPE(_safe_type, _unsafe_type) \ argument 82 VM_GENERATE_UNSAFE_WRAPPER(_safe_type, _unsafe_type) 84 #define VM_GENERATE_UNSAFE_BSD_TYPE(_safe_type, _unsafe_type) \ argument 85 VM_GENERATE_UNSAFE_WRAPPER(_safe_type, _unsafe_type) 91 #define VM_GENERATE_UNSAFE_EXT(_safe_type, _unsafe_type, variant, size) \ argument [all …]
|
| /xnu-11215.1.10/osfmk/mach/machine/ |
| H A D | machine_types.defs | 52 #define VM_GENERATE_MIG_TMPTYPE_U64(_original_type, _unsafe_type) \ 53 type _unsafe_type = uint64_t; \ 54 type _original_type ## _tmp = uint64_t VM_ADD_CTYPE(_unsafe_type); 56 #define VM_GENERATE_MIG_TMPTYPE_U32(_original_type, _unsafe_type) \ 57 type _unsafe_type = uint32_t; \ 58 type _original_type ## _tmp = uint32_t VM_ADD_CTYPE(_unsafe_type); 60 #define VM_GENERATE_MIG_TMPTYPE_I32(_original_type, _unsafe_type) \ 61 type _unsafe_type = int32_t; \ 62 type _original_type ## _tmp = int32_t VM_ADD_CTYPE(_unsafe_type);
|