Lines Matching defs:col
981 int col, count;
987 for(col = 0;count + col < length && col < 16; col++){
988 if (col != 0 && (col % 4) == 0)
990 pBuf += sprintf( pBuf, "%02X ", cp[count + col] );
992 while(col++ < 16){ /* pad end of buffer with blanks */
993 if ((col % 4) == 0)
998 for(col = 0;count + col < length && col < 16; col++){
999 if (isprint((int)cp[count + col]))
1000 pBuf += sprintf( pBuf, "%c", cp[count + col] );
1005 count += col;