Searched refs:packed (Results 101 - 125 of 132) sorted by relevance

123456

/freebsd-11-stable/sys/dev/bnxt/
H A Dconvert_hsi.pl84 #$header =~ s/}(\s+)([^\s]+_t[,;])/} __attribute__((packed))$1$2/gs;
95 $header =~ s/^typedef struct (.*?)\n{\n(.*?)}[^\n]*;/struct $1 {\n$2} __attribute__((packed));/gsm;
/freebsd-11-stable/usr.sbin/bluetooth/sdpd/
H A Dserver.c545 } __attribute__ ((packed)) rsp;
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dcommon.h351 #define STRUCT_PACKED __attribute__ ((packed))
/freebsd-11-stable/lib/libsdp/
H A Dsdp.h268 } __attribute__ ((packed));
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspa.c1793 char *packed = NULL; local
1805 packed = kmem_alloc(nvsize, KM_SLEEP);
1806 error = dmu_read(spa->spa_meta_objset, obj, 0, nvsize, packed,
1809 error = nvlist_unpack(packed, nvsize, value, 0);
1810 kmem_free(packed, nvsize);
7441 char *packed = NULL; local
7454 packed = kmem_alloc(bufsize, KM_SLEEP);
7456 VERIFY(nvlist_pack(nv, &packed, &nvsize, NV_ENCODE_XDR,
7458 bzero(packed + nvsize, bufsize - nvsize);
7460 dmu_write(spa->spa_meta_objset, obj, 0, bufsize, packed, t
[all...]
H A Ddsl_dataset.c1896 void *packed; local
1939 packed = fnvlist_pack(token_nv, &packed_size);
1943 compressed_size = gzip_compress(packed, compressed,
1958 kmem_free(packed, packed_size);
/freebsd-11-stable/share/mk/
H A Dbsd.sys.mk91 CWARNFLAGS.clang+= -Wno-address-of-packed-member
/freebsd-11-stable/contrib/subversion/
H A Dbuild.conf929 description = Test packed bit arrays
1034 [packed-data-test]
1038 sources = packed-data-test.c
1579 opt-test packed-data-test path-test prefix-string-test
/freebsd-11-stable/sys/conf/
H A Dkern.mk38 CWARNEXTRA+= -Wno-address-of-packed-member
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_sendrecv.c1562 void *packed = zfs_alloc(hdl, packed_len); local
1564 if (uncompress(packed, &packed_len_long, compressed, len) != Z_OK ||
1566 free(packed);
1575 int error = nvlist_unpack(packed, packed_len, &nv, KM_SLEEP);
1576 free(packed);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c699 * Block Elements (U+2581 through U+2588, inclusive) to represent our packed
721 * packed aggregation. To do this, we will check for terminals
2110 boolean_t packed = pd->dtpa_agghist || pd->dtpa_aggpack; local
2125 if (packed && pd->dtpa_agghisthdr != agg->dtagd_varid) {
2227 width = packed ? fmt->packedwidth : fmt->width;
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_qp.c117 } __attribute__((packed));
156 } __attribute__((packed));
163 } __attribute__((packed));
H A Dmthca_cq.c62 * Must be packed because start is 64 bits but only aligned to 32 bits.
80 } __attribute__((packed));
H A Dmthca_mr.c48 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
63 } __attribute__((packed));
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_dbg_fw_funcs.c3361 * - packed: dumped only if it's not false.
3374 bool packed,
3388 if (packed)
3423 /* Dump packed */
3424 if (packed)
3425 offset += ecore_dump_num_param(dump_buf + offset, dump, "packed", 1);
3455 bool packed,
3462 offset += ecore_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, name, addr, len, bit_width, packed, mem_group, is_storm, storm_letter);
3808 bool packed; local
3814 packed
3367 ecore_grc_dump_mem_hdr(struct ecore_hwfn *p_hwfn, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, u32 bit_width, bool packed, const char *mem_group, bool is_storm, char storm_letter) argument
3446 ecore_grc_dump_mem(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, bool wide_bus, u32 bit_width, bool packed, const char *mem_group, bool is_storm, char storm_letter) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_ioc32.c723 } __attribute__((packed)) drm_update_draw32_t;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h852 } __attribute__((packed));
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_evnt.c737 } __attribute__ ((packed)) *lp;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/nvpair/
H A Dopensolaris_nvpair.c776 * trusted. This function is used when decoding packed nvpairs.
2508 bzero(nvlp, len); /* don't trust packed data */
2741 * This structure is used when decoding a packed nvpair in
2743 * packed nvpair. n_end is a pointer to the end of the buffer.
2748 * n_flag is used to recognize a packed embedded list.
2824 return (0); /* packed embedded list */
2837 * if calculate for packed embedded list
2881 char *packed = (void *) local
2884 * Null out the pointer that is meaningless in the packed
2888 bzero(packed
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dunwind-dw2.c101 } __attribute__ ((packed));
/freebsd-11-stable/sys/compat/ndis/
H A Dntoskrnl_var.h996 } isl_parameters __attribute__((packed));
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c256 char *packed = umem_alloc(nvsize, UMEM_NOFAIL); local
258 VERIFY(0 == dmu_read(os, object, 0, nvsize, packed, DMU_READ_PREFETCH));
260 VERIFY(nvlist_unpack(packed, nvsize, &nv, 0) == 0);
262 umem_free(packed, nvsize);
2037 dump_none, /* packed nvlist */
2038 dump_packed_nvlist, /* packed nvlist size */
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_event.c94 __attribute__((packed))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp368 RAW_METHOD_DUMP(OS, packed);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp454 // custom_fields; }'. Assert that struct is packed.
475 // TargetOpenCLBlockHelp needs to make sure the struct is packed.
489 // Assert that the struct is packed.
989 // We assume all the header fields are densely packed.
2783 bool packed = false; local
2798 packed = true;
2802 byrefType->setBody(types, packed);

Completed in 381 milliseconds

123456