(byte b)
| 492 | } |
| 493 | |
| 494 | @NotNull |
| 495 | private Path putByte0(byte b) { |
| 496 | int requiredCapacity = size() + 1; |
| 497 | if (requiredCapacity >= capacity) { |
| 498 | extend(requiredCapacity + 15); |
| 499 | } |
| 500 | Unsafe.putByte(tailPtr++, b); |
| 501 | return this; |
| 502 | } |
| 503 | |
| 504 | private void randomSeed() { |
| 505 | for (long p = headPtr, hi = headPtr + capacity + 1; p < hi; p++) { |