Searched refs:packed (Results 76 - 100 of 132) sorted by relevance

123456

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_util.c847 char *packed; local
852 if ((packed = zfs_alloc(hdl, len)) == NULL)
855 verify(nvlist_pack(nvl, &packed, &len, NV_ENCODE_NATIVE, 0) == 0);
857 *outnv = (uint64_t)(uintptr_t)packed;
/freebsd-11-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-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h459 void setPacked(bool packed) { argument
460 this->Packed = packed;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dutil.c54 /* Return TRUE is REV is packed in FS, FALSE otherwise. */
63 /* Return TRUE is REV is packed in FS, FALSE otherwise. */
69 /* rev 0 will not be packed */
156 * PACKED says whether we want the packed shard's name.
162 svn_boolean_t packed,
173 if (packed)
241 /* Revprops for packed r0 are not packed, yet stored in the packed shard.
242 Hence, the second flag must check for packed _rev
160 construct_shard_sub_path(svn_fs_t *fs, svn_revnum_t rev, svn_boolean_t packed, const char *filename, apr_pool_t *result_pool) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dutil.c52 /* rev 0 will not be packed */
158 svn_boolean_t packed,
161 return packed
156 path_rev_absolute_internal(svn_fs_t *fs, svn_revnum_t rev, svn_boolean_t packed, apr_pool_t *pool) argument
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dquad.h87 } bits __attribute__((packed));
H A Dextended.h82 } bits __attribute__((packed));
/freebsd-11-stable/lib/libsdp/
H A Dsearch.c55 } __attribute__ ((packed)) xpdu;
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dhim.h194 __attribute__((packed))
/freebsd-11-stable/sys/dev/hptnr/
H A Dhim.h192 __attribute__((packed))
/freebsd-11-stable/sys/dev/hptrr/
H A Dhim.h165 __attribute__((packed))
/freebsd-11-stable/sys/netinet/
H A Dsctp_header.h43 #define SCTP_PACKED __attribute__((packed))
H A Dsctp.h43 #define SCTP_PACKED __attribute__((packed))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompiler.h367 /// Used to specify a packed structure.
389 # define LLVM_PACKED(d) d __attribute__((packed))
/freebsd-11-stable/lib/libpmc/
H A Dlibpmc.c1995 __K8MASK(packed-sse-sse2, 2),
2403 static const struct pmc_masks p4_mask_psu[] = { /* packed sp uop */
2408 static const struct pmc_masks p4_mask_pdu[] = { /* packed dp uop */
2935 PMCMASK(packed-and-scalar, 0x00),
2941 PMCMASK(packed-multiply, 0x01),
2942 PMCMASK(packed-shift, 0x02),
2945 PMCMASK(packed-logical, 0x10),
2946 PMCMASK(packed-arithmetic, 0x20),
2978 PMCMASK(sse-packed-single, 0x00),
2979 PMCMASK(sse-packed
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dhost_controller_baseband.c182 } __attribute__ ((packed)) cmd;
191 } __attribute__ ((packed)) event;
264 } __attribute__ ((packed)) *k = NULL;
/freebsd-11-stable/contrib/binutils/bfd/
H A Dppcboot.c69 __attribute__ ((packed))
/freebsd-11-stable/sys/dev/nand/
H A Dnand.h235 }__attribute__((packed));
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio_binary.c73 /* This struct needs to be packed to get the header right */
76 #define PACKED(x) x __attribute__((packed))
H A Dxxhash.c125 # define _PACKED __attribute__ ((packed))
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ioctl.c1367 char *packed; local
1377 packed = kmem_alloc(size, KM_SLEEP);
1379 if ((error = ddi_copyin((void *)(uintptr_t)nvl, packed, size,
1381 kmem_free(packed, size);
1385 if ((error = nvlist_unpack(packed, size, &list, 0)) != 0) {
1386 kmem_free(packed, size);
1390 kmem_free(packed, size);
1438 char *packed = NULL; local
1455 packed = fnvlist_pack(nvl, &size);
1456 if (ddi_copyout(packed, (voi
[all...]
/freebsd-11-stable/sys/dev/lmc/
H A Dif_lmc.h803 } __attribute__ ((packed));
983 } __attribute__ ((packed));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTContext.h229 bool packed = false);
235 bool packed = false);
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dgp_ht_map_.hpp142 } __attribute__ ((packed));
/freebsd-11-stable/sys/dev/ciss/
H A Dcissreg.h192 } __attribute__ ((packed));

Completed in 229 milliseconds

123456