Home
last modified time | relevance | path

Searched refs:packed (Results 1 – 25 of 69) sorted by relevance

123

/xnu-10063.141.1/osfmk/kern/
H A Dkcdata.h744 } __attribute__((packed));
775 } __attribute__((packed));
798 } __attribute__((packed));
824 } __attribute__((packed));
830 } __attribute__((packed));
853 } __attribute__((packed));
860 } __attribute__((packed));
874 } __attribute__((packed));
879 } __attribute__((packed));
886 } __attribute__((packed));
[all …]
H A Ddebug.h99 } __attribute__((packed));
159 } __attribute__ ((packed));
170 } __attribute__ ((packed));
375 } __attribute__((packed));
382 } __attribute__((packed));
421 } __attribute__((packed));
436 } __attribute__((packed));
450 } __attribute__((packed));
H A Dsocd_client.h130 } __attribute__((packed)) socd_client_hdr_t;
141 } __attribute ((packed)) socd_client_trace_entry_t;
H A Dtimer.h71 #define TIMER_ALIGNMENT __attribute__((packed, aligned(4)))
/xnu-10063.141.1/osfmk/mach/i386/
H A Dfp_reg.h98 }__attribute__ ((packed));
106 typedef struct { uint64_t lo64, hi64; }__attribute__ ((packed)) reg128_t;
107 typedef struct { reg128_t lo128, hi128; }__attribute__ ((packed)) reg256_t;
108 typedef struct { reg256_t lo256, hi256; }__attribute__ ((packed)) reg512_t;
115 }__attribute__ ((packed));
130 }__attribute__ ((packed));
/xnu-10063.141.1/tests/intrusive_shared_ptr_src/
H A Dabi.size_alignment.cpp81 struct __attribute__((packed)) FooShared {
88 struct __attribute__((packed)) FooRaw {
105 int i __attribute__((packed));
112 int i __attribute__((packed));
124 test_shared_ptr<int> ptr __attribute__((packed));
131 int* ptr __attribute__((packed));
/xnu-10063.141.1/osfmk/kdp/
H A Dcore_notes.h45 } __attribute__((packed)) main_bin_spec_note_t;
73 } __attribute__((packed)) load_binary_spec_note_t;
86 } __attribute__((packed)) addrable_bits_note_t;
95 } __attribute__((packed)) panic_context_note_t;
/xnu-10063.141.1/bsd/conf/
H A DMakefile.template86 ah_core.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
87 ah_input.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
88 dlil.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
89 esp_input.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
90 esp_output.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
91 frag6.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
92 icmp6.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
93 if_ipsec.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
94 if_stf.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
95 in6_cksum.o_CWARNFLAGS_ADD += -Wno-address-of-packed-member
[all …]
/xnu-10063.141.1/iokit/IOKit/
H A DIOReportTypes.h92 } __attribute((packed)) IOSimpleReportValues;
97 } __attribute((packed)) IOSimpleArrayReportValues;
105 } __attribute((packed)) IOStateReportValues;
113 } __attribute((packed)) IOHistogramReportValues;
147 } __attribute((packed)) IOReportChannelType;
193 } __attribute((packed)) IOReportElementValues;
201 } __attribute((packed)) IOReportElement;
H A DIOHibernatePrivate.h115 uint64_t runtimeVirtualPages __attribute__ ((packed));
120 uint64_t encryptStart __attribute__ ((packed));
121 uint64_t machineSignature __attribute__ ((packed));
135 uint64_t sleepTime __attribute__ ((packed));
140 uint64_t lastHibAbsTime __attribute__ ((packed));
144 } __attribute__ ((packed));
145 uint64_t kernVirtSlide __attribute__ ((packed));
159 uint64_t encryptEnd __attribute__ ((packed));
160 uint64_t deviceBase __attribute__ ((packed));
H A DIOKernelReportStructs.h80 } __attribute((packed)) IOHistogramSegmentConfig;
88 } __attribute((packed)) IONormDistReportValues;
H A DOSMessageNotification.h146 void * args[] __attribute__ ((packed));
148 void * args[0] __attribute__ ((packed));
/xnu-10063.141.1/bsd/kern/
H A Dchunklist.h27 } __attribute__((packed));
32 } __attribute__((packed));
/xnu-10063.141.1/libkern/os/
H A Dtrace.h77 const struct __attribute__((packed)) { \
96 const struct __attribute__((packed)) { \
118 const struct __attribute__((packed)) { \
143 const struct __attribute__((packed)) { \
171 const struct __attribute__((packed)) { \
202 const struct __attribute__((packed)) { \
236 const struct __attribute__((packed)) { \
272 const struct __attribute__((packed)) { \
291 const struct __attribute__((packed)) { \
313 const struct __attribute__((packed)) { \
[all …]
H A Dptrtools.h37 #define __os_unaligned_type(p) struct { __typeof__(*(p)) val; } __attribute__((packed)) *
/xnu-10063.141.1/osfmk/mach/
H A Dvm_param.h599 vm_unpack_pointer(vm_offset_t packed, vm_packing_params_t params) in vm_unpack_pointer() argument
602 intptr_t addr = (intptr_t)packed; in vm_unpack_pointer()
607 if (packed) { in vm_unpack_pointer()
608 return vm_memtag_fixup_ptr((packed << params.vmpp_shift) + params.vmpp_base); in vm_unpack_pointer()
612 #define VM_UNPACK_POINTER(packed, ns) \ argument
613 vm_unpack_pointer(packed, VM_PACKING_PARAMS(ns))
/xnu-10063.141.1/bsd/pthread/
H A Dworkqueue_syscalls.h87 } __attribute__((packed));
118 } __attribute__((packed, aligned(4)));
/xnu-10063.141.1/tools/lldbmacros/kmemory/
H A Dkmem.py38 def unpack(self, packed): argument
49 if not packed:
53 addr = (packed << self.shift) + self.base
57 addr = c_int64(packed << (64 - bits)).value
H A Dvm.py118 packed = sbv.xGetScalarByName('vme_object_or_delta')
119 addr = kmem.vm_page_packing.unpack(packed)
/xnu-10063.141.1/bsd/sys/
H A Ddecmpfs.h88 typedef struct __attribute__((packed)) {
114 typedef struct __attribute__((packed)) {
125 typedef struct __attribute__((packed)) {
H A Dkdebug_common.h106 } __attribute__((aligned(MAX_CPU_CACHE_LINE_SIZE))) __attribute__((packed));
154 } __attribute__((packed));
H A Dpreoslog.h52 typedef struct __attribute__((packed)) {
/xnu-10063.141.1/bsd/sys/_types/
H A D_graftdmg_un.h53 } __attribute__((aligned(4), packed)) secure_boot_cryptex_args_t;
/xnu-10063.141.1/osfmk/vm/
H A Dvm_phantom_cache.h43 } __attribute__((packed));
/xnu-10063.141.1/osfmk/mach/arm/
H A Dprocessor_info.h67 } __attribute__((packed, aligned(4)));

123