Lines Matching refs:out

155      * @param out {@code non-null;} the output destination to write to
158 public abstract void writeTo(AnnotatedOutput out, DalvInsn insn);
406 throw new IllegalArgumentException("arg out of range 0..255");
412 throw new IllegalArgumentException("opcode out of range 0..255");
427 throw new IllegalArgumentException("low out of range 0..255");
431 throw new IllegalArgumentException("high out of range 0..255");
448 throw new IllegalArgumentException("n0 out of range 0..15");
452 throw new IllegalArgumentException("n1 out of range 0..15");
456 throw new IllegalArgumentException("n2 out of range 0..15");
460 throw new IllegalArgumentException("n3 out of range 0..15");
475 throw new IllegalArgumentException("low out of range 0..15");
479 throw new IllegalArgumentException("high out of range 0..15");
488 * @param out {@code non-null;} where to write to
491 protected static void write(AnnotatedOutput out, short c0) {
492 out.writeShort(c0);
498 * @param out {@code non-null;} where to write to
502 protected static void write(AnnotatedOutput out, short c0, short c1) {
503 out.writeShort(c0);
504 out.writeShort(c1);
510 * @param out {@code non-null;} where to write to
515 protected static void write(AnnotatedOutput out, short c0, short c1,
517 out.writeShort(c0);
518 out.writeShort(c1);
519 out.writeShort(c2);
525 * @param out {@code non-null;} where to write to
531 protected static void write(AnnotatedOutput out, short c0, short c1,
533 out.writeShort(c0);
534 out.writeShort(c1);
535 out.writeShort(c2);
536 out.writeShort(c3);
542 * @param out {@code non-null;} where to write to
549 protected static void write(AnnotatedOutput out, short c0, short c1,
551 out.writeShort(c0);
552 out.writeShort(c1);
553 out.writeShort(c2);
554 out.writeShort(c3);
555 out.writeShort(c4);
561 * @param out {@code non-null;} where to write to
569 protected static void write(AnnotatedOutput out, short c0, short c1,
571 out.writeShort(c0);
572 out.writeShort(c1);
573 out.writeShort(c2);
574 out.writeShort(c3);
575 out.writeShort(c4);
576 out.writeShort(c5);