/external/lldb/source/Breakpoint/ |
H A D | BreakpointResolverFileRegex.cpp | 67 uint32_t start_idx = 0; local 74 start_idx = cu->FindLineEntry (start_idx, line_matches[i], NULL, exact, &line_entry); 75 if (start_idx == UINT32_MAX) 78 start_idx++;
|
H A D | BreakpointResolverName.cpp | 153 BreakpointResolverName::LookupInfo::Prune (SymbolContextList &sc_list, size_t start_idx) const 158 size_t i = start_idx;
|
/external/lldb/scripts/Python/interface/ |
H A 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/source/API/ |
H A D | SBCompileUnit.cpp | 103 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...] |
/external/lldb/include/lldb/API/ |
H A 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/lldb/include/lldb/Interpreter/ |
H A D | CommandHistory.h | 61 size_t start_idx = 0,
|
/external/freetype/src/cff/ |
H A D | cf2stack.c | 206 CF2_Int start_idx, idx, i; local 251 start_idx = -1; 258 if ( start_idx == idx ) 260 start_idx++; 261 idx = start_idx;
|
/external/libopus/silk/ |
H A D | decode_core.c | 45 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; local 142 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2; 143 silk_assert( start_idx > 0 ); 149 silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length ], 150 A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order );
|
H A D | NSQ.c | 89 opus_int k, lag, start_idx, LSF_interpolation_flag; local 140 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2; 141 silk_assert( start_idx > 0 ); 143 silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ], 144 A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder );
|
/external/lldb/source/Core/ |
H A D | FileSpecList.cpp | 104 // "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)
|
/external/lldb/source/Interpreter/ |
H A D | CommandHistory.cpp | 127 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
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
H A D | util_array.h | 99 int start_idx, 103 memcpy(adata + (start_idx * array->datatype_size), data, 97 array_change_data(struct array *array, const void *data, int start_idx, int num_elements) argument
|
/external/lldb/include/lldb/Symbol/ |
H A D | Symtab.h | 59 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 D | CompileUnit.h | 194 /// \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 D | LineTable.h | 160 /// 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 D | SymbolContext.h | 447 uint32_t start_idx = 0,
|
/external/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointResolverName.h | 106 size_t start_idx) const;
|
/external/lldb/include/lldb/Target/ |
H A D | StackFrameList.h | 78 InvalidateFrames (uint32_t start_idx);
|
H A D | RegisterContext.h | 124 GetRegisterInfoByName (const char *reg_name, uint32_t start_idx = 0);
|
/external/lldb/source/Commands/ |
H A D | CommandObjectCommands.cpp | 159 std::pair<bool,uint64_t> start_idx = {m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.GetCurrentValue()}; local 165 if (start_idx.first && start_idx.second == UINT64_MAX) 169 start_idx.second = history.GetSize() - count.second; 174 start_idx.second = stop_idx.second; 179 start_idx.second = 0; 185 if (!start_idx.first && !stop_idx.first && !count.first) 187 start_idx.second = 0; 190 else if (start_idx.first) 194 stop_idx.second = start_idx [all...] |
/external/lldb/source/Symbol/ |
H A D | Symtab.cpp | 482 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 D | LineTable.cpp | 291 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 D | CompileUnit.cpp | 282 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);
|
/external/lldb/examples/python/ |
H A 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/source/Target/ |
H A D | StackFrameList.cpp | 724 StackFrameList::InvalidateFrames (uint32_t start_idx) argument 734 while (start_idx < num_frames) 736 m_frames[start_idx].reset(); 737 ++start_idx;
|