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

Function AppendBytes

tensorflow/core/lib/strings/ordered_code.cc:133–135  ·  view source on GitHub ↗

Append to "*dest" the "len" bytes starting from "*src".

Source from the content-addressed store, hash-verified

131
132// Append to "*dest" the "len" bytes starting from "*src".
133inline static void AppendBytes(string* dest, const char* src, size_t len) {
134 dest->append(src, len);
135}
136
137inline bool IsSpecialByte(char c) {
138 return (static_cast<unsigned char>(c + 1)) < 2;

Callers 4

EncodeStringFragmentFunction · 0.85
WriteStringMethod · 0.85
WriteNumIncreasingMethod · 0.85
ReadStringInternalFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected