HomeSort by relevance Sort by last modified time
    Searched defs:bitPos (Results 1 - 18 of 18) sorted by null

  /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/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...]
  /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;
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.h 57 uint32 bitPos;
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...]
  /frameworks/base/core/java/com/android/internal/util/
BitUtils.java 71 int bitPos = 0;
73 if ((val & 1) == 1) result[index++] = bitPos;
75 bitPos++;
  /external/aac/libSBRenc/src/
bit_sbr.cpp 265 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf);
275 FDKpushBack(&cmonData->sbrBitbuf, (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos) );
    [all...]
  /hardware/qcom/gps/msm8998/core/
LocApiBase.cpp 596 uint8_t bitPos = featureVal & 7;
599 return ((mFeaturesSupported[arrayIndex] >> bitPos ) & 0x1);
  /hardware/qcom/gps/sdm845/core/
LocApiBase.cpp 597 uint8_t bitPos = featureVal & 7;
600 return ((mFeaturesSupported[arrayIndex] >> bitPos ) & 0x1);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 44 int8_t 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/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/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]

Completed in 614 milliseconds