Home
last modified time | relevance | path

Searched refs:bitPos (Results 1 – 11 of 11) sorted by relevance

/external/tpm2/
DPP.c48 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()
DCommandAudit.c80 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 …]
Dpart4.txt8385 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/
DIA64.java36 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/
DBraIA64.c26 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/
Dnv50_ir_target.cpp383 relocInfo->entry[n].bitPos = s; in addReloc()
403 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos); in apply()
Dnv50_ir_target.h44 int8_t bitPos; member
/external/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp117 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/
Dbit_sbr.cpp265 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf); in FDKsbrEnc_CountSbrChannelPairElement() local
275 FDKpushBack(&cmonData->sbrBitbuf, (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos) ); in FDKsbrEnc_CountSbrChannelPairElement()
/external/llvm/lib/Support/
DAPFloat.cpp2365 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/
DAMDGPUISelLowering.cpp1693 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()