Lines Matching refs:col
690 int col = 0, row = 0; \
706 /* if "((((prev_col ^ col) | prev_row ^ row)) > mask)" -> tile changed */ \
707 /* but that's actually slower and needs storing the previous col/row. */ \
708 if ((col & mask) == 0) { \
709 htree_group = GetHtreeGroupForPos(hdr, col, row); \
723 ++col; \
724 if (col >= width) { \
725 col = 0; \
753 col += length; \
754 while (col >= width) { \
755 col -= width; \
762 htree_group = GetHtreeGroupForPos(hdr, col, row); \