Home | History | Annotate | Download | only in code

Lines Matching refs:high

475      * @param high {@code 0..255;} high byte
478 protected static short codeUnit(int low, int high) {
483 if ((high & 0xff) != high) {
484 throw new IllegalArgumentException("high out of range 0..255");
487 return (short) (low | (high << 8));
495 * @param n2 {@code 0..15;} medium-high nibble
496 * @param n3 {@code 0..15;} high nibble
523 * @param high {@code 0..15;} high nibble
526 protected static int makeByte(int low, int high) {
531 if ((high & 0xf) != high) {
532 throw new IllegalArgumentException("high out of range 0..15");
535 return low | (high << 4);