HomeSort by relevance Sort by last modified time
    Searched refs:start_idx (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/lldb/source/Breakpoint/
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++;
  /external/lldb/scripts/Python/interface/
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/
SBCompileUnit.cpp 103 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec) const
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
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)
217 return support_files.FindFileIndex(start_idx, sb_file.ref(), full)
    [all...]
  /external/lldb/include/lldb/API/
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/
CommandHistory.h 61 size_t start_idx = 0,
  /external/oprofile/opjitconv/
create_bfd.c 26 * from start_idx to end_idx pointing into entries_address_ascending array */
105 static int create_text_section(int start_idx, int end_idx)
111 int idx = start_idx;
113 entries_address_ascending[start_idx]->vma;
125 entries_address_ascending[start_idx]->section = section;
144 * Copy all code of the functions that are within start_idx and end_idx to
147 static int fill_text_section_content(asection * section, int start_idx,
152 entries_address_ascending[start_idx]->vma;
156 for (i = start_idx; i <= end_idx; i++) {
jitsymbol.c 207 static int select_one(int start_idx, int end_idx)
215 for (i = start_idx; i <= end_idx; i++) {
315 static unsigned long long eliminate_overlaps(int start_idx, int end_idx,
328 for (i = start_idx; i <= end_idx; i++) {
370 static int handle_overlap_region(int start_idx, int end_idx)
381 for (i = start_idx; i <= end_idx; i++) {
391 idx = select_one(start_idx, end_idx);
392 totaltime = eliminate_overlaps(start_idx, end_idx, idx);
  /external/chromium_org/third_party/opus/src/silk/
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 );
  /external/libopus/silk/
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 );
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
util_array.h 99 int start_idx,
103 memcpy(adata + (start_idx * array->datatype_size), data,
  /external/lldb/source/Core/
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
118 for (size_t idx = start_idx; idx < num_files; ++idx)
  /external/lldb/source/Interpreter/
CommandHistory.cpp 127 size_t start_idx,
132 for (size_t counter = start_idx;
  /external/mesa3d/src/gallium/state_trackers/vega/
util_array.h 99 int start_idx,
103 memcpy(adata + (start_idx * array->datatype_size), data,
  /external/lldb/include/lldb/Breakpoint/
BreakpointResolverName.h 106 size_t start_idx) const;
  /external/lldb/include/lldb/Symbol/
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;
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,
  /system/core/fs_mgr/
fs_mgr.c 273 * the mountpoint of the one given by fstab->recs[start_idx].
277 * succeeded. In case of failure, it will be the start_idx.
282 static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_idx, int *attempted_idx)
288 if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) {
290 if (end_idx) *end_idx = start_idx;
291 if (attempted_idx) *end_idx = start_idx;
296 for (i = start_idx;
298 i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point);
318 if (i != start_idx) {
321 fstab->recs[start_idx].fs_type)
    [all...]
  /art/compiler/dex/
dataflow_iterator.h 68 * @param start_idx the first index we want to iterate across.
71 DataflowIterator(MIRGraph* mir_graph, int32_t start_idx, int32_t end_idx)
73 start_idx_(start_idx),
  /external/lldb/include/lldb/Target/
StackFrameList.h 78 InvalidateFrames (uint32_t start_idx);
  /art/runtime/base/
timing_logger.cc 156 size_t TimingLogger::FindTimingIndex(const char* name, size_t start_idx) const {
157 DCHECK_LT(start_idx, timings_.size());
158 for (size_t i = start_idx; i < timings_.size(); ++i) {
  /development/ndk/platforms/android-3/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
bio.h 148 #define __bio_for_each_segment(bvl, bio, i, start_idx) for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); i < (bio)->bi_vcnt; bvl++, i++)

Completed in 1339 milliseconds

1 2 3 4 5