MCPcopy Create free account
hub / github.com/F-Stack/f-stack / intsetBlobLen

Function intsetBlobLen

app/redis-6.2.6/src/intset.c:284–286  ·  view source on GitHub ↗

Return intset blob size in bytes. */

Source from the content-addressed store, hash-verified

282
283/* Return intset blob size in bytes. */
284size_t intsetBlobLen(intset *is) {
285 return sizeof(intset)+(size_t)intrev32ifbe(is->length)*intrev32ifbe(is->encoding);
286}
287
288/* Validate the integrity of the data structure.
289 * when `deep` is 0, only the integrity of the header is validated.

Callers 2

rdbSaveObjectFunction · 0.85
setTypeDupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected