MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / PutFixed64

Function PutFixed64

tensorflow/core/lib/core/coding.cc:70–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70void PutFixed64(string* dst, uint64 value) {
71 char buf[sizeof(value)];
72 EncodeFixed64(buf, value);
73 dst->append(buf, sizeof(buf));
74}
75
76char* EncodeVarint32(char* dst, uint32 v) {
77 // Operate on characters as unsigneds

Callers

nothing calls this directly

Calls 2

EncodeFixed64Function · 0.85
appendMethod · 0.45

Tested by

no test coverage detected