Lines Matching full:bitpos
48 UINT32 bitPos;
55 bitPos = commandCode - TPM_CC_PP_FIRST;
57 gp.ppList[bitPos/8] |= 1 << (bitPos % 8);
71 UINT32 bitPos;
81 bitPos = commandCode - TPM_CC_PP_FIRST;
83 gp.ppList[bitPos/8] |= (1 << (bitPos % 8));
85 gp.ppList[bitPos/8] ^= (1 << (bitPos % 8));
104 UINT32 bitPos;
108 bitPos = commandCode - TPM_CC_PP_FIRST;
110 return ((gp.ppList[bitPos/8] & (1 << (bitPos % 8))) != 0);