Home
last modified time | relevance | path

Searched refs:element_count (Results 1 – 18 of 18) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/libcxx/src/pstl/
HDlibdispatch.cpp21 __chunk_partitions __partition_chunks(ptrdiff_t element_count) noexcept { in __partition_chunks() argument
23 partitions.__chunk_count_ = std::max<ptrdiff_t>(1, element_count / 256); in __partition_chunks()
24 partitions.__chunk_size_ = element_count / partitions.__chunk_count_; in __partition_chunks()
25 …partitions.__first_chunk_size_ = element_count - (partitions.__chunk_count_ - 1) * partitions.__ch… in __partition_chunks()
26 if (partitions.__chunk_count_ == 0 && element_count > 0) in __partition_chunks()
/freebsd-14-stable/sys/dev/isci/scil/
HDsci_fast_list.h92 (anchor)->element_count = 0; \
192 int element_count; member
232 anchor->element_count++; in sci_fast_list_insert_head()
260 anchor->element_count++; in sci_fast_list_insert_tail()
288 anchor->element_count--; in sci_fast_list_remove_head()
309 anchor->element_count--; in sci_fast_list_remove_tail()
334 element->owning_list->element_count--; in sci_fast_list_remove_element()
HDscif_sas_high_priority_request_queue.c119 U32 element_count; in scif_sas_high_priority_request_queue_purge_domain() local
128 element_count = sci_pool_count(fw_hprq->pool); in scif_sas_high_priority_request_queue_purge_domain()
132 for (index = 0; index < element_count; index++) in scif_sas_high_priority_request_queue_purge_domain()
HDsci_abstract_list.c125 int element_count in sci_abstract_element_pool_construct() argument
131 memset(list_elements, 0, sizeof(SCI_ABSTRACT_ELEMENT_T) * element_count); in sci_abstract_element_pool_construct()
134 pool->max_elements = element_count; in sci_abstract_element_pool_construct()
138 for (index = element_count - 1; index >= 0; index--) in sci_abstract_element_pool_construct()
HDsci_pool.h178 U32 element_count = sci_pool_count((this_pool)); \
180 for (index = 0; index < element_count; index++) \
HDscif_sas_domain_states.c99 if ( (fw_domain->request_list.element_count == 0) in scif_sas_domain_transition_to_stopped_state()
570 ASSERT(fw_domain->request_list.element_count == 0); in scif_sas_domain_discovering_state_enter()
HDsci_abstract_list.h220 int element_count
HDscif_sas_controller.c985 outstanding_io_count += fw_domain->request_list.element_count; in scif_sas_controller_sufficient_resource()
HDscif_sas_smp_remote_device.c397 if (fw_device->protocol_device.smp_device.smp_phy_list.element_count == 0) in scif_sas_smp_remote_device_decode_report_general_response()
/freebsd-14-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDDumpValueObjectOptions.cpp205 DumpValueObjectOptions::SetElementCount(uint32_t element_count) { in SetElementCount() argument
206 m_pointer_as_array = PointerAsArraySettings(element_count); in SetElementCount()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
HDDumpValueObjectOptions.h128 DumpValueObjectOptions &SetElementCount(uint32_t element_count = 0);
/freebsd-14-stable/sys/dev/ixl/
HDi40e_prototype.h264 u16 buf_size, u16 *element_count,
268 u16 element_count,
HDi40e_adminq_cmd.h2400 __le16 element_count; member
2412 __le16 element_count; member
HDi40e_common.c3606 u16 buf_size, u16 *element_count, in i40e_aq_read_nvm_config() argument
3628 if (!status && element_count) in i40e_aq_read_nvm_config()
3629 *element_count = LE16_TO_CPU(cmd->element_count); in i40e_aq_read_nvm_config()
3645 u16 element_count, in i40e_aq_write_nvm_config() argument
3658 cmd->element_count = CPU_TO_LE16(element_count); in i40e_aq_write_nvm_config()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDPdbAstBuilder.cpp1175 uint64_t element_count = ar.Size / element_size; in CreateArrayType() local
1178 element_count, false); in CreateArrayType()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
HDTypeSystemClang.h501 size_t element_count, bool is_vector);
HDTypeSystemClang.cpp2237 size_t element_count, in CreateArrayType() argument
2244 element_count)); in CreateArrayType()
2247 llvm::APInt ap_element_count(64, element_count); in CreateArrayType()
2248 if (element_count == 0) { in CreateArrayType()
/freebsd-14-stable/contrib/googletest/docs/reference/
HDmocking.md212 for (int i = 0; i < element_count; i++) {