Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BTCGPU/BTCGPU
/ PutFixed32
Function
PutFixed32
src/leveldb/util/coding.cc:35–39 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
33
}
34
35
void PutFixed32(std::string* dst, uint32_t value) {
36
char buf[sizeof(value)];
37
EncodeFixed32(buf, value);
38
dst->append(buf, sizeof(buf));
39
}
40
41
void PutFixed64(std::string* dst, uint64_t value) {
42
char buf[sizeof(value)];
Callers
6
Finish
Method · 0.85
CreateFilter
Method · 0.85
Finish
Method · 0.85
EncodeTo
Method · 0.85
TEST
Function · 0.85
EncodeKey
Function · 0.85
Calls
1
EncodeFixed32
Function · 0.85
Tested by
3
CreateFilter
Method · 0.68
TEST
Function · 0.68
EncodeKey
Function · 0.68