Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/pstl/
H A Dlibdispatch.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/sys/dev/isci/scil/
H A Dsci_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()
H A Dscif_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()
H A Dsci_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()
H A Dsci_pool.h178 U32 element_count = sci_pool_count((this_pool)); \
180 for (index = 0; index < element_count; index++) \
H A Dscif_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()
H A Dsci_abstract_list.h220 int element_count
H A Dscif_sas_controller.c985 outstanding_io_count += fw_domain->request_list.element_count; in scif_sas_controller_sufficient_resource()
H A Dscif_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/contrib/llvm-project/lldb/source/DataFormatters/
H A DDumpValueObjectOptions.cpp205 DumpValueObjectOptions::SetElementCount(uint32_t element_count) { in SetElementCount() argument
206 m_pointer_as_array = PointerAsArraySettings(element_count); in SetElementCount()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h128 DumpValueObjectOptions &SetElementCount(uint32_t element_count = 0);
/freebsd/sys/dev/ixl/
H A Di40e_prototype.h264 u16 buf_size, u16 *element_count,
268 u16 element_count,
H A Di40e_adminq_cmd.h2400 __le16 element_count; member
2412 __le16 element_count; member
H A Di40e_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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp1175 uint64_t element_count = ar.Size / element_size; in CreateArrayType()
1178 element_count, false); in CreateArrayType()
1174 uint64_t element_count = ar.Size / element_size; CreateArrayType() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h501 size_t element_count, bool is_vector);
H A DTypeSystemClang.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/contrib/googletest/docs/reference/
H A Dmocking.md212 for (int i = 0; i < element_count; i++) {