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 …]
|
/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/nouveau/codegen/ |
D | nv50_ir_target.cpp | 436 relocInfo->entry[n].bitPos = s; in addReloc() 478 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 | 114 int32_t bitPos; in XformMskToBitPosU5Imm() local 115 bitPos = Log2_32(Imm); in XformMskToBitPosU5Imm() 116 assert(bitPos >= 0 && bitPos < 32 && in XformMskToBitPosU5Imm() 118 return CurDAG->getTargetConstant(bitPos, DL, MVT::i32); in XformMskToBitPosU5Imm()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 2215 unsigned int bitPos, partsCount; in convertFromHexadecimalString() local 2224 bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() 2254 if (bitPos) { in convertFromHexadecimalString() 2255 bitPos -= 4; in convertFromHexadecimalString() 2256 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2257 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/external/aac/libSBRenc/src/ |
D | bit_sbr.cpp | 239 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf); in FDKsbrEnc_CountSbrChannelPairElement() local 246 (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos)); in FDKsbrEnc_CountSbrChannelPairElement()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2368 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString() local 2394 if (bitPos) { in convertFromHexadecimalString() 2395 bitPos -= 4; in convertFromHexadecimalString() 2396 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2397 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 1384 const unsigned bitPos = halfBitWidth - i - 1; in LowerUDIVREM64() local 1385 SDValue POS = DAG.getConstant(bitPos, DL, HalfVT); in LowerUDIVREM64() 1396 SDValue BIT = DAG.getConstant(1ULL << bitPos, DL, HalfVT); in LowerUDIVREM64()
|