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

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
HighBitSet32.c 45 INTN BitIndex;
50 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1);
51 return BitIndex;
LowBitSet32.c 44 INTN BitIndex;
50 for (BitIndex = 0; (Operand & 1) == 0; BitIndex++, Operand >>= 1);
51 return BitIndex;
LowBitSet64.c 44 INTN BitIndex;
50 for (BitIndex = 0;
52 BitIndex++, Operand = RShiftU64 (Operand, 1));
53 return BitIndex;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
HighBitSet32.c 40 INTN BitIndex;
45 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1);
46 return BitIndex;
LowBitSet32.c 39 INTN BitIndex;
45 for (BitIndex = 0; 0 == (Operand & 1); BitIndex++, Operand >>= 1);
46 return BitIndex;
LowBitSet64.c 40 INTN BitIndex;
46 for (BitIndex = 0;
48 BitIndex++, Operand = RShiftU64 (Operand, 1));
49 return BitIndex;
  /prebuilts/go/darwin-x86/src/cmd/internal/gcprog/
gcprog.go 60 // BitIndex returns the number of bits written to the bit stream so far.
61 func (w *Writer) BitIndex() int64 {
  /prebuilts/go/linux-x86/src/cmd/internal/gcprog/
gcprog.go 60 // BitIndex returns the number of bits written to the bit stream so far.
61 func (w *Writer) BitIndex() int64 {
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
GPRArith.cpp     [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
GPRArith.cpp     [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c 153 UINTN BitIndex;
157 for (BitIndex = 0; BitIndex < 8; BitIndex++) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 301 Value *BitIndex =
303 Value *BitMask = B.CreateShl(ConstantInt::get(BitsType, 1), BitIndex);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
ARMDecoderEmitter.cpp 515 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
607 unsigned bitIndex;
611 for (bitIndex = 0; bitIndex < NumBits; bitIndex++)
612 BitValueArray[StartBit + bitIndex] = BIT_UNSET;
639 for (bitIndex = 0; bitIndex < NumBits; bitIndex++) {
640 if (mapIterator->first & (1ULL << bitIndex))
    [all...]
FixedLenDecoderEmitter.cpp 353 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
444 unsigned bitIndex;
448 for (bitIndex = 0; bitIndex < NumBits; bitIndex++)
449 BitValueArray[StartBit + bitIndex] = BIT_UNSET;
477 for (bitIndex = 0; bitIndex < NumBits; bitIndex++) {
478 if (mapIterator->first & (1ULL << bitIndex))
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 763 /// The BitIndex field is only used for externally invisible declarations.
765 GuardInfo() : Guard(nullptr), BitIndex(0) {}
767 unsigned BitIndex;
    [all...]

Completed in 492 milliseconds