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

Function Append2

tensorflow/core/lib/strings/strcat.cc:62–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) {
63 memcpy(out, x1.data(), x1.size());
64 out += x1.size();
65
66 memcpy(out, x2.data(), x2.size());
67 return out + x2.size();
68}
69
70static char *Append4(char *out, const AlphaNum &x1, const AlphaNum &x2,
71 const AlphaNum &x3, const AlphaNum &x4) {

Callers 2

StrCatFunction · 0.85
StrAppendFunction · 0.85

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected