Searched defs:start_idx (Results 1 - 6 of 6) sorted by relevance

/external/oprofile/opjitconv/
H A Dcreate_bfd.c26 * from start_idx to end_idx pointing into entries_address_ascending array */
105 static int create_text_section(int start_idx, int end_idx) argument
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, argument
152 entries_address_ascending[start_idx]->vma;
156 for (i = start_idx; i <= end_idx; i++) {
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);
/external/chromium/net/tools/flip_server/
H A Dbalsa_headers.cc220 void BalsaBuffer::CleanupBlocksStartingFrom(Blocks::size_type start_idx) { argument
221 for (Blocks::size_type i = start_idx; i < blocks_.size(); ++i) {
224 blocks_.resize(start_idx);
/external/opencv/cv/src/
H A Dcvhough.cpp998 int start_idx = nz_count - 1; local
1037 float r_cur = ddata[sort_buf[(j + start_idx)/2]];
1038 if( (start_idx - j)*r_best >= max_count*r_cur ||
1039 (r_best < FLT_EPSILON && start_idx - j >= max_count) )
1042 max_count = start_idx - j;
1045 start_idx = j;
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3073 cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx ) argument
3086 start_vtx = cvGetGraphVtx( graph, start_idx );
3176 int start_idx, int end_idx,
3191 start_vtx = cvGetGraphVtx( graph, start_idx );
3269 cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx ) argument
3281 start_vtx = cvGetGraphVtx( graph, start_idx );
3175 cvGraphAddEdge( CvGraph* graph, int start_idx, int end_idx, const CvGraphEdge* _edge, CvGraphEdge ** _inserted_edge ) argument
/external/v8/src/
H A Dliveobjectlist.cc1227 int start_idx,
1254 return DumpPrivate(&writer, start_idx, dump_limit, &filter);
1499 // Note: only dumps the section starting at start_idx and only up to
1501 MaybeObject* LiveObjectList::Info(int start_idx, int dump_limit) { argument
1510 start_idx = 0; // Ensure this to get an empty list.
1511 } else if ((start_idx < 0) || (start_idx >= total_count)) {
1514 dump_count -= start_idx;
1533 while ((lol != NULL) && (idx < start_idx)) { // Skip tail entries.
1585 Smi::FromInt(start_idx),
1225 Dump(int older_id, int newer_id, int start_idx, int dump_limit, Handle<JSObject> filter_obj) argument
[all...]

Completed in 305 milliseconds