Searched defs:last_idx (Results 1 - 9 of 9) 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.c375 unsigned int last_idx; local
385 last_idx = 0;
393 last_idx = 0;
397 idx = find_next_zero(pool->bitmap[i], last_idx);
401 last_idx = idx;
403 last_idx = 0;
/external/libvncserver/x11vnc/
H A Dmacosx.c545 static int last_idx = -1; local
580 last_idx = idx;
586 static int last_idx = -1; local
590 if (last_idx >= 0 && last_idx < macwinmax) {
591 if (macwins[last_idx].win == win) {
592 idx = last_idx;
611 if (last_idx >= 0 && last_idx < macwinmax) {
612 k = last_idx;
[all...]
H A DmacosxCG.c463 int last_idx = (int) get_cursor_serial(1); local
475 if (last_idx) {
476 which = last_idx;
492 if (last_idx && cursor_seed == last_cursor_seed) {
H A Dcursor.c1315 int last_idx = (int) get_cursor_serial(1); local
1316 if (last_idx) {
1317 which = last_idx;
1323 int last_idx = (int) get_cursor_serial(1); local
1326 if (last_idx) {
1327 which = last_idx;
/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/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 504 milliseconds