Lines Matching refs:pBV
280 cvPEmdEdge pBV; in greedySolution2() local
295 pBV = &(m_EdgesUp[r][c]); in greedySolution2()
303 pBV = &(m_EdgesRight[r][c]); in greedySolution2()
310 pBV->pParent->pChild = pBV; in greedySolution2()
311 pBV->flow = fabs(dFlow); in greedySolution2()
312 pBV->iDir = dFlow>0; // 1:outward, 0:inward in greedySolution2()
320 pBV = &(m_EdgesUp[r][c]); in greedySolution2()
322 pBV->pParent->pChild= pBV; in greedySolution2()
323 pBV->flow = fabs(dFlow); in greedySolution2()
324 pBV->iDir = dFlow>0; // 1:outward, 0:inward in greedySolution2()
383 cvPEmdEdge pBV; in greedySolution3() local
402 pBV = &(m_3dEdgesUp[i1][i2][i3]); // up in greedySolution3()
410 pBV = &(m_3dEdgesRight[i1][i2][i3]); // right in greedySolution3()
418 pBV = &(m_3dEdgesDeep[i1][i2][i3]); // deep in greedySolution3()
425 pBV->flow = fabs(dFlow); in greedySolution3()
426 pBV->iDir = dFlow>0; // 1:outward, 0:inward in greedySolution3()
427 pBV->pParent->pChild= pBV; in greedySolution3()