Home | History | Annotate | Download | only in dec

Lines Matching refs:output

37     byte[] output = new byte[0];
40 output, 0, ByteBuffer.wrap(input), 0, input.length, 39);
42 assertArrayEquals(expectedOutput, output);
47 byte[] output = new byte[6];
50 output, 0, ByteBuffer.wrap(input), 0, input.length, 44);
52 assertArrayEquals(expectedOutput, output);
61 byte[] output = new byte[2259];
65 output, offset, ByteBuffer.wrap(testWord), 0, testWord.length, i);
66 output[offset++] = -1;
68 assertEquals(output.length, offset);
69 assertEquals(8929191060211225186L, crc64(output));