Lines Matching refs:newcount
80 int newcount = count + 1;
81 if (newcount > buf.length) {
82 buf = Arrays.copyOf(buf, Math.max(buf.length << 1, newcount));
85 count = newcount;
103 int newcount = count + len;
104 if (newcount > buf.length) {
105 buf = Arrays.copyOf(buf, Math.max(buf.length << 1, newcount));
108 count = newcount;
120 int newcount = count + len;
121 if (newcount > buf.length) {
122 buf = Arrays.copyOf(buf, Math.max(buf.length << 1, newcount));
125 count = newcount;