Home
last modified time | relevance | path

Searched refs:CV_SET_ELEM_IDX_MASK (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cxcore/src/
Dcxdatastructs.cpp2811 assert( count <= CV_SET_ELEM_IDX_MASK+1 ); in cvSetAdd()
2821 id = free_elem->flags & CV_SET_ELEM_IDX_MASK; in cvSetAdd()
3050 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) ) in cvFindGraphEdgeByPtr()
3120 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) ) in cvGraphAddEdgeByPtr()
3220 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) ) in cvGraphRemoveEdgeByPtr()
/external/opencv/cxcore/include/
Dcxcore.h1122 elem->flags = elem->flags & CV_SET_ELEM_IDX_MASK; in cvSetNew()
1136 _elem->flags = (_elem->flags & CV_SET_ELEM_IDX_MASK) | CV_SET_ELEM_FREE_FLAG; in cvSetRemoveByPtr()
1210 #define cvGraphVtxIdx( graph, vtx ) ((vtx)->flags & CV_SET_ELEM_IDX_MASK)
1213 #define cvGraphEdgeIdx( graph, edge ) ((edge)->flags & CV_SET_ELEM_IDX_MASK)
Dcxtypes.h1259 #define CV_SET_ELEM_IDX_MASK ((1 << 26) - 1) macro