Home
last modified time | relevance | path

Searched refs:UsedWords (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DBitVector.h376 unsigned UsedWords = NumBitWords(Size); variable
377 if (Capacity > UsedWords)
378 init_words(&Bits[UsedWords], (Capacity-UsedWords), t);
383 Bits[UsedWords-1] &= ~(~0L << ExtraBits);
384 Bits[UsedWords-1] |= (0 - (BitWord)t) << ExtraBits;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DBitVector.h513 unsigned UsedWords = NumBitWords(Size); variable
514 if (Capacity > UsedWords)
515 init_words(&Bits[UsedWords], (Capacity-UsedWords), t);
522 Bits[UsedWords-1] |= ExtraBitMask;
524 Bits[UsedWords-1] &= ~ExtraBitMask;
/external/llvm/include/llvm/ADT/
DBitVector.h513 unsigned UsedWords = NumBitWords(Size); variable
514 if (Capacity > UsedWords)
515 init_words(&Bits[UsedWords], (Capacity-UsedWords), t);
522 Bits[UsedWords-1] |= ExtraBitMask;
524 Bits[UsedWords-1] &= ~ExtraBitMask;
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h748 unsigned UsedWords = NumBitWords(Size); variable
749 if (Capacity > UsedWords)
750 init_words(&Bits[UsedWords], (Capacity - UsedWords), t);
757 Bits[UsedWords - 1] |= ExtraBitMask;
759 Bits[UsedWords - 1] &= ~ExtraBitMask;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DBitVector.h848 unsigned UsedWords = NumBitWords(Size); variable
849 if (Bits.size() > UsedWords)
850 init_words(Bits.drop_front(UsedWords), t);
857 Bits[UsedWords-1] |= ExtraBitMask;
859 Bits[UsedWords-1] &= ~ExtraBitMask;