Lines Matching refs:col
182 col = 1;
185 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 16, 2, " ");
201 col = 1;
204 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 7, 9, " ");
211 col = 1;
214 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 3, 19, " ");
236 function colPrint(value, isLast, col, numCols, colWidth, linePrefix) {
237 isLast = (isLast || (col == numCols));
239 (col == 1) ? linePrefix : " ",
243 return (col % numCols) + 1;