Lines Matching refs:bitoffset
521 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
564 if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset,0,0) != C_OK) in getbitCommand()
570 byte = bitoffset >> 3; in getbitCommand()
571 bit = 7 - (bitoffset & 0x7); in getbitCommand()
905 size_t bitoffset; in bitfieldCommand() local
953 if (getBitOffsetFromArgument(c,c->argv[j+2],&bitoffset,1,bits) != C_OK){ in bitfieldCommand()
960 higest_write_offset = bitoffset + bits - 1; in bitfieldCommand()
970 ops[numops].offset = bitoffset; in bitfieldCommand()