Searched refs:bitPos (Results 1 – 11 of 11) sorted by relevance
/external/tpm2/ |
D | PP.c | 48 UINT32 bitPos; in PhysicalPresenceCommandSet() local 55 bitPos = commandCode - TPM_CC_PP_FIRST; in PhysicalPresenceCommandSet() 57 gp.ppList[bitPos/8] |= 1 << (bitPos % 8); in PhysicalPresenceCommandSet() 71 UINT32 bitPos; in PhysicalPresenceCommandClear() local 81 bitPos = commandCode - TPM_CC_PP_FIRST; in PhysicalPresenceCommandClear() 83 gp.ppList[bitPos/8] |= (1 << (bitPos % 8)); in PhysicalPresenceCommandClear() 85 gp.ppList[bitPos/8] ^= (1 << (bitPos % 8)); in PhysicalPresenceCommandClear() 104 UINT32 bitPos; in PhysicalPresenceIsRequired() local 108 bitPos = commandCode - TPM_CC_PP_FIRST; in PhysicalPresenceIsRequired() 110 return ((gp.ppList[bitPos/8] & (1 << (bitPos % 8))) != 0); in PhysicalPresenceIsRequired()
|
D | CommandAudit.c | 80 UINT32 bitPos; in CommandAuditSet() local 87 bitPos = commandCode - TPM_CC_FIRST; in CommandAuditSet() 88 if(!BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands))) in CommandAuditSet() 91 BitSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)); in CommandAuditSet() 121 UINT32 bitPos; in CommandAuditClear() local 129 bitPos = commandCode - TPM_CC_FIRST; in CommandAuditClear() 130 if(BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands))) in CommandAuditClear() 133 BitClear(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)); in CommandAuditClear() 157 UINT32 bitPos; in CommandAuditIsRequired() local 158 bitPos = commandCode - TPM_CC_FIRST; in CommandAuditIsRequired() [all …]
|
D | part4.txt | 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; [all …]
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/ |
D | IA64.java | 36 for (int slot = 0, bitPos = 5; slot < 3; ++slot, bitPos += 41) { in code() 40 int bytePos = bitPos >>> 3; in code() 41 int bitRes = bitPos & 7; in code()
|
/external/lzma/C/ |
D | BraIA64.c | 26 UInt32 bitPos = 5; in IA64_Convert() local 28 for (slot = 0; slot < 3; slot++, bitPos += 41) in IA64_Convert() 35 bytePos = (bitPos >> 3); in IA64_Convert() 36 bitRes = bitPos & 0x7; in IA64_Convert()
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_target.cpp | 383 relocInfo->entry[n].bitPos = s; in addReloc() 403 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos); in apply()
|
D | nv50_ir_target.h | 44 int8_t bitPos; member
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonISelDAGToDAG.cpp | 117 int32_t bitPos; in XformMskToBitPosU5Imm() local 118 bitPos = Log2_32(Imm); in XformMskToBitPosU5Imm() 119 assert(bitPos >= 0 && bitPos < 32 && in XformMskToBitPosU5Imm() 121 return CurDAG->getTargetConstant(bitPos, DL, MVT::i32); in XformMskToBitPosU5Imm()
|
/external/aac/libSBRenc/src/ |
D | bit_sbr.cpp | 265 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf); in FDKsbrEnc_CountSbrChannelPairElement() local 275 FDKpushBack(&cmonData->sbrBitbuf, (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos) ); in FDKsbrEnc_CountSbrChannelPairElement()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2365 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() local 2391 if (bitPos) { in convertFromHexadecimalString() 2392 bitPos -= 4; in convertFromHexadecimalString() 2393 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2394 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 1693 const unsigned bitPos = halfBitWidth - i - 1; in LowerUDIVREM64() local 1694 SDValue POS = DAG.getConstant(bitPos, DL, HalfVT); in LowerUDIVREM64() 1705 SDValue BIT = DAG.getConstant(1 << bitPos, DL, HalfVT); in LowerUDIVREM64()
|