Searched refs:packed (Results 51 - 75 of 132) sorted by relevance

123456

/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_eq.c51 * Must be packed because start is 64 bits but only aligned to 32 bits.
66 } __attribute__((packed));
133 } __attribute__((packed)) comp;
141 } __attribute__((packed)) cmd;
144 } __attribute__((packed)) qp;
147 } __attribute__((packed)) srq;
153 } __attribute__((packed)) cq_err;
157 } __attribute__((packed)) port_change;
161 } __attribute__((packed));
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfs_ioctl_compat.c890 char *packed; local
901 packed = kmem_alloc(size, KM_SLEEP);
902 if ((error = ddi_copyin((void *)(uintptr_t)nvl, packed, size,
904 kmem_free(packed, size);
908 packed = (void *)(uintptr_t)nvl;
911 error = nvlist_unpack(packed, size, &list, 0);
914 kmem_free(packed, size);
927 char *packed = NULL; local
934 packed = kmem_alloc(size, KM_SLEEP);
935 VERIFY(nvlist_pack(nvl, &packed,
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/nvpair/
H A Dopensolaris_fnvpair.c82 char *packed = 0; local
83 VERIFY3U(nvlist_pack(nvl, &packed, sizep, NV_ENCODE_NATIVE,
85 return (packed);
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dsingle.h71 } bits __attribute__((packed));
H A Ddouble.h82 } bits __attribute__((packed));
179 } bits __attribute__((packed));
/freebsd-11-stable/contrib/binutils/include/
H A Dansidecl.h367 # define ATTRIBUTE_PACKED __attribute__ ((packed))
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_drv.h352 } __attribute__ ((packed)) avi;
357 } __attribute__ ((packed)) spd;
359 } __attribute__ ((packed)) body;
360 } __attribute__((packed));
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dos_bsd.h105 __attribute__((packed))
/freebsd-11-stable/sys/dev/hptnr/
H A Dos_bsd.h107 __attribute__((packed))
/freebsd-11-stable/sys/dev/hptrr/
H A Dos_bsd.h108 __attribute__((packed))
/freebsd-11-stable/contrib/tcpdump/
H A Dnetdissect-stdinc.h228 * 1) they support __attribute__((packed));
249 * at least for compilers where it's implemented as __attribute__((packed)).
254 #define UNALIGNED __attribute__((packed))
/freebsd-11-stable/sys/ofed/include/rdma/
H A Dib_smi.h66 } __attribute__ ((packed));
H A Dib_mad.h193 * ib_sa_hdr and ib_sa_mad structures must be packed because they have
203 } __attribute__ ((packed));
232 } __attribute__ ((packed));
H A Dopa_port_info.h419 } __attribute__ ((packed));
/freebsd-11-stable/sys/dev/pci/
H A Dpci_iov.c915 void *packed; local
919 packed = NULL;
923 packed = nvlist_pack(dinfo->cfg.iov->iov_schema, &size);
926 if (packed == NULL) {
934 error = copyout(packed, output->schema, size);
951 free(packed, M_NVLIST);
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_ulpi.c126 } __attribute__ ((packed)) *req = NULL;
326 } __attribute__ ((packed)) *req = NULL;
490 } __attribute__ ((packed)) *req = NULL;
668 } __attribute__ ((packed)) *req = NULL;
906 } __attribute__ ((packed)) cp;
907 } __attribute__ ((packed)) *req = NULL;
1156 } __attribute__ ((packed)) *req = NULL;
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_virtio_console.c139 } __attribute__((packed));
145 } __attribute__((packed));
150 } __attribute__((packed));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp388 uint8_t packed = data_bits & bitmask; local
389 bytes.insert(bytes.begin(), sixBitToCharLookup[packed]);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-lang.h138 __attribute__ ((packed))
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-nand.h387 typedef struct __attribute__ ((packed))
/freebsd-11-stable/contrib/ofed/libibumad/
H A Dumad.h75 } __attribute__((aligned(4))) __attribute__((packed));
/freebsd-11-stable/usr.sbin/mlxcontrol/
H A Dinterface.c239 } __attribute__ ((packed)) dcdb_cmd;
/freebsd-11-stable/contrib/wpa/src/drivers/
H A Dnl80211_copy.h2241 * better BSSs. The attribute value is a packed structure
2972 } __attribute__((packed));
3674 * RSSI-based BSS selection. The attribute value is a packed structure
4666 } __attribute__((packed));
4916 } __attribute__((packed));
5800 } __attribute__((packed));
5815 * RSSI-based BSS selection. The attribute value is a packed structure
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-bt-monitor-linux.c60 } __attribute__((packed));
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_blake2.h25 #define BLAKE2_PACKED(x) x __attribute__((packed))

Completed in 466 milliseconds

123456