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

123456

/freebsd-12-stable/stand/i386/libi386/
H A Dmultiboot.h206 } __attribute__((packed));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h50 using packed = support::detail::packed_endian_specific_integral<Ty, E, 1>;
64 using Relr = packed<uint>;
85 using Half = packed<uint16_t>;
86 using Word = packed<uint32_t>;
87 using Sword = packed<int32_t>;
88 using Xword = packed<uint64_t>;
89 using Sxword = packed<int64_t>;
90 using Addr = packed<uint>;
91 using Off = packed<uint>;
/freebsd-12-stable/contrib/tcpdump/
H A Dextract.h75 * we assume that mean we have __attribute__((packed)), and this is
79 * Declare packed structures containing a uint16_t and a uint32_t,
82 * __attribute__((packed)) causes the compiler to generate unaligned-safe
120 * __attribute__((packed))? How can we get it to generate unaligned
125 } __attribute__((packed)) unaligned_uint16_t;
129 } __attribute__((packed)) unaligned_uint32_t;
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-12-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-12-stable/sbin/pfctl/
H A Dpfctl_osfp.c451 fprintf(stderr, "warning: fingerprint packed to 'any'\n");
897 pf_tcpopts_t *packed, int *optcnt, int *mss, int *mss_mod, int *wscale,
902 *packed = 0;
916 *packed = (*packed << PF_OSFP_TCPOPT_BITS) |
934 *packed = (*packed << PF_OSFP_TCPOPT_BITS) |
964 *packed = (*packed << PF_OSFP_TCPOPT_BITS) |
896 get_tcpopts(const char *filename, int lineno, const char *tcpopts, pf_tcpopts_t *packed, int *optcnt, int *mss, int *mss_mod, int *wscale, int *wscale_mod, int *ts0) argument
/freebsd-12-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-12-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-12-stable/contrib/binutils/include/
H A Dansidecl.h367 # define ATTRIBUTE_PACKED __attribute__ ((packed))
/freebsd-12-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-12-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-12-stable/sys/dev/hpt27xx/
H A Dos_bsd.h107 __attribute__((packed))
/freebsd-12-stable/sys/dev/hptnr/
H A Dos_bsd.h109 __attribute__((packed))
/freebsd-12-stable/sys/dev/hptrr/
H A Dos_bsd.h110 __attribute__((packed))
/freebsd-12-stable/sys/ofed/include/rdma/
H A Dib_smi.h68 } __attribute__ ((packed));
H A Dib_mad.h195 * ib_sa_hdr and ib_sa_mad structures must be packed because they have
205 } __attribute__ ((packed));
234 } __attribute__ ((packed));
/freebsd-12-stable/sys/dev/pci/
H A Dpci_iov.c938 void *packed; local
942 packed = NULL;
946 packed = nvlist_pack(dinfo->cfg.iov->iov_schema, &size);
949 if (packed == NULL) {
957 error = copyout(packed, output->schema, size);
974 free(packed, M_NVLIST);
/freebsd-12-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_ulpi.c128 } __attribute__ ((packed)) *req = NULL;
328 } __attribute__ ((packed)) *req = NULL;
492 } __attribute__ ((packed)) *req = NULL;
670 } __attribute__ ((packed)) *req = NULL;
908 } __attribute__ ((packed)) cp;
909 } __attribute__ ((packed)) *req = NULL;
1158 } __attribute__ ((packed)) *req = NULL;
/freebsd-12-stable/usr.sbin/bhyve/
H A Dpci_virtio_console.c143 } __attribute__((packed));
149 } __attribute__((packed));
154 } __attribute__((packed));
/freebsd-12-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-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp564 bool packed = false; local
576 if (!packed && !entry.Begin.isMultipleOf(
579 packed = true;
587 // We don't need to adjust 'packed' to deal with possible tail padding
589 auto coercionType = llvm::StructType::get(ctx, elts, packed);
600 unpaddedType = llvm::StructType::get(ctx, elts, /*packed*/ false);
/freebsd-12-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-12-stable/contrib/ofed/libibumad/
H A Dumad.h75 } __attribute__((aligned(4))) __attribute__((packed));
/freebsd-12-stable/contrib/gdb/gdb/
H A Dada-lang.h138 __attribute__ ((packed))

Completed in 208 milliseconds

123456