(long lo, long hi)
| 391 | } |
| 392 | |
| 393 | @Override |
| 394 | public Path putNonAscii(long lo, long hi) { |
| 395 | ascii = false; |
| 396 | final int size = Bytes.checkedLoHiSize(lo, hi, this.size()); |
| 397 | checkExtend(size); |
| 398 | Vect.memcpy(tailPtr, lo, size); |
| 399 | tailPtr += size; |
| 400 | return this; |
| 401 | } |
| 402 | |
| 403 | public void resetCapacity() { |
| 404 | if (headPtr != 0L) { |
nothing calls this directly
no test coverage detected