Searched refs:start_idx (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBCompileUnit.cpp103 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec) const argument
106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact);
110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec, bool exact) const argument
124 index = m_opaque_ptr->FindLineEntry (start_idx,
136 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => NOT FOUND",
137 m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL);
141 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => %u",
142 m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL, index);
212 SBCompileUnit::FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full) argument
217 return support_files.FindFileIndex(start_idx, sb_fil
[all...]
/freebsd-10.1-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_aic.c337 int16_t start_idx, end_idx; local
343 start_idx = ar9300_aic_find_valid(cal_sram, 0, i);
346 if (start_idx < 0)
349 start_idx = end_idx;
350 end_idx = ar9300_aic_find_valid(cal_sram, 1, start_idx);
354 "(AIC) Error (1): i = %d, start_idx = %d \n",
355 i, start_idx);
360 ((aic_sram[start_idx].dir_path_gain_lin -
362 (start_idx - i) + ((end_idx - i) >> 1)) /
364 aic_sram[start_idx]
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCompileUnit.h44 FindLineEntryIndex (uint32_t start_idx,
49 FindLineEntryIndex (uint32_t start_idx,
61 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandHistory.h61 size_t start_idx = 0,
/freebsd-10.1-release/sys/dev/mpr/
H A Dmpr_mapping.c215 * @start_idx: place holder for start index
225 _mapping_get_ir_maprange(struct mpr_softc *sc, u32 *start_idx, u32 *end_idx) argument
233 *start_idx = 0;
235 *start_idx = 1;
237 *start_idx = sc->max_devices - sc->max_volumes;
238 *end_idx = *start_idx + sc->max_volumes - 1;
329 u32 start_idx, end_idx, start_idx_ir = 0, end_idx_ir; local
333 start_idx = 0;
336 start_idx = 1;
339 if (start_idx
364 u32 start_idx, end_idx, map_idx; local
407 u32 start_idx, end_idx, map_idx; local
453 u32 start_idx, end_idx, map_idx; local
482 _mapping_get_free_mt_idx(struct mpr_softc *sc, u32 start_idx) argument
753 u32 start_idx = MPR_MAPTABLE_BAD_IDX; local
1019 u32 start_idx = et_entry->start_index; local
1468 u32 map_idx, dev_idx, start_idx, end_idx; local
1604 u32 start_idx, end_idx; local
[all...]
/freebsd-10.1-release/sys/dev/mps/
H A Dmps_mapping.c215 * @start_idx: place holder for start index
225 _mapping_get_ir_maprange(struct mps_softc *sc, u32 *start_idx, u32 *end_idx) argument
233 *start_idx = 0;
235 *start_idx = 1;
237 *start_idx = sc->max_devices - sc->max_volumes;
238 *end_idx = *start_idx + sc->max_volumes - 1;
329 u32 start_idx, end_idx, start_idx_ir, end_idx_ir; local
333 start_idx = 0;
338 start_idx = 1;
341 if (start_idx
366 u32 start_idx, end_idx, map_idx; local
409 u32 start_idx, end_idx, map_idx; local
455 u32 start_idx, end_idx, map_idx; local
484 _mapping_get_free_mt_idx(struct mps_softc *sc, u32 start_idx) argument
755 u32 start_idx = MPS_MAPTABLE_BAD_IDX; local
1022 u32 start_idx = et_entry->start_index; local
1471 u32 map_idx, dev_idx, start_idx, end_idx; local
1607 u32 start_idx, end_idx; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DFileSpecList.cpp104 // "file_spec" starting "start_idx" entries into the file spec list.
110 FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool full) const argument
118 for (size_t idx = start_idx; idx < num_files; ++idx)
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandHistory.cpp127 size_t start_idx,
132 for (size_t counter = start_idx;
126 Dump(Stream& stream, size_t start_idx, size_t stop_idx) const argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymtab.h59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
60 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
61 uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
H A DCompileUnit.h194 /// \a start_idx that matches \a line. If \a file_spec_ptr
201 /// a given file and line by starting with \a start_idx equal to zero,
204 /// @param[in] start_idx
227 FindLineEntry (uint32_t start_idx,
H A DLineTable.h160 /// source line number \a line starting at the \a start_idx entries
163 /// @param[in] start_idx
192 FindLineEntryIndexByFileIndex (uint32_t start_idx,
199 FindLineEntryIndexByFileIndex (uint32_t start_idx,
H A DSymbolContext.h447 uint32_t start_idx = 0,
/freebsd-10.1-release/sys/dev/ixl/
H A Di40e_lan_hmc.h158 u32 start_idx; member in struct:i40e_hmc_lan_create_obj_info
167 u32 start_idx; member in struct:i40e_hmc_lan_delete_obj_info
H A Di40e_lan_hmc.c337 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) {
343 if ((info->start_idx + info->count) >
353 info->start_idx, info->count,
362 info->start_idx, info->count, &pd_idx,
480 info.start_idx = 0;
590 if (info->start_idx >= info->hmc_info->hmc_obj[info->rsrc_type].cnt) {
597 if ((info->start_idx + info->count) >
606 info->start_idx, info->count, &pd_idx,
629 info->start_idx, info->count,
673 info.start_idx
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h106 size_t start_idx) const;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackFrameList.h78 InvalidateFrames (uint32_t start_idx);
H A DRegisterContext.h136 GetRegisterInfoByName (const char *reg_name, uint32_t start_idx = 0);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectCommands.cpp158 std::pair<bool,uint64_t> start_idx(m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.GetCurrentValue());
164 if (start_idx.first && start_idx.second == UINT64_MAX)
168 start_idx.second = history.GetSize() - count.second;
173 start_idx.second = stop_idx.second;
178 start_idx.second = 0;
184 if (!start_idx.first && !stop_idx.first && !count.first)
186 start_idx.second = 0;
189 else if (start_idx.first)
193 stop_idx.second = start_idx
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
490 for (uint32_t i = start_idx; i < count; ++i)
500 Symtab::AppendSymbolIndexesWithTypeAndFlagsValue (SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
508 for (uint32_t i = start_idx; i < count; ++i)
518 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
526 for (uint32_t i = start_idx; i < count; ++i)
763 Symtab::FindSymbolWithType (SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t& start_idx) argument
768 for (size_t idx = start_idx; idx < count; ++idx)
774 start_idx = idx;
H A DLineTable.cpp291 uint32_t start_idx,
304 for (size_t idx = start_idx; idx < count; ++idx)
347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) argument
352 for (size_t idx = start_idx; idx < count; ++idx)
289 FindLineEntryIndexByFileIndex( uint32_t start_idx, const std::vector<uint32_t> &file_indexes, uint32_t line, bool exact, LineEntry* line_entry_ptr ) argument
H A DCompileUnit.cpp282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool exact, LineEntry *line_entry_ptr) argument
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStackFrameList.cpp733 StackFrameList::InvalidateFrames (uint32_t start_idx) argument
743 while (start_idx < num_frames)
745 m_frames[start_idx].reset();
746 ++start_idx;
H A DRegisterContext.cpp65 RegisterContext::GetRegisterInfoByName (const char *reg_name, uint32_t start_idx) argument
70 for (uint32_t reg = start_idx; reg < num_registers; ++reg)
/freebsd-10.1-release/sys/xen/
H A Dgnttab.c503 gnttab_map(unsigned int start_idx, unsigned int end_idx) argument
571 gnttab_map(unsigned int start_idx, unsigned int end_idx) argument
587 } while (i-- > start_idx);
597 for (i = start_idx; i <= end_idx; i++) {
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp153 BreakpointResolverName::LookupInfo::Prune (SymbolContextList &sc_list, size_t start_idx) const
158 size_t i = start_idx;

Completed in 206 milliseconds

12