MCPcopy Create free account
hub / github.com/Tencent/libpag / writeUint32

Method writeUint32

src/codec/utils/EncodeStream.cpp:90–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90void EncodeStream::writeUint32(uint32_t value) {
91 if (checkCapacity(4)) {
92 dataView.setUint32(_position, value);
93 positionChanged(4);
94 }
95}
96
97void EncodeStream::writeInt64(int64_t value) {
98 if (checkCapacity(8)) {

Callers 2

EncodeMethod · 0.80
WriteTypeAndLengthFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected