Home
last modified time | relevance | path

Searched refs:to_add (Results 1 – 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
HDEditline.cpp1016 std::string to_add = completion.GetCompletion(); in TabCommand() local
1021 to_add.push_back(request.GetParsedArg().GetQuoteChar()); in TabCommand()
1023 to_add.push_back(' '); in TabCommand()
1025 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1027 if (to_add == " ") in TabCommand()
1032 std::string to_add = completion.GetCompletion(); in TabCommand() local
1033 to_add = to_add.substr(request.GetCursorArgumentPrefix().size()); in TabCommand()
1034 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1072 if (std::optional<std::string> to_add = m_suggestion_callback(line)) in ApplyAutosuggestCommand() local
1073 el_insertstr(m_editline, to_add->c_str()); in ApplyAutosuggestCommand()
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDProcessMinidump.cpp338 MemoryRegionInfos to_add; in BuildMemoryRegions() local
355 to_add.emplace_back(); in BuildMemoryRegions()
356 to_add.back().GetRange() = section_range; in BuildMemoryRegions()
357 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
358 to_add.back().SetMapped(MemoryRegionInfo::eYes); in BuildMemoryRegions()
359 to_add.back().SetName(module_sp->GetFileSpec().GetPath().c_str()); in BuildMemoryRegions()
364 m_memory_regions->insert(m_memory_regions->end(), to_add.begin(), in BuildMemoryRegions()
365 to_add.end()); in BuildMemoryRegions()
/freebsd-13-stable/sys/dev/ixl/
HDixl_pf_main.c578 f = ixl_new_filter(&ama->to_add, macaddr, IXL_VLAN_ANY); in ixl_add_maddr()
614 LIST_INIT(&cb_arg.to_add); in ixl_add_multi()
618 ixl_add_hw_filters(vsi, &cb_arg.to_add, mcnt); in ixl_add_multi()
1212 struct ixl_ftl_head to_add; in ixl_add_filter() local
1227 LIST_INIT(&to_add); in ixl_add_filter()
1228 f = ixl_new_filter(&to_add, macaddr, vlan); in ixl_add_filter()
1250 f = ixl_new_filter(&to_add, macaddr, 0); in ixl_add_filter()
1253 free(LIST_FIRST(&to_add), M_IXL); in ixl_add_filter()
1265 ixl_add_hw_filters(vsi, &to_add, to_add_cnt); in ixl_add_filter()
1281 struct ixl_ftl_head to_add; in ixl_add_vlan_filters() local
[all …]
HDixl.h486 struct ixl_ftl_head to_add; member
/freebsd-13-stable/contrib/subversion/subversion/svnfsfs/
HDstats-cmd.c209 apr_array_header_t *to_add) in merge_by_extension() argument
214 for (i = 0; i < to_add->nelts; ++i) in merge_by_extension()
217 = APR_ARRAY_IDX(to_add, i, svn_fs_fs__extension_info_t *); in merge_by_extension()
/freebsd-13-stable/sys/contrib/octeon-sdk/
HDcvmx-helper.c1547 int to_add; in cvmx_helper_shutdown_packet_io_global() local
1549 to_add = (ipd_cnt.s.wqev_cnt + ipd_cnt.s.wqe_pcnt) & 0x7; in cvmx_helper_shutdown_packet_io_global()
1550 if (to_add) in cvmx_helper_shutdown_packet_io_global()
1581 while (to_add--) in cvmx_helper_shutdown_packet_io_global()
1602 if (to_add == -1) in cvmx_helper_shutdown_packet_io_global()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
HDutil.c229 const char *to_add, in combine_txn_id_string() argument
233 to_add, SVN_VA_NULL); in combine_txn_id_string()
HDpack.c1095 apr_off_t to_add, in auto_pad_block() argument
1108 if (padding < to_add && padding < max_padding) in auto_pad_block()