Home | History | Annotate | Download | only in util

Lines Matching defs:hexCols

67     private int hexCols;
117 this.hexCols = 0;
428 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
450 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
451 if (hexCols < 6) {
452 hexCols = 6;
453 } else if (hexCols > 10) {
454 hexCols = 10;
459 this.hexCols = hexCols;
524 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
533 hexCols, 6));