Home | History | Annotate | Download | only in src

Lines Matching defs:new_data

1746     int** new_data = NULL;
1772 CV_CALL (new_data = (int**)cvAlloc (new_n * sizeof (new_data[0])));
1774 new_data[i] = first + i;
1775 qsort (new_data, new_n, sizeof(int*), icvCmpIntegersPtr);
1787 if (*old_data[i] == *new_data[j])
1792 else if (*old_data[i] < *new_data[j])
1807 if (*old_data[i] == *new_data[j])
1809 *new_data[j] = (int)(old_data[i] - first);
1813 else if (*old_data[i] < *new_data[j])
1817 out_data[free_response] = *new_data[j];
1818 *new_data[j] = free_response++;
1824 out_data[free_response] = *new_data[j];
1825 *new_data[j] = free_response++;
1841 cvFree(&new_data);