Lines Matching refs:total
33 private static void dotest(InputStream in, int curpos, long total,
38 "\nTotal bytes in the stream = " + total +
60 int total = 1024;
61 ByteArrayInputStream in = new ByteArrayInputStream(new byte[total]);
64 dotest(in, 0, total, 23, 23);
65 dotest(in, 10, total, 23, 23);
68 dotest(in, 0, total, -23, 0);
71 dotest(in, -1, total, 20, 0);
74 dotest(in, 0, total, total+20, total);
77 dotest(in, 10, total, Long.MAX_VALUE, total-10);