MCPcopy Create free account
hub / github.com/apache/impala / PutFixed32LengthPrefixedSlice

Function PutFixed32LengthPrefixedSlice

be/src/kudu/util/coding.cc:48–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void PutFixed32LengthPrefixedSlice(faststring* dst, const Slice& value) {
49 PutFixed32(dst, value.size());
50 dst->append(value.data(), value.size());
51}
52
53int VarintLength(uint64_t v) {
54 int len = 1;

Callers

nothing calls this directly

Calls 4

PutFixed32Function · 0.85
sizeMethod · 0.45
appendMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected