Home
last modified time | relevance | path

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

123456789

/src/sys/netgraph/bluetooth/include/
H A Dng_hci.h415 } __attribute__ ((packed)) ng_hci_cmd_pkt_t;
424 } __attribute__ ((packed)) ng_hci_acldata_pkt_t;
433 } __attribute__ ((packed)) ng_hci_scodata_pkt_t;
442 } __attribute__ ((packed)) ng_hci_event_pkt_t;
447 } __attribute__ ((packed)) bdaddr_t;
456 } __attribute__ ((packed)) ng_hci_status_rp;
702 } __attribute__ ((packed)) ng_hci_inquiry_cp;
716 } __attribute__ ((packed)) ng_hci_periodic_inquiry_cp;
732 } __attribute__ ((packed)) ng_hci_create_con_cp;
739 } __attribute__ ((packed)) ng_hci_discon_cp;
[all …]
H A Dng_l2cap.h162 } __attribute__ ((packed)) ng_l2cap_flow_t;
175 } __attribute__ ((packed)) ng_l2cap_hdr_t;
180 } __attribute__ ((packed)) ng_l2cap_clt_hdr_t;
190 } __attribute__ ((packed)) ng_l2cap_cmd_hdr_t;
197 } __attribute__ ((packed)) ng_l2cap_cmd_rej_cp;
204 } __attribute__ ((packed)) mtu;
209 } __attribute__ ((packed)) cid;
218 } __attribute__ ((packed)) ng_l2cap_con_req_cp;
227 } __attribute__ ((packed)) ng_l2cap_con_rsp_cp;
235 } __attribute__ ((packed)) ng_l2cap_cfg_req_cp;
[all …]
H A Dng_btsocket_rfcomm.h126 } __attribute__ ((packed));
135 } __attribute__ ((packed));
142 } __attribute__ ((packed));
149 } __attribute__ ((packed));
161 } __attribute__ ((packed));
168 } __attribute__ ((packed));
180 } __attribute__ ((packed));
/src/contrib/ofed/libbnxtre/
H A Dabi.h304 } __attribute__((packed));
319 } __attribute__((packed));
323 } __attribute__((packed));
346 } __attribute__((packed));
359 } __attribute__((packed));
364 } __attribute__((packed));
369 } __attribute__((packed));
376 } __attribute__((packed));
383 } __attribute__((packed));
390 } __attribute__((packed));
[all …]
/src/sys/dev/pms/freebsd/driver/common/
H A Dencrypt_ioctl.h50 } __attribute__ ((packed)) IoctlEncryptGetInfo_t;
54 } __attribute__ ((packed)) IoctlEncryptSetMode_t;
61 } __attribute__ ((packed)) IoctlEncryptKekAdd_t;
70 } __attribute__ ((packed)) IoctlEncryptDekAdd_t;
74 } __attribute__ ((packed)) IoctlEncryptDekInvalidate_t;
78 } __attribute__ ((packed)) IoctlEncryptKekNVRAM_t;
83 } __attribute__ ((packed)) IoctlEncryptDekTable_t;
92 } __attribute__ ((packed)) EncryptDekMapEntry_t;
102 } __attribute__ ((packed)) EncryptDeviceDekMap_t;
106 } __attribute__ ((packed)) IoctlEncryptDekMapTable_t;
[all …]
/src/sys/dev/hyperv/utilities/
H A Dhv_kvp.h164 }__attribute__((packed));
170 } __attribute__((packed));
182 } __attribute__((packed));
187 } __attribute__((packed));
191 } __attribute__((packed));
195 } __attribute__((packed));
200 } __attribute__((packed));
204 } __attribute__((packed));
219 } __attribute__((packed));
225 } __attribute__((packed));
/src/sys/dev/drm2/
H A Ddrm_edid.h39 } __attribute__((packed));
52 } __attribute__((packed));
78 } __attribute__((packed));
83 } __attribute__((packed));
100 } __attribute__((packed)) gtf2;
109 } __attribute__((packed)) cvt;
111 } __attribute__((packed));
118 } __attribute__((packed));
125 } __attribute__((packed));
129 } __attribute__((packed));
[all …]
/src/usr.sbin/bluetooth/rtlbtfw/
H A Drtlbt_hw.h38 } __attribute__ ((packed));
47 } __attribute__ ((packed));
53 } __attribute__ ((packed));
61 } __attribute__ ((packed));
86 } __attribute__ ((packed));
91 } __attribute__ ((packed));
96 } __attribute__ ((packed));
101 } __attribute__ ((packed));
H A Drtlbt_fw.h93 } __attribute__ ((packed));
99 } __attribute__ ((packed));
105 } __attribute__ ((packed));
110 } __attribute__ ((packed));
117 } __attribute__ ((packed));
125 } __attribute__ ((packed));
/src/sys/dev/bnxt/bnxt_re/
H A Dbnxt_re-abi.h73 } __attribute__((packed));
87 } __attribute__((packed));
117 } __attribute__((packed));
129 } __attribute__((packed));
133 } __attribute__((packed));
141 } __attribute__((packed));
145 } __attribute__((packed));
150 } __attribute__((packed));
154 } __attribute__((packed));
/src/sys/dev/ips/
H A Dipsreg.h211 } __attribute__ ((packed)) ips_generic_cmd;
222 } __attribute__ ((packed)) ips_io_cmd;
232 } __attribute__ ((packed)) ips_rw_nvram_cmd;
242 } __attribute__ ((packed)) ips_drive_cmd;
252 } __attribute__((packed)) ips_adapter_info_cmd;
268 } __attribute__((packed)) ips_adapter_ffdc_cmd;
289 }__attribute__((packed)) ips_nvram_page5;
302 } __attribute__((packed)) ips_drive_t;
309 }__attribute__((packed)) ips_drive_info_t;
334 }__attribute__((packed)) ips_adapter_info_t;
[all …]
/src/sys/contrib/alpine-hal/
H A Dal_hal_types.h78 #define __packed __attribute__ ((packed))
81 #define __packed_a4 __attribute__ ((packed, aligned(4)))
82 #define __packed_a8 __attribute__ ((packed, aligned(8)))
83 #define __packed_a16 __attribute__ ((packed, aligned(16)))
/src/sys/dev/nvmf/
H A Dnvmf_transport.c248 void *packed; in nvmf_pack_ioc_nvlist() local
258 packed = nvlist_pack(nvl, &nv->len); in nvmf_pack_ioc_nvlist()
259 if (packed == NULL) in nvmf_pack_ioc_nvlist()
264 error = copyout(packed, nv->data, nv->len); in nvmf_pack_ioc_nvlist()
265 free(packed, M_NVLIST); in nvmf_pack_ioc_nvlist()
273 void *packed; in nvmf_unpack_ioc_nvlist() local
277 packed = malloc(nv->size, M_NVMF_TRANSPORT, M_WAITOK); in nvmf_unpack_ioc_nvlist()
278 error = copyin(nv->data, packed, nv->size); in nvmf_unpack_ioc_nvlist()
280 free(packed, M_NVMF_TRANSPORT); in nvmf_unpack_ioc_nvlist()
284 nvl = nvlist_unpack(packed, nv->size, 0); in nvmf_unpack_ioc_nvlist()
[all …]
/src/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_cmds.h58 } __attribute__ ((packed)) *c = NULL; \
92 } __attribute__ ((packed)) *c = NULL; \
115 } __attribute__ ((packed)) *c = NULL; \
140 } __attribute__ ((packed)) *c = NULL; \
174 } __attribute__ ((packed)) *c = NULL; \
208 } __attribute__ ((packed)) *c = NULL; \
238 } __attribute__ ((packed)) *o = NULL; \
253 } __attribute__ ((packed)) *o = NULL; \
268 } __attribute__ ((packed)) *o = NULL; \
302 } __attribute__ ((packed)) *c = NULL; \
[all …]
/src/lib/libnv/tests/
H A Dnv_tests.cc433 void *packed; in ATF_TEST_CASE_BODY() local
439 packed = nvlist_pack(nvl, &packed_size); in ATF_TEST_CASE_BODY()
440 ATF_REQUIRE(packed != NULL); in ATF_TEST_CASE_BODY()
442 unpacked = nvlist_unpack(packed, packed_size, 0); in ATF_TEST_CASE_BODY()
449 free(packed); in ATF_TEST_CASE_BODY()
456 void *packed; in ATF_TEST_CASE_BODY() local
466 packed = nvlist_pack(nvl, &packed_size); in ATF_TEST_CASE_BODY()
467 ATF_REQUIRE(packed != NULL); in ATF_TEST_CASE_BODY()
469 unpacked = nvlist_unpack(packed, packed_size, 0); in ATF_TEST_CASE_BODY()
472 unpacked = nvlist_unpack(packed, packed_size, NV_FLAG_IGNORE_CASE); in ATF_TEST_CASE_BODY()
[all …]
H A Dnvlist_send_recv_test.c550 void *packed; in ATF_TC_BODY() local
574 packed = nvlist_pack(nvl, &packed_size); in ATF_TC_BODY()
575 ATF_REQUIRE(packed != NULL); in ATF_TC_BODY()
578 header = (struct nvlist_header *)packed; in ATF_TC_BODY()
581 ATF_REQUIRE_EQ(write(fd, packed, packed_size), in ATF_TC_BODY()
585 free(packed); in ATF_TC_BODY()
613 void *packed; in ATF_TC_BODY() local
636 packed = nvlist_pack(nvl, &packed_size); in ATF_TC_BODY()
637 ATF_REQUIRE(packed != NULL); in ATF_TC_BODY()
640 header = (struct nvlist_header *)packed; in ATF_TC_BODY()
[all …]
H A Dnv_array_tests.cc911 void *packed; in ATF_TEST_CASE_BODY() local
930 packed = nvlist_pack(nvl, &packed_size); in ATF_TEST_CASE_BODY()
931 ATF_REQUIRE(packed != NULL); in ATF_TEST_CASE_BODY()
933 unpacked = nvlist_unpack(packed, packed_size, 0); in ATF_TEST_CASE_BODY()
946 free(packed); in ATF_TEST_CASE_BODY()
955 void *packed; in ATF_TEST_CASE_BODY() local
972 packed = nvlist_pack(nvl, &packed_size); in ATF_TEST_CASE_BODY()
973 ATF_REQUIRE(packed != NULL); in ATF_TEST_CASE_BODY()
975 unpacked = nvlist_unpack(packed, packed_size, 0); in ATF_TEST_CASE_BODY()
988 free(packed); in ATF_TEST_CASE_BODY()
[all …]
/src/usr.sbin/bluetooth/iwmbtfw/
H A Diwmbt_hw.h36 } __attribute__ ((packed));
45 } __attribute__ ((packed));
51 } __attribute__ ((packed));
59 } __attribute__ ((packed));
/src/sys/compat/linux/
H A Dlinux_videodev2_compat.h65 __attribute__ ((packed))
78 } __attribute__ ((packed));
99 __attribute__ ((packed))
129 __attribute__ ((packed))
/src/contrib/wpa/src/ap/
H A Diapp.c59 } __attribute__ ((packed));
80 } __attribute__ ((packed));
92 } __attribute__ ((packed));
103 } __attribute__ ((packed));
114 } __attribute__ ((packed));
133 } __attribute__ ((packed));
142 } __attribute__ ((packed));
155 } __attribute__ ((packed));
162 } __attribute__ ((packed));
/src/contrib/llvm-project/compiler-rt/include/xray/
H A Dxray_records.h63 } __attribute__((packed));
102 } __attribute__((packed));
128 } __attribute__((packed));
/src/sys/netgraph/bluetooth/drivers/ubt/
H A Dng_ubt_var.h81 } __attribute__ ((packed));
89 } __attribute__ ((packed));
94 } __attribute__ ((packed));
101 } __attribute__ ((packed));
/src/sys/dev/enic/
H A Dvnic_devcmd.h785 } __attribute__((packed));
814 } __attribute__((packed));
828 } __attribute__((packed));
852 } __attribute__((packed));
888 } __attribute__((packed)) layer[FILTER_GENERIC_1_NUM_LAYERS];
889 } __attribute__((packed));
903 } __attribute__((packed));
924 } __attribute__((packed));
961 } __attribute__((packed));
981 } __attribute__((packed));
/src/sys/ofed/drivers/infiniband/core/
H A Dcm_msgs.h104 } __attribute__ ((packed));
429 } __attribute__ ((packed));
467 } __attribute__ ((packed));
512 } __attribute__ ((packed));
620 } __attribute__ ((packed));
632 } __attribute__ ((packed));
653 } __attribute__ ((packed));
681 } __attribute__ ((packed));
790 } __attribute__ ((packed));
801 } __attribute__ ((packed));
[all …]
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp323 u8 *packed = in Pack() local
325 PackedHeader *header = reinterpret_cast<PackedHeader *>(packed); in Pack()
326 u8 *alloc_end = packed + kBlockSizeBytes; in Pack()
344 header->size = packed_end - packed; in Pack()
352 store->Unmap(packed, kBlockSizeBytes); in Pack()
358 store->Unmap(packed + packed_size_aligned, in Pack()
360 MprotectReadOnly(reinterpret_cast<uptr>(packed), packed_size_aligned); in Pack()
362 atomic_store(&data_, reinterpret_cast<uptr>(packed), memory_order_release); in Pack()

123456789