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

Method putNonAscii

core/src/main/java/io/questdb/std/str/Path.java:393–401  ·  view source on GitHub ↗
(long lo, long hi)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

checkedLoHiSizeMethod · 0.95
sizeMethod · 0.95
checkExtendMethod · 0.95
memcpyMethod · 0.95

Tested by

no test coverage detected