MCPcopy Create free account
hub / github.com/ElementsProject/elements / read32s

Function read32s

src/simplicity/frame.h:141–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141static inline void read32s(uint32_t* x, size_t n, frameItem* frame) {
142 for(; n; --n) *(x++) = (uint32_t)simplicity_read32(frame);
143}
144
145static inline void write32s(frameItem* frame, const uint32_t* x, size_t n) {
146 for(; n; --n) simplicity_write32(frame, *(x++));

Callers 11

simplicity_eq_256Function · 0.85
simplicity_sha_256_blockFunction · 0.85
test_hashBlockFunction · 0.85
readHashFunction · 0.85
readHashFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_hashBlockFunction · 0.68