MCPcopy
hub / github.com/questdb/questdb / seekZ

Method seekZ

core/src/main/java/io/questdb/std/str/Path.java:411–421  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

409 }
410
411 public Path seekZ() {
412 int count = 0;
413 while (count < capacity) {
414 if (Unsafe.getByte(headPtr + count) == NULL) {
415 tailPtr = headPtr + count;
416 break;
417 }
418 count++;
419 }
420 return this;
421 }
422
423 @Override
424 public final int size() {

Callers 3

testSeekZMethod · 0.80
verifyFileSystemMethod · 0.80
allowMixedIOMethod · 0.80

Calls 1

getByteMethod · 0.95

Tested by 1

testSeekZMethod · 0.64