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

Function PutFixed32

tensorflow/core/lib/core/coding.cc:64–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62}
63
64void PutFixed32(string* dst, uint32 value) {
65 char buf[sizeof(value)];
66 EncodeFixed32(buf, value);
67 dst->append(buf, sizeof(buf));
68}
69
70void PutFixed64(string* dst, uint64 value) {
71 char buf[sizeof(value)];

Callers 2

FinishMethod · 0.85
EncodeToMethod · 0.85

Calls 2

EncodeFixed32Function · 0.85
appendMethod · 0.45

Tested by

no test coverage detected