Searched defs:acols (Results 1 - 2 of 2) sorted by relevance

/external/mksh/src/
H A Dexec.c1596 size_t acols = 0, aocts = 0, i; local
1614 if (i > acols)
1615 acols = i;
1627 smi.num_width + 2 + aocts, smi.num_width + 2 + acols,
1641 size_t acols = 0, aocts = 0, i; local
1650 if (i > acols)
1651 acols = i;
1655 aocts, acols, false);
/external/opencv/cv/src/
H A Dcvhough.cpp869 int rows, cols, arows, acols; local
897 acols = accum->cols - 2;
942 if( (unsigned)x2 >= (unsigned)acols ||
964 for( x = 1; x < acols - 1; x++ )
966 int base = y*(acols+2) + x;
969 adata[base] > adata[base-acols-2] && adata[base] > adata[base+acols+2] )
995 y = ofs/(acols+2) - 1;
996 x = ofs - (y+1)*(acols+2) - 1;

Completed in 676 milliseconds