Lines Matching refs:bitoffset
528 size_t bitoffset; in setbitCommand() local
533 if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset,0,0) != C_OK) in setbitCommand()
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
571 if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset,0,0) != C_OK) in getbitCommand()
577 byte = bitoffset >> 3; in getbitCommand()
578 bit = 7 - (bitoffset & 0x7); in getbitCommand()
916 size_t bitoffset; in bitfieldCommand() local
964 if (getBitOffsetFromArgument(c,c->argv[j+2],&bitoffset,1,bits) != C_OK){ in bitfieldCommand()
971 if (highest_write_offset < bitoffset + bits - 1) in bitfieldCommand()
972 highest_write_offset = bitoffset + bits - 1; in bitfieldCommand()
982 ops[numops].offset = bitoffset; in bitfieldCommand()