Home
last modified time | relevance | path

Searched refs:check_idx (Results 1 – 4 of 4) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Dclosefs.c188 int check_idx, write_idx, size; in write_primary_superblock() local
203 for (check_idx = 0; check_idx < SUPERBLOCK_SIZE/2; check_idx++) { in write_primary_superblock()
204 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
206 write_idx = check_idx; in write_primary_superblock()
207 for (check_idx++; check_idx < SUPERBLOCK_SIZE/2; check_idx++) in write_primary_superblock()
208 if (old_super[check_idx] == new_super[check_idx]) in write_primary_superblock()
210 size = 2 * (check_idx - write_idx); in write_primary_superblock()
/external/opencv3/modules/imgproc/src/
Dconvhull.cpp232 int check_idx = bl_count > 2 ? bl_stack[1] : in convexHull() local
234 if( check_idx == stop_idx || (check_idx >= 0 && in convexHull()
235 pointer[check_idx]->x == pointer[stop_idx]->x && in convexHull()
236 pointer[check_idx]->y == pointer[stop_idx]->y) ) in convexHull()
/external/opencv/cv/src/
Dcvconvhull.cpp445 int check_idx = bl_count > 2 ? bl_stack[1] : in cvConvexHull2() local
447 if( check_idx == stop_idx || (check_idx >= 0 && in cvConvexHull2()
448 pointer[check_idx]->x == pointer[stop_idx]->x && in cvConvexHull2()
449 pointer[check_idx]->y == pointer[stop_idx]->y) ) in cvConvexHull2()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector.h369 void check_idx(uptr idx) const { CHECK_LT(idx, size()); } in check_idx() function
377 check_idx(idx); in indexToNode()