Home
last modified time | relevance | path

Searched refs:end_idx (Results 1 – 8 of 8) sorted by relevance

/external/lldb/source/Target/
DStackFrameList.cpp254 StackFrameList::GetFramesUpTo(uint32_t end_idx) in GetFramesUpTo() argument
261 if (m_frames.size() > end_idx || GetAllFramesFetched()) in GetFramesUpTo()
277 if (end_idx > 0 && end_idx != UINT32_MAX) in GetFramesUpTo()
282 if (end_idx > 0) in GetFramesUpTo()
283 end_idx += inlined_depth; in GetFramesUpTo()
374 } while (m_frames.size() - 1 < end_idx); in GetFramesUpTo()
449 if (end_idx < m_concrete_frames_fetched) in GetFramesUpTo()
452 uint32_t num_frames = unwinder->GetFramesUpTo(end_idx); in GetFramesUpTo()
453 if (num_frames <= end_idx + 1) in GetFramesUpTo()
/external/lldb/include/lldb/Target/
DUnwind.h56 GetFramesUpTo (uint32_t end_idx) in GetFramesUpTo() argument
62 for (idx = 0; idx < end_idx; idx++) in GetFramesUpTo()
DStackFrameList.h105 GetFramesUpTo (uint32_t end_idx);
/external/lldb/examples/python/
Dsymbolication.py501 end_idx = inst_idx
503 end_idx = pc_index + insts_after_pc
504 if end_idx > inst_idx:
505 end_idx = inst_idx
506 for i in range(start_idx, end_idx+1):
/external/lldb/tools/debugserver/source/
DRNBRemote.cpp612 size_t end_idx = idx; in CommDataReceived() local
619 end_idx = idx + 1; // The command is one byte long... in CommDataReceived()
624 end_idx = data.find('#', idx + 1); in CommDataReceived()
625 if (end_idx == std::string::npos || end_idx + 3 > data_size) in CommDataReceived()
627 end_idx = std::string::npos; in CommDataReceived()
633 end_idx += 3; in CommDataReceived()
641 if (end_idx == std::string::npos) in CommDataReceived()
647 idx = end_idx; in CommDataReceived()
650 if (idx < end_idx) in CommDataReceived()
654 if (m_packets_recvd == 1 && (end_idx == idx + 1) && data[idx] == '+') in CommDataReceived()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h526 uptr end_idx = beg_idx + count * size; in PopulateFreeList() local
528 if (end_idx + size > region->mapped_user) { in PopulateFreeList()
531 while (end_idx + size > region->mapped_user + map_size) in PopulateFreeList()
533 CHECK_GE(region->mapped_user + map_size, end_idx); in PopulateFreeList()
/external/opencv/cxcore/src/
Dcxdatastructs.cpp3073 cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx ) in cvFindGraphEdge() argument
3087 end_vtx = cvGetGraphVtx( graph, end_idx ); in cvFindGraphEdge()
3176 int start_idx, int end_idx, in cvGraphAddEdge() argument
3192 end_vtx = cvGetGraphVtx( graph, end_idx ); in cvGraphAddEdge()
3269 cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx ) in cvGraphRemoveEdge() argument
3282 end_vtx = cvGetGraphVtx( graph, end_idx ); in cvGraphRemoveEdge()
/external/opencv/cxcore/include/
Dcxcore.h1175 int start_idx, int end_idx,
1185 CVAPI(void) cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx );
1190 CVAPI(CvGraphEdge*) cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx );