Lines Matching refs:col
951 int col = dec->last_pixel_ % width;
960 (pos < last) ? GetHtreeGroupForPos(hdr, col, row) : NULL;
968 if ((col & mask) == 0) {
969 htree_group = GetHtreeGroupForPos(hdr, col, row);
977 ++col;
978 if (col >= width) {
979 col = 0;
1000 col += length;
1001 while (col >= width) {
1002 col -= width;
1008 if (pos < last && (col & mask)) {
1009 htree_group = GetHtreeGroupForPos(hdr, col, row);
1055 int col = dec->last_pixel_ % width;
1069 (src < src_last) ? GetHtreeGroupForPos(hdr, col, row) : NULL;
1080 // if "((((prev_col ^ col) | prev_row ^ row)) > mask)" -> tile changed
1081 // but that's actually slower and needs storing the previous col/row.
1082 if ((col & mask) == 0) {
1083 htree_group = GetHtreeGroupForPos(hdr, col, row);
1112 ++col;
1113 if (col >= width) {
1114 col = 0;
1142 col += length;
1143 while (col >= width) {
1144 col -= width;
1155 if (col & mask) htree_group = GetHtreeGroupForPos(hdr, col, row);