Lines Matching full:bitpos
80 UINT32 bitPos;
87 bitPos = commandCode - TPM_CC_FIRST;
88 if(!BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
91 BitSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
121 UINT32 bitPos;
129 bitPos = commandCode - TPM_CC_FIRST;
130 if(BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
133 BitClear(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
157 UINT32 bitPos;
158 bitPos = commandCode - TPM_CC_FIRST;
160 if((gp.auditComands[bitPos/8] & (1 << (bitPos % 8))) != 0)