Home
last modified time | relevance | path

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

/redis-3.2.3/src/
H A Dbitops.c521 size_t bitoffset; in setbitCommand() local
526 if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset,0,0) != C_OK) in setbitCommand()
538 if ((o = lookupStringForBitCommand(c,bitoffset)) == NULL) return; in setbitCommand()
541 byte = bitoffset >> 3; in setbitCommand()
543 bit = 7 - (bitoffset & 0x7); in setbitCommand()
560 size_t bitoffset; in getbitCommand() local
570 byte = bitoffset >> 3; in getbitCommand()
571 bit = 7 - (bitoffset & 0x7); in getbitCommand()
905 size_t bitoffset; in bitfieldCommand() local
960 higest_write_offset = bitoffset + bits - 1; in bitfieldCommand()
[all …]