MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / PopUnsignedQWord

Method PopUnsignedQWord

src/newgrf_text.cpp:717–721  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

715 int32_t PopSignedDWord() { return (int32_t)this->PopUnsignedDWord(); }
716
717 uint64_t PopUnsignedQWord()
718 {
719 uint64_t val = this->PopUnsignedDWord();
720 return val | (((uint64_t)this->PopUnsignedDWord()) << 32);
721 }
722 int64_t PopSignedQWord() { return (int64_t)this->PopUnsignedQWord(); }
723
724 /** Rotate the top four words down: W1, W2, W3, W4 -> W4, W1, W2, W3 */

Callers 2

PopSignedQWordMethod · 0.95

Calls 1

PopUnsignedDWordMethod · 0.95

Tested by

no test coverage detected