/external/lldb/source/API/ |
D | SBCompileUnit.cpp | 103 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec)… in FindLineEntryIndex() argument 106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact); in FindLineEntryIndex() 110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec,… in FindLineEntryIndex() argument 124 index = m_opaque_ptr->FindLineEntry (start_idx, in FindLineEntryIndex() 137 … m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL); in FindLineEntryIndex() 142 … m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL, index); in FindLineEntryIndex() 212 SBCompileUnit::FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full) in FindSupportFileIndex() argument 217 return support_files.FindFileIndex(start_idx, sb_file.ref(), full); in FindSupportFileIndex()
|
/external/lldb/source/Breakpoint/ |
D | BreakpointResolverFileRegex.cpp | 67 uint32_t start_idx = 0; in SearchCallback() local 74 start_idx = cu->FindLineEntry (start_idx, line_matches[i], NULL, exact, &line_entry); in SearchCallback() 75 if (start_idx == UINT32_MAX) in SearchCallback() 78 start_idx++; in SearchCallback()
|
D | BreakpointResolverName.cpp | 153 BreakpointResolverName::LookupInfo::Prune (SymbolContextList &sc_list, size_t start_idx) const in Prune() 158 size_t i = start_idx; in Prune()
|
/external/lldb/scripts/Python/interface/ |
D | SBCompileUnit.i | 70 FindLineEntryIndex (uint32_t start_idx, 75 FindLineEntryIndex (uint32_t start_idx, 87 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
|
/external/lldb/include/lldb/API/ |
D | SBCompileUnit.h | 44 FindLineEntryIndex (uint32_t start_idx, 49 FindLineEntryIndex (uint32_t start_idx, 61 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
|
/external/libopus/silk/ |
D | decode_core.c | 45 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; in silk_decode_core() local 142 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2; in silk_decode_core() 143 silk_assert( start_idx > 0 ); in silk_decode_core() 149 …silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length … in silk_decode_core() 150 A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order ); in silk_decode_core()
|
D | NSQ.c | 89 opus_int k, lag, start_idx, LSF_interpolation_flag; in silk_NSQ() local 140 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2; in silk_NSQ() 141 silk_assert( start_idx > 0 ); in silk_NSQ() 143 … silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ], in silk_NSQ() 144 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder ); in silk_NSQ()
|
D | NSQ_del_dec.c | 127 opus_int i, k, lag, start_idx, LSF_interpolation_flag, Winner_ind, subfr; in silk_NSQ_del_dec() local 243 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2; in silk_NSQ_del_dec() 244 silk_assert( start_idx > 0 ); in silk_NSQ_del_dec() 246 … silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ], in silk_NSQ_del_dec() 247 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder ); in silk_NSQ_del_dec()
|
/external/lldb/include/lldb/Symbol/ |
D | Symtab.h | 59 …ymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx); 60 …(lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t en… 61 …ol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t en… 62 … Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t en…
|
D | LineTable.h | 192 FindLineEntryIndexByFileIndex (uint32_t start_idx, 199 FindLineEntryIndexByFileIndex (uint32_t start_idx,
|
D | CompileUnit.h | 227 FindLineEntry (uint32_t start_idx,
|
/external/lldb/source/Commands/ |
D | CommandObjectCommands.cpp | 159 …std::pair<bool,uint64_t> start_idx = {m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.G… in DoExecute() local 165 if (start_idx.first && start_idx.second == UINT64_MAX) in DoExecute() 169 start_idx.second = history.GetSize() - count.second; in DoExecute() 174 start_idx.second = stop_idx.second; in DoExecute() 179 start_idx.second = 0; in DoExecute() 185 if (!start_idx.first && !stop_idx.first && !count.first) in DoExecute() 187 start_idx.second = 0; in DoExecute() 190 else if (start_idx.first) in DoExecute() 194 stop_idx.second = start_idx.second + count.second - 1; in DoExecute() 206 start_idx.second = stop_idx.second - count.second + 1; in DoExecute() [all …]
|
/external/lldb/source/Interpreter/ |
D | CommandHistory.cpp | 127 size_t start_idx, in Dump() argument 132 for (size_t counter = start_idx; in Dump()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | util_array.h | 99 int start_idx, in array_change_data() argument 103 memcpy(adata + (start_idx * array->datatype_size), data, in array_change_data()
|
/external/lldb/source/Core/ |
D | FileSpecList.cpp | 110 FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool full) const in FindFileIndex() argument 118 for (size_t idx = start_idx; idx < num_files; ++idx) in FindFileIndex()
|
/external/lldb/source/Symbol/ |
D | Symtab.cpp | 482 …hType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_in… in AppendSymbolIndexesWithType() argument 490 for (uint32_t i = start_idx; i < count; ++i) in AppendSymbolIndexesWithType() 500 …ol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_in… in AppendSymbolIndexesWithTypeAndFlagsValue() argument 508 for (uint32_t i = start_idx; i < count; ++i) in AppendSymbolIndexesWithTypeAndFlagsValue() 518 … Visibility symbol_visibility, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_in… in AppendSymbolIndexesWithType() argument 526 for (uint32_t i = start_idx; i < count; ++i) in AppendSymbolIndexesWithType() 763 …SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t& start_idx) in FindSymbolWithType() argument 768 for (size_t idx = start_idx; idx < count; ++idx) in FindSymbolWithType() 774 start_idx = idx; in FindSymbolWithType()
|
D | LineTable.cpp | 291 uint32_t start_idx, in FindLineEntryIndexByFileIndex() argument 304 for (size_t idx = start_idx; idx < count; ++idx) in FindLineEntryIndexByFileIndex() 347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, boo… in FindLineEntryIndexByFileIndex() argument 352 for (size_t idx = start_idx; idx < count; ++idx) in FindLineEntryIndexByFileIndex()
|
D | CompileUnit.cpp | 282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool … in FindLineEntry() argument 305 …return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr… in FindLineEntry()
|
/external/lldb/examples/python/ |
D | symbolication.py | 495 start_idx = 0 497 start_idx = pc_index - insts_before_pc 498 if start_idx < 0: 499 start_idx = 0 506 for i in range(start_idx, end_idx+1):
|
/external/lldb/include/lldb/Interpreter/ |
D | CommandHistory.h | 61 size_t start_idx = 0,
|
/external/lldb/source/Target/ |
D | StackFrameList.cpp | 724 StackFrameList::InvalidateFrames (uint32_t start_idx) in InvalidateFrames() argument 734 while (start_idx < num_frames) in InvalidateFrames() 736 m_frames[start_idx].reset(); in InvalidateFrames() 737 ++start_idx; in InvalidateFrames()
|
D | RegisterContext.cpp | 65 RegisterContext::GetRegisterInfoByName (const char *reg_name, uint32_t start_idx) in GetRegisterInfoByName() argument 70 for (uint32_t reg = start_idx; reg < num_registers; ++reg) in GetRegisterInfoByName()
|
/external/lldb/include/lldb/Breakpoint/ |
D | BreakpointResolverName.h | 106 size_t start_idx) const;
|
/external/lldb/include/lldb/Target/ |
D | StackFrameList.h | 78 InvalidateFrames (uint32_t start_idx);
|
/external/opencv/cv/src/ |
D | cvhough.cpp | 998 int start_idx = nz_count - 1; in icvHoughCirclesGradient() local 1037 float r_cur = ddata[sort_buf[(j + start_idx)/2]]; in icvHoughCirclesGradient() 1038 if( (start_idx - j)*r_best >= max_count*r_cur || in icvHoughCirclesGradient() 1039 (r_best < FLT_EPSILON && start_idx - j >= max_count) ) in icvHoughCirclesGradient() 1042 max_count = start_idx - j; in icvHoughCirclesGradient() 1045 start_idx = j; in icvHoughCirclesGradient()
|