Searched refs:end_idx (Results 1 - 11 of 11) sorted by relevance

/external/lldb/include/lldb/Target/
H A DUnwind.h56 GetFramesUpTo (uint32_t end_idx) argument
62 for (idx = 0; idx < end_idx; idx++)
H A DStackFrameList.h105 GetFramesUpTo (uint32_t end_idx);
/external/chromium_org/third_party/simplejson/
H A D_speedups.c1030 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1052 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
1055 if (idx <= end_idx && str[idx] != '}') {
1056 while (idx <= end_idx) {
1082 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
1083 if (idx > end_idx || str[idx] != ':') {
1088 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
1116 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
1119 if (idx > end_idx) break;
1130 while (idx <= end_idx
1178 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1329 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1401 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1501 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1604 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
[all...]
/external/oprofile/opjitconv/
H A Djitsymbol.c207 static int select_one(int start_idx, int end_idx) argument
215 for (i = start_idx; i <= end_idx; i++) {
315 static unsigned long long eliminate_overlaps(int start_idx, int end_idx, argument
328 for (i = start_idx; i <= end_idx; i++) {
370 static int handle_overlap_region(int start_idx, int end_idx) argument
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);
H A Dcreate_bfd.c26 * from start_idx to end_idx pointing into entries_address_ascending array */
104 /* create a .text section. end_idx: index last jitentry (inclusive!) */
105 static int create_text_section(int start_idx, int end_idx) argument
114 struct jitentry * ee = entries_address_ascending[end_idx];
144 * Copy all code of the functions that are within start_idx and end_idx to
148 int end_idx)
156 for (i = start_idx; i <= end_idx; i++) {
147 fill_text_section_content(asection * section, int start_idx, int end_idx) argument
/external/lldb/source/Target/
H A DStackFrameList.cpp254 StackFrameList::GetFramesUpTo(uint32_t end_idx) argument
261 if (m_frames.size() > end_idx || GetAllFramesFetched())
272 // frames to fetch. However, we don't need ot do that if end_idx is 0 since in that case we always
273 // get the first concrete frame and all the inlined frames below it... And of course, if end_idx is
277 if (end_idx > 0 && end_idx != UINT32_MAX)
282 if (end_idx > 0)
283 end_idx += inlined_depth;
374 } while (m_frames.size() - 1 < end_idx);
449 if (end_idx < m_concrete_frames_fetche
[all...]
/external/lldb/examples/python/
H A 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/
H A DRNBRemote.cpp609 // end_idx must be one past the last valid packet byte. Start
612 size_t end_idx = idx; local
619 end_idx = idx + 1; // The command is one byte long...
624 end_idx = data.find('#', idx + 1);
625 if (end_idx == std::string::npos || end_idx + 3 > data_size)
627 end_idx = std::string::npos;
633 end_idx += 3;
641 if (end_idx == std::string::npos)
647 idx = end_idx;
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h522 uptr end_idx = beg_idx + count * size; local
524 if (end_idx + size > region->mapped_user) {
527 while (end_idx + size > region->mapped_user + map_size)
529 CHECK_GE(region->mapped_user + map_size, end_idx);
/external/opencv/cxcore/include/
H A 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 );
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3073 cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx )
3087 end_vtx = cvGetGraphVtx( graph, end_idx );
3176 int start_idx, int end_idx,
3192 end_vtx = cvGetGraphVtx( graph, end_idx );
3269 cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx )
3282 end_vtx = cvGetGraphVtx( graph, end_idx );
3175 cvGraphAddEdge( CvGraph* graph, int start_idx, int end_idx, const CvGraphEdge* _edge, CvGraphEdge ** _inserted_edge ) argument

Completed in 478 milliseconds