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

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
LowBitSet32.c 44 INTN BitIndex;
50 for (BitIndex = 0; (Operand & 1) == 0; BitIndex++, Operand >>= 1);
51 return BitIndex;
HighBitSet32.c 45 INTN BitIndex;
50 for (BitIndex = 31; (INT32)Operand > 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/
LowBitSet32.c 39 INTN BitIndex;
45 for (BitIndex = 0; 0 == (Operand & 1); BitIndex++, Operand >>= 1);
46 return BitIndex;
HighBitSet32.c 40 INTN BitIndex;
45 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1);
46 return BitIndex;
LowBitSet64.c 40 INTN BitIndex;
46 for (BitIndex = 0;
48 BitIndex++, Operand = RShiftU64 (Operand, 1));
49 return BitIndex;
  /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/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 461 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
545 for (unsigned bitIndex = 0; bitIndex < NumBits; ++bitIndex)
546 BitValueArray[StartBit + bitIndex] = BIT_UNSET;
567 for (unsigned bitIndex = 0; bitIndex < NumBits; ++bitIndex) {
568 if (Inst.first & (1ULL << bitIndex))
569 BitValueArray[StartBit + bitIndex] = BIT_TRUE
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_BitDec_s.h 579 ;// $BitIndex - Destination BitCount after the addition of Offset number of bits
582 M_BD_ADD $ByteIndex, $BitIndex, $Offset
584 ;// ($ByteIndex,$BitIndex) = Current position + $Offset bits
586 AND $BitIndex, $Offset, #7
603 ;// $BitIndex - Destination BitCount after the move
612 M_BD_MOV $ByteIndex, $BitIndex
614 ;// ($pBitStream, $Offset) = ($ByteIndex,$BitIndex)
615 MOV $BitCount, $BitIndex
627 ;// $BitIndex - Destination BitCount
638 M_BD_CMP $ByteIndex, $BitIndex, $T
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_BitDec_s.h 579 ;// $BitIndex - Destination BitCount after the addition of Offset number of bits
582 M_BD_ADD $ByteIndex, $BitIndex, $Offset
584 ;// ($ByteIndex,$BitIndex) = Current position + $Offset bits
586 AND $BitIndex, $Offset, #7
603 ;// $BitIndex - Destination BitCount after the move
612 M_BD_MOV $ByteIndex, $BitIndex
614 ;// ($pBitStream, $Offset) = ($ByteIndex,$BitIndex)
615 MOV $BitCount, $BitIndex
627 ;// $BitIndex - Destination BitCount
638 M_BD_CMP $ByteIndex, $BitIndex, $T
    [all...]
  /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 {
  /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/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...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
reflect.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
reflect.go     [all...]

Completed in 616 milliseconds