Lines Matching refs:bitPos
8385 46 UINT32 bitPos;
8393 54 bitPos = commandCode - TPM_CC_FIRST;
8394 55 if(!BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
8397 58 BitSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
8432 71 UINT32 bitPos;
8441 80 bitPos = commandCode - TPM_CC_FIRST;
8442 81 if(BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
8445 84 BitClear(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
8469 97 UINT32 bitPos;
8471 99 bitPos = commandCode - TPM_CC_FIRST;
8474 102 if((gp.auditComands[bitPos/8] & (1 << (bitPos % 8))) != 0)
13925 25 UINT32 bitPos;
13935 35 bitPos = commandCode - TPM_CC_PP_FIRST;
13938 38 gp.ppList[bitPos/8] |= 1 << (bitPos % 8);
13953 47 UINT32 bitPos;
13967 61 bitPos = commandCode - TPM_CC_PP_FIRST;
13975 64 gp.ppList[bitPos/8] |= (1 << (bitPos % 8));
13977 66 gp.ppList[bitPos/8] ^= (1 << (bitPos % 8));
13997 75 UINT32 bitPos;
14003 81 bitPos = commandCode - TPM_CC_PP_FIRST;
14006 84 return ((gp.ppList[bitPos/8] & (1 << (bitPos % 8))) != 0);