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

Function PutFixed16

tensorflow/core/lib/core/coding.cc:58–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58void PutFixed16(string* dst, uint16 value) {
59 char buf[sizeof(value)];
60 EncodeFixed16(buf, value);
61 dst->append(buf, sizeof(buf));
62}
63
64void PutFixed32(string* dst, uint32 value) {
65 char buf[sizeof(value)];

Callers

nothing calls this directly

Calls 2

EncodeFixed16Function · 0.85
appendMethod · 0.45

Tested by

no test coverage detected