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

Function PutTwoDigits

be/src/gutil/strings/util.cc:583–588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581};
582
583static inline void PutTwoDigits(int i, char* p) {
584 DCHECK_GE(i, 0);
585 DCHECK_LT(i, 100);
586 p[0] = two_ASCII_digits[i][0];
587 p[1] = two_ASCII_digits[i][1];
588}
589
590char* FastTimeToBuffer(time_t s, char* buffer) {
591 if (s == 0) {

Callers 1

FastTimeToBufferFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected