Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp171 void SBModuleSpec::SetObjectSize(uint64_t object_size) { in SetObjectSize() argument
172 LLDB_INSTRUMENT_VA(this, object_size); in SetObjectSize()
174 m_opaque_up->SetObjectSize(object_size); in SetObjectSize()
/freebsd/contrib/ofed/opensm/complib/
H A Dcl_pool.c426 IN const size_t object_size, in cl_qpool_init() argument
440 &object_size, 1, in cl_qpool_init()
628 IN const size_t object_size, in cl_pool_init() argument
639 total_size = object_size + sizeof(cl_pool_obj_t); in cl_pool_init()
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_qpool.h313 IN const size_t object_size,
H A Dcl_pool.h294 IN const size_t object_size,
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModuleSpec.h86 void SetObjectSize(uint64_t object_size);
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp8458 if (fileoff > object_size) in PrintSegmentCommand()
8556 if (offset > object_size) in PrintSection()
8563 if (reloff > object_size) in PrintSection()
8704 if (big_size > object_size) in PrintSymtabLoadCommand()
8765 if (big_size > object_size) in PrintDysymtabLoadCommand()
8798 if (big_size > object_size) in PrintDysymtabLoadCommand()
8811 if (big_size > object_size) in PrintDysymtabLoadCommand()
8824 if (big_size > object_size) in PrintDysymtabLoadCommand()
8837 if (big_size > object_size) in PrintDysymtabLoadCommand()
8863 if (big_size > object_size) in PrintDyldInfoLoadCommand()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h115 void SetObjectSize(uint64_t object_size) { m_object_size = object_size; } in SetObjectSize() argument
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu.c888 uint64_t object_size; in dmu_free_long_range_impl() local
896 object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz; in dmu_free_long_range_impl()
897 if (offset >= object_size) in dmu_free_long_range_impl()
906 if (length == DMU_OBJECT_END || offset + length > object_size) in dmu_free_long_range_impl()
907 length = object_size - offset; in dmu_free_long_range_impl()
H A Dmetaslab.c3638 uint64_t object_size = space_map_length(sm); in metaslab_should_condense() local
3642 return (object_size >= (optimal_size * zfs_condense_pct / 100) && in metaslab_should_condense()
3643 object_size > zfs_metaslab_condense_block_threshold * record_size); in metaslab_should_condense()