Home
last modified time | relevance | path

Searched refs:bitoffset (Results 1 – 1 of 1) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dbitops.c528 size_t bitoffset; in setbitCommand() local
545 if ((o = lookupStringForBitCommand(c,bitoffset)) == NULL) return; in setbitCommand()
548 byte = bitoffset >> 3; in setbitCommand()
550 bit = 7 - (bitoffset & 0x7); in setbitCommand()
567 size_t bitoffset; in getbitCommand() local
577 byte = bitoffset >> 3; in getbitCommand()
578 bit = 7 - (bitoffset & 0x7); in getbitCommand()
916 size_t bitoffset; in bitfieldCommand() local
971 if (highest_write_offset < bitoffset + bits - 1) in bitfieldCommand()
972 highest_write_offset = bitoffset + bits - 1; in bitfieldCommand()
[all …]