MCPcopy Index your code
hub / github.com/questdb/questdb / putByte0

Method putByte0

core/src/main/java/io/questdb/std/str/Path.java:494–502  ·  view source on GitHub ↗
(byte b)

Source from the content-addressed store, hash-verified

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++) {

Callers 3

putMethod · 0.95
putAsciiMethod · 0.95
ensureSeparatorMethod · 0.95

Calls 3

sizeMethod · 0.95
extendMethod · 0.95
putByteMethod · 0.95

Tested by

no test coverage detected