Home
last modified time | relevance | path

Searched refs:object_size (Results 1 – 16 of 16) sorted by relevance

/NextBSD/contrib/gcc/
HDggc-page.c1083 size_t order, word, bit, object_offset, object_size; in ggc_alloc_stat() local
1090 object_size = OBJECT_SIZE (order); in ggc_alloc_stat()
1095 while (size > (object_size = OBJECT_SIZE (order))) in ggc_alloc_stat()
1170 object_offset = hint * object_size; in ggc_alloc_stat()
1211 VALGRIND_DISCARD (VALGRIND_MAKE_WRITABLE (result, object_size)); in ggc_alloc_stat()
1215 memset (result, 0xaf, object_size); in ggc_alloc_stat()
1220 object_size - size)); in ggc_alloc_stat()
1230 G.allocated += object_size; in ggc_alloc_stat()
1233 timevar_ggc_mem_total += object_size; in ggc_alloc_stat()
1237 size_t overhead = object_size - size; in ggc_alloc_stat()
[all …]
HDtree-mudflap.c1172 mudflap_register_call (tree obj, tree object_size, tree varname) in mudflap_register_call() argument
1181 arg = convert (size_type_node, object_size); in mudflap_register_call()
1214 tree object_size, varname; in mudflap_enqueue_constant() local
1220 object_size = build_int_cst (NULL_TREE, TREE_STRING_LENGTH (obj)); in mudflap_enqueue_constant()
1222 object_size = size_in_bytes (TREE_TYPE (obj)); in mudflap_enqueue_constant()
1229 mudflap_register_call (obj, object_size, varname); in mudflap_enqueue_constant()
HDggc-zone.c1238 size_t object_size = size; in ggc_alloc_zone_stat() local
1239 size_t overhead = object_size - orig_size; in ggc_alloc_zone_stat()
1242 zone->stats.total_allocated += object_size; in ggc_alloc_zone_stat()
1247 zone->stats.total_allocated_under32 += object_size; in ggc_alloc_zone_stat()
1252 zone->stats.total_allocated_under64 += object_size; in ggc_alloc_zone_stat()
1257 zone->stats.total_allocated_under128 += object_size; in ggc_alloc_zone_stat()
HDmips-tfile.c931 unsigned short object_size; /* size in bytes of each object */ member
953 (x)->object_size = sizeof (type); \
1638 if (vp->object_size > 1) in add_varray_page()
1639 new_links->datum = xcalloc (1, vp->object_size); in add_varray_page()
2473 ptr = &vp->last->datum->byte[ vp->objects_last_page * vp->object_size ]; in add_bytes()
2478 move_bytes = move_items * vp->object_size; in add_bytes()
3985 vp->num_allocated * vp->object_size, str); in write_varray()
3994 ? vp->objects_last_page * vp->object_size in write_varray()
3995 : vp->objects_per_page * vp->object_size; in write_varray()
HDbuiltins.def705 DEF_GCC_BUILTIN (BUILT_IN_OBJECT_SIZE, "object_size", BT_FN_SIZE_CONST_PTR_INT, ATTR_PURE_NO…
/NextBSD/contrib/ofed/management/opensm/complib/
HDcl_pool.c432 IN const size_t object_size, in cl_qpool_init() argument
446 &object_size, 1, in cl_qpool_init()
643 IN const size_t object_size, in cl_pool_init() argument
654 total_size = object_size + sizeof(cl_pool_obj_t); in cl_pool_init()
/NextBSD/contrib/llvm/tools/llvm-objdump/
HDMachODump.cpp2107 uint64_t object_size = MachOContents.size(); in GuessCstringPointer() local
2109 if (object_offset < object_size) { in GuessCstringPointer()
2128 uint64_t object_size = MachOContents.size(); in GuessCstringPointer() local
2130 if (object_offset < object_size) { in GuessCstringPointer()
2324 uint64_t object_size = MachOContents.size(); in GuessPointerPointer() local
2326 if (object_offset < object_size) { in GuessPointerPointer()
7088 uint32_t flags, uint32_t object_size, in PrintSegmentCommand() argument
7116 if (fileoff > object_size) in PrintSegmentCommand()
7121 if (fileoff + filesize > object_size) in PrintSegmentCommand()
7203 uint32_t filetype, uint32_t object_size, in PrintSection() argument
[all …]
/NextBSD/contrib/ofed/management/opensm/include/complib/
HDcl_qpool.h313 IN const size_t object_size,
HDcl_pool.h294 IN const size_t object_size,
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDModuleSpec.h271 SetObjectSize (uint64_t object_size) in SetObjectSize() argument
273 m_object_size = object_size; in SetObjectSize()
/NextBSD/lib/libdispatch/private/
HDintrospection_private.h152 size_t object_size; member
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDmetaslab.c1741 uint64_t size, entries, segsz, object_size, optimal_size, record_size; in metaslab_should_condense() local
1769 object_size = space_map_length(msp->ms_sm); in metaslab_should_condense()
1774 return (segsz <= object_size && in metaslab_should_condense()
1775 object_size >= (optimal_size * zfs_condense_pct / 100) && in metaslab_should_condense()
1776 object_size > zfs_metaslab_condense_block_threshold * record_size); in metaslab_should_condense()
HDdmu.c665 uint64_t object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz; in dmu_free_long_range_impl() local
668 if (offset >= object_size) in dmu_free_long_range_impl()
671 if (length == DMU_OBJECT_END || offset + length > object_size) in dmu_free_long_range_impl()
672 length = object_size - offset; in dmu_free_long_range_impl()
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDmergeinfo.c2275 size_t object_size, in ptr_array_dup() argument
2282 char *copy = apr_palloc(pool, object_size * array->nelts); in ptr_array_dup()
2292 target[i] = &copy[i * object_size]; in ptr_array_dup()
2293 memcpy(target[i], source[i], object_size); in ptr_array_dup()
/NextBSD/lib/libdispatch/src/
HDintrospection.c99 .object_size = sizeof(dispatch_introspection_object_s),
/NextBSD/contrib/binutils/gas/
HDecoff.c806 unsigned short object_size; /* size in bytes of each object */ member
1518 if (vp->object_size > 1) in add_varray_page()
1519 new_links->datum = (page_type *) xcalloc (1, vp->object_size); in add_varray_page()