Searched refs:last_idx (Results 1 - 7 of 7) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_bitvector_test.cc35 uptr last_idx = bv.size(); local
40 if (last_idx != bv.size())
41 EXPECT_LT(last_idx, idx);
42 last_idx = idx;
47 last_idx = bv.size();
50 if (last_idx != bv.size())
51 EXPECT_LT(last_idx, idx);
52 last_idx = idx;
/external/opencv/ml/src/
H A Dmltestset.cpp138 int last_idx; local
141 last_idx = num_samples * (cur_class + 1) / num_classes - 1;
142 CV_CALL( max_dst = (*((CvDI*) cvGetSeqElem( seq, last_idx ))).d );
/external/fio/
H A Dsmalloc.c357 unsigned int last_idx; local
367 last_idx = 0;
375 last_idx = 0;
379 idx = find_next_zero(pool->bitmap[i], last_idx);
383 last_idx = idx;
385 last_idx = 0;
/external/lldb/source/Expression/
H A DDWARFExpression.cpp1748 size_t last_idx = stack.size() - 1; local
1749 Value old_top = stack[last_idx];
1750 stack[last_idx] = stack[last_idx - 1];
1751 stack[last_idx - 1] = stack[last_idx - 2];
1752 stack[last_idx - 2] = old_top;
/external/chromium_org/third_party/libwebp/enc/
H A Dvp8l.c907 int last_idx = 0; local
914 last_idx = i;
920 row[x] = last_idx;
/external/webp/src/enc/
H A Dvp8l.c907 int last_idx = 0; local
914 last_idx = i;
920 row[x] = last_idx;
/external/opencv/cv/src/
H A Dcvhaar.cpp1850 int last_idx; local
1874 for( k = 0, last_idx = 0; k < tree_fn->data.seq->total; ++k )
2021 if( last_idx >= classifier->count + 1 )
2027 classifier->left[k] = -last_idx;
2028 classifier->alpha[last_idx++] = (float) fn->data.f;
2060 if( last_idx >= classifier->count + 1 )
2066 classifier->right[k] = -last_idx;
2067 classifier->alpha[last_idx++] = (float) fn->data.f;
2072 if( last_idx != classifier->count + 1 )

Completed in 987 milliseconds