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

Function StoreBigEndian64

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

Source from the content-addressed store, hash-verified

449}
450
451static void StoreBigEndian64(char* dst, uint64 v) {
452 for (int i = 0; i < 8; i++) {
453 dst[i] = (v >> (56 - 8 * i)) & 0xff;
454 }
455}
456
457static uint64 LoadBigEndian64(const char* src) {
458 uint64 result = 0;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected