/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSession.cpp | 133 std::pair<bool, uint64_t> start_idx( in DoExecute() local 144 if (start_idx.first && start_idx.second == UINT64_MAX) { in DoExecute() 146 start_idx.second = history.GetSize() - count.second; in DoExecute() 149 start_idx.second = stop_idx.second; in DoExecute() 152 start_idx.second = 0; in DoExecute() 156 if (!start_idx.first && !stop_idx.first && !count.first) { in DoExecute() 157 start_idx.second = 0; in DoExecute() 159 } else if (start_idx.first) { in DoExecute() 161 stop_idx.second = start_idx.second + count.second - 1; in DoExecute() 168 start_idx.second = stop_idx.second - count.second + 1; in DoExecute() [all …]
|
H A D | CommandObjectSource.cpp | 225 uint32_t start_idx = 0; in DumpFileLinesInCompUnit() local 226 start_idx = cu->FindLineEntry(start_idx, line, &cu_file_spec, in DumpFileLinesInCompUnit() 228 if (start_idx == UINT32_MAX) in DumpFileLinesInCompUnit() 257 start_idx++; in DumpFileLinesInCompUnit() 258 start_idx = cu->FindLineEntry(start_idx, line, &cu_file_spec, in DumpFileLinesInCompUnit() 260 } while (start_idx != UINT32_MAX); in DumpFileLinesInCompUnit()
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_aic.c | 337 int16_t start_idx, end_idx; in ar9300_aic_cal_post_process() local 343 start_idx = ar9300_aic_find_valid(cal_sram, 0, i); in ar9300_aic_cal_post_process() 346 if (start_idx < 0) in ar9300_aic_cal_post_process() 349 start_idx = end_idx; in ar9300_aic_cal_post_process() 350 end_idx = ar9300_aic_find_valid(cal_sram, 1, start_idx); in ar9300_aic_cal_post_process() 355 i, start_idx); in ar9300_aic_cal_post_process() 360 ((aic_sram[start_idx].dir_path_gain_lin - in ar9300_aic_cal_post_process() 362 (start_idx - i) + ((end_idx - i) >> 1)) / in ar9300_aic_cal_post_process() 364 aic_sram[start_idx].dir_path_gain_lin; in ar9300_aic_cal_post_process() 366 ((aic_sram[start_idx].quad_path_gain_lin - in ar9300_aic_cal_post_process() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCompileUnit.cpp | 94 uint32_t SBCompileUnit::FindLineEntryIndex(uint32_t start_idx, uint32_t line, in FindLineEntryIndex() argument 96 LLDB_INSTRUMENT_VA(this, start_idx, line, inline_file_spec); in FindLineEntryIndex() 99 return FindLineEntryIndex(start_idx, line, inline_file_spec, exact); in FindLineEntryIndex() 102 uint32_t SBCompileUnit::FindLineEntryIndex(uint32_t start_idx, uint32_t line, in FindLineEntryIndex() argument 105 LLDB_INSTRUMENT_VA(this, start_idx, line, inline_file_spec, exact); in FindLineEntryIndex() 117 start_idx, line, inline_file_spec ? inline_file_spec->get() : nullptr, in FindLineEntryIndex() 168 uint32_t SBCompileUnit::FindSupportFileIndex(uint32_t start_idx, in FindSupportFileIndex() argument 171 LLDB_INSTRUMENT_VA(this, start_idx, sb_file, full); in FindSupportFileIndex() 175 return support_files.FindFileIndex(start_idx, sb_file.ref(), full); in FindSupportFileIndex()
|
/freebsd/sys/dev/mps/ |
H A D | mps_mapping.c | 245 _mapping_get_ir_maprange(struct mps_softc *sc, u32 *start_idx, u32 *end_idx) in _mapping_get_ir_maprange() argument 253 *start_idx = 0; in _mapping_get_ir_maprange() 255 *start_idx = 1; in _mapping_get_ir_maprange() 257 *start_idx = sc->max_devices - sc->max_volumes; in _mapping_get_ir_maprange() 258 *end_idx = *start_idx + sc->max_volumes - 1; in _mapping_get_ir_maprange() 349 u32 start_idx, end_idx, start_idx_ir, end_idx_ir; in _mapping_get_high_missing_mt_idx() local 353 start_idx = 0; in _mapping_get_high_missing_mt_idx() 358 start_idx = 1; in _mapping_get_high_missing_mt_idx() 361 if (start_idx == start_idx_ir) in _mapping_get_high_missing_mt_idx() 362 start_idx = end_idx_ir + 1; in _mapping_get_high_missing_mt_idx() [all …]
|
H A D | mps_sas_lsi.c | 1230 u32 start_idx, end_idx; in mpssas_ir_shutdown() local 1249 start_idx = 0; in mpssas_ir_shutdown() 1251 start_idx = 1; in mpssas_ir_shutdown() 1253 start_idx = sc->max_devices - sc->max_volumes; in mpssas_ir_shutdown() 1254 end_idx = start_idx + sc->max_volumes - 1; in mpssas_ir_shutdown() 1256 for (id = start_idx; id < end_idx; id++) { in mpssas_ir_shutdown()
|
/freebsd/sys/dev/mpr/ |
H A D | mpr_mapping.c | 244 _mapping_get_ir_maprange(struct mpr_softc *sc, u32 *start_idx, u32 *end_idx) in _mapping_get_ir_maprange() argument 252 *start_idx = 0; in _mapping_get_ir_maprange() 254 *start_idx = 1; in _mapping_get_ir_maprange() 256 *start_idx = sc->max_devices - sc->max_volumes; in _mapping_get_ir_maprange() 257 *end_idx = *start_idx + sc->max_volumes - 1; in _mapping_get_ir_maprange() 348 u32 start_idx, end_idx, start_idx_ir, end_idx_ir; in _mapping_get_high_missing_mt_idx() local 352 start_idx = 0; in _mapping_get_high_missing_mt_idx() 357 start_idx = 1; in _mapping_get_high_missing_mt_idx() 360 if (start_idx == start_idx_ir) in _mapping_get_high_missing_mt_idx() 361 start_idx = end_idx_ir + 1; in _mapping_get_high_missing_mt_idx() [all …]
|
H A D | mpr_sas_lsi.c | 1595 u32 start_idx, end_idx; in mprsas_ir_shutdown() local 1614 start_idx = 0; in mprsas_ir_shutdown() 1616 start_idx = 1; in mprsas_ir_shutdown() 1618 start_idx = sc->max_devices - sc->max_volumes; in mprsas_ir_shutdown() 1619 end_idx = start_idx + sc->max_volumes - 1; in mprsas_ir_shutdown() 1621 for (id = start_idx; id < end_idx; id++) { in mprsas_ir_shutdown()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpecList.cpp | 67 // starting "start_idx" entries into the file spec list. in FindFileIndex() 71 static size_t FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex() 78 for (size_t idx = start_idx; idx < num_files; ++idx) { in FindFileIndex() 95 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindCompatibleIndex() 98 start_idx, file_spec, full, m_files.size(), in FindCompatibleIndex() 102 size_t SupportFileList::FindFileIndex(size_t start_idx, in FindCompatibleIndex() 105 return ::FindFileIndex(start_idx, file_spec, full, m_files.size(), in FindCompatibleIndex() 111 size_t SupportFileList::FindCompatibleIndex(size_t start_idx, in FindCompatibleIndex() 114 if (start_idx >= num_files) in FindCompatibleIndex() 123 for (size_t idx = start_idx; id in FindCompatibleIndex() 58 FindFileIndex(size_t start_idx,const FileSpec & file_spec,bool full) const FindFileIndex() argument 82 FindCompatibleIndex(size_t start_idx,const FileSpec & file_spec) const FindCompatibleIndex() argument [all...] |
H A D | Log.cpp | 434 const size_t start_idx = GetFirstMessageIndex(); in Dump() local 435 const size_t stop_idx = start_idx + GetNumMessages(); in Dump() 436 for (size_t i = start_idx; i < stop_idx; ++i) { in Dump()
|
/freebsd/sys/dev/irdma/ |
H A D | irdma_hmc.c | 240 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) in irdma_hmc_finish_add_sd_reg() 243 if ((info->start_idx + info->count) > in irdma_hmc_finish_add_sd_reg() 274 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) in irdma_sc_create_hmc_obj() 277 if ((info->start_idx + info->count) > in irdma_sc_create_hmc_obj() 281 info->rsrc_type, info->start_idx, info->count, in irdma_sc_create_hmc_obj() 287 info->start_idx, info->count, &sd_idx, in irdma_sc_create_hmc_obj() 295 info->start_idx, info->count, &pd_idx, in irdma_sc_create_hmc_obj() 422 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) { in irdma_sc_del_hmc_obj() 425 info->start_idx, info->rsrc_type, in irdma_sc_del_hmc_obj() 430 if ((info->start_idx + info->count) > in irdma_sc_del_hmc_obj() [all …]
|
H A D | irdma_hmc.h | 159 u32 start_idx; member 170 u32 start_idx; member
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBCompileUnit.h | 40 uint32_t FindLineEntryIndex(uint32_t start_idx, uint32_t line, 43 uint32_t FindLineEntryIndex(uint32_t start_idx, uint32_t line, 51 uint32_t FindSupportFileIndex(uint32_t start_idx, const SBFileSpec &sb_file,
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | LineTable.h | 156 FindLineEntryIndexByFileIndex(uint32_t start_idx, uint32_t file_idx, 161 uint32_t start_idx, const std::vector<uint32_t> &file_idx, 344 uint32_t start_idx, T file_idx, in FindLineEntryIndexByFileIndexImpl() argument 358 for (size_t idx = start_idx; idx < count; ++idx) { in FindLineEntryIndexByFileIndexImpl()
|
H A D | Symtab.h | 57 Visibility symbol_visibility, uint32_t &start_idx); 66 uint32_t start_idx = 0, 70 std::vector<uint32_t> &indexes, uint32_t start_idx = 0, 76 uint32_t start_idx = 0,
|
/freebsd/sys/dev/ixl/ |
H A D | i40e_lan_hmc.c | 341 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) { in i40e_create_lan_hmc_object() 347 if ((info->start_idx + info->count) > in i40e_create_lan_hmc_object() 357 info->start_idx, info->count, in i40e_create_lan_hmc_object() 366 info->start_idx, info->count, &pd_idx, in i40e_create_lan_hmc_object() 483 info.start_idx = 0; in i40e_configure_lan_hmc() 593 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) { in i40e_delete_lan_hmc_object() 600 if ((info->start_idx + info->count) > in i40e_delete_lan_hmc_object() 609 info->start_idx, info->count, &pd_idx, in i40e_delete_lan_hmc_object() 632 info->start_idx, info->count, in i40e_delete_lan_hmc_object() 676 info.start_idx = 0; in i40e_shutdown_lan_hmc()
|
H A D | i40e_lan_hmc.h | 157 u32 start_idx; member 166 u32 start_idx; member
|
/freebsd/sys/ofed/drivers/infiniband/core/ |
H A D | ib_umem_odp.c | 526 int j, k, ret = 0, start_idx, npages = 0; in ib_umem_odp_map_dma_pages() local 561 start_idx = (user_virt - ib_umem_start(umem)) >> PAGE_SHIFT; in ib_umem_odp_map_dma_pages() 562 k = start_idx; in ib_umem_odp_map_dma_pages() 607 if (npages < 0 && k == start_idx) in ib_umem_odp_map_dma_pages() 610 ret = k - start_idx; in ib_umem_odp_map_dma_pages()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandHistory.cpp | 95 void CommandHistory::Dump(Stream &stream, size_t start_idx, in Dump() argument 99 for (size_t counter = start_idx; counter < stop_idx; counter++) { in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Symtab.cpp | 501 uint32_t start_idx, in AppendSymbolIndexesWithType() argument 509 for (uint32_t i = start_idx; i < count; ++i) { in AppendSymbolIndexesWithType() 519 std::vector<uint32_t> &indexes, uint32_t start_idx, in AppendSymbolIndexesWithTypeAndFlagsValue() argument 527 for (uint32_t i = start_idx; i < count; ++i) { in AppendSymbolIndexesWithTypeAndFlagsValue() 541 uint32_t start_idx, in AppendSymbolIndexesWithType() argument 549 for (uint32_t i = start_idx; i < count; ++i) { in AppendSymbolIndexesWithType() 808 uint32_t &start_idx) { in FindSymbolWithType() argument 812 for (size_t idx = start_idx; idx < count; ++idx) { in FindSymbolWithType() 816 start_idx = idx; in FindSymbolWithType()
|
H A D | LineTable.cpp | 306 uint32_t start_idx, uint32_t file_idx, in FindLineEntryIndexByFileIndex() argument 313 start_idx, file_idx, src_location_spec, line_entry_ptr, file_idx_matcher); in FindLineEntryIndexByFileIndex() 317 uint32_t start_idx, const std::vector<uint32_t> &file_idx, in FindLineEntryIndexByFileIndex() argument 325 start_idx, file_idx, src_location_spec, line_entry_ptr, file_idx_matcher); in FindLineEntryIndexByFileIndex()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandHistory.h | 44 void Dump(Stream &stream, size_t start_idx = 0,
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | pci.c | 1573 [RTW89_TXCH_ACH0] = {.start_idx = 0, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1574 [RTW89_TXCH_ACH1] = {.start_idx = 5, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1575 [RTW89_TXCH_ACH2] = {.start_idx = 10, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1576 [RTW89_TXCH_ACH3] = {.start_idx = 15, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1577 [RTW89_TXCH_ACH4] = {.start_idx = 20, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1578 [RTW89_TXCH_ACH5] = {.start_idx = 25, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1579 [RTW89_TXCH_ACH6] = {.start_idx = 30, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1580 [RTW89_TXCH_ACH7] = {.start_idx = 35, .max_num = 5, .min_num = 2}, in rtw89_pci_switch_bd_idx_addr() 1581 [RTW89_TXCH_CH8] = {.start_idx = 40, .max_num = 5, .min_num = 1}, in rtw89_pci_switch_bd_idx_addr() 1582 [RTW89_TXCH_CH9] = {.start_idx in rtw89_pci_switch_bd_idx_addr() [all...] |
/freebsd/contrib/ofed/libirdma/ |
H A D | irdma_uk.c | 1171 irdma_repost_rq_wqes(struct irdma_qp_uk *qp, u32 start_idx, in irdma_repost_rq_wqes() argument 1180 libirdma_debug("reposting_wqes: from start_idx=%d to end_idx = %d\n", start_idx, end_idx); in irdma_repost_rq_wqes() 1183 while (start_idx != end_idx) { in irdma_repost_rq_wqes() 1184 IRDMA_RING_SET_TAIL(qp->rq_ring, start_idx + 1); in irdma_repost_rq_wqes() 1185 src_wqe = qp->rq_base[start_idx * qp->rq_wqe_size_multiplier].elem; in irdma_repost_rq_wqes() 1195 qp->rq_wrid_array[wqe_idx] = qp->rq_wrid_array[start_idx]; in irdma_repost_rq_wqes() 1198 start_idx = (start_idx + 1) % qp->rq_size; in irdma_repost_rq_wqes()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeRegisterContext.cpp | 54 uint32_t start_idx) { in GetRegisterInfoByName() argument 70 for (uint32_t reg = start_idx; reg < num_registers; ++reg) { in GetRegisterInfoByName()
|