HomeSort by relevance Sort by last modified time
    Searched refs:bitPos (Results 1 - 25 of 32) sorted by null

1 2

  /external/tpm2/
PP.c 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))
    [all...]
CommandAudit.c 80 UINT32 bitPos;
87 bitPos = commandCode - TPM_CC_FIRST;
88 if(!BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
91 BitSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
121 UINT32 bitPos;
129 bitPos = commandCode - TPM_CC_FIRST;
130 if(BitIsSet(bitPos, &gp.auditComands[0], sizeof(gp.auditComands)))
133 BitClear(bitPos, &gp.auditComands[0], sizeof(gp.auditComands));
157 UINT32 bitPos;
158 bitPos = commandCode - TPM_CC_FIRST
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4448.go 14 var bitPos [64]int
18 bitPos[b26<<p>>58] = int(p)
26 return bitPos[((w&-w)*b26)>>58]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4448.go 14 var bitPos [64]int
18 bitPos[b26<<p>>58] = int(p)
26 return bitPos[((w&-w)*b26)>>58]
  /external/lzma/C/
BraIA64.c 26 UInt32 bitPos = 5;
28 for (slot = 0; slot < 3; slot++, bitPos += 41)
35 bytePos = (bitPos >> 3);
36 bitRes = bitPos & 0x7;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
IA64.java 36 for (int slot = 0, bitPos = 5; slot < 3; ++slot, bitPos += 41) {
40 int bytePos = bitPos >>> 3;
41 int bitRes = bitPos & 7;
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
mp4_utils.cpp 62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
65 posPtr->bitPos += size;
67 while (posPtr->bitPos >= 8) {
68 posPtr->bitPos -= 8;
93 m_posInfo.bitPos = 0;
103 m_posInfo.bitPos = 0;
112 m_posInfo.bitPos = 0;
121 m_posInfo.bitPos = 0;
132 m_posInfo.bitPos = 0;
159 m_posInfo.bitPos = 0
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
91 m_posInfo.bitPos = 0;
102 m_posInfo.bitPos = 0;
112 m_posInfo.bitPos = 0;
122 m_posInfo.bitPos = 0;
134 m_posInfo.bitPos = 0;
164 m_posInfo.bitPos = 0
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
91 m_posInfo.bitPos = 0;
102 m_posInfo.bitPos = 0;
112 m_posInfo.bitPos = 0;
122 m_posInfo.bitPos = 0;
134 m_posInfo.bitPos = 0;
164 m_posInfo.bitPos = 0
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
91 m_posInfo.bitPos = 0;
102 m_posInfo.bitPos = 0;
112 m_posInfo.bitPos = 0;
122 m_posInfo.bitPos = 0;
134 m_posInfo.bitPos = 0;
164 m_posInfo.bitPos = 0
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.cpp 114 psBits.bitPos = 32;
616 uint32 bitPos = pStream->bitPos;
621 if (ucNBits > (32 - bitPos)) /* not enough bits */
624 bitPos = dataBitPos & 7; /* update bit position */
640 pStream->bitPos = bitPos;
643 bitPos += ucNBits;
645 *pulOutData = (pStream->bitBuf >> (32 - bitPos)) & mask[(uint16)ucNBits];
658 uint32 bitPos = pStream->bitPos
    [all...]
intel_m4v_config_parser.h 57 uint32 bitPos;
intel_video_config_parser.cpp 81 psBits.bitPos = 32;
  /frameworks/base/core/java/com/android/internal/util/
BitUtils.java 70 int bitPos = 0;
72 if ((val & 1) == 1) result[index++] = bitPos;
74 bitPos++;
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 156 uint8 bitPos;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 153 uint8 bitPos;
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 153 uint8 bitPos;
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 153 uint8 bitPos;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.cpp 436 relocInfo->entry[n].bitPos = s;
478 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos);
nv50_ir_target.h 44 int8_t bitPos;
  /hardware/qcom/gps/msm8909w_3100/core/
LocApiBase.cpp 602 uint8_t bitPos = featureVal & 7;
605 return ((mFeaturesSupported[arrayIndex] >> bitPos ) & 0x1);
  /hardware/qcom/gps/msm8998/core/
LocApiBase.cpp 597 uint8_t bitPos = featureVal & 7;
600 return ((mFeaturesSupported[arrayIndex] >> bitPos ) & 0x1);
  /frameworks/base/core/java/android/net/
NetworkCapabilities.java     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 114 int32_t bitPos;
115 bitPos = Log2_32(Imm);
116 assert(bitPos >= 0 && bitPos < 32 &&
117 "Constant out of range for 32 BitPos Memops");
118 return CurDAG->getTargetConstant(bitPos, DL, MVT::i32);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp     [all...]

Completed in 503 milliseconds

1 2