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

Function FastUIntToBuffer

be/src/gutil/strings/numbers.h:148–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146 FastInt32ToBuffer(i, buffer) : FastInt64ToBuffer(i, buffer));
147}
148inline char* FastUIntToBuffer(unsigned int i, char* buffer) {
149 return (sizeof(i) == 4 ?
150 FastUInt32ToBuffer(i, buffer) : FastUInt64ToBuffer(i, buffer));
151}
152
153// ----------------------------------------------------------------------
154// FastInt32ToBufferLeft()

Callers

nothing calls this directly

Calls 2

FastUInt32ToBufferFunction · 0.85
FastUInt64ToBufferFunction · 0.85

Tested by

no test coverage detected