Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tencent/libpag
/ writeInt8
Method
writeInt8
src/codec/utils/EncodeStream.cpp:55–60 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
53
}
54
55
void EncodeStream::writeInt8(int8_t value) {
56
if (checkCapacity(1)) {
57
dataView.setInt8(_position, value);
58
positionChanged(1);
59
}
60
}
61
62
void EncodeStream::writeUint8(uint8_t value) {
63
if (checkCapacity(1)) {
Callers
1
Encode
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected