Searched refs:HighBit (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/arm64/ |
D | instructions-arm64.h | 140 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 141 int32_t Name() const { return Func(HighBit, LowBit); }
|
D | constants-arm64.h | 222 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2) \ argument 224 const int Name##_width = HighBit - LowBit + 1; \ 226 #define DECLARE_INSTRUCTION_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1) \ argument 227 DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2)
|
D | simulator-arm64.h | 103 #define DEFINE_GETTER(Name, HighBit, LowBit, Func, Type) \ 104 Type Name() const { return static_cast<Type>(Func(HighBit, LowBit)); } \ 106 SetBits(HighBit, LowBit, static_cast<Type>(bits)); \
|
/external/vixl/src/vixl/a64/ |
D | instructions-a64.h | 190 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 191 int32_t Name() const { return Func(HighBit, LowBit); }
|
D | simulator-a64.h | 596 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 597 uint32_t Name() const { return Func(HighBit, LowBit); } \ 598 void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
|
D | constants-a64.h | 183 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \ argument 185 const int Name##_width = HighBit - LowBit + 1; \
|
/external/llvm/include/llvm/Support/ |
D | ScaledNumber.h | 351 DigitsT HighBit = DigitsT(1) << (getWidth<DigitsT>() - 1); in getSum() local 352 return std::make_pair(HighBit | Sum >> 1, Scale + 1); in getSum()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 615 unsigned HighBit = HighBitExpr.getValue(); in evalSliceExpr() local 617 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1; in evalSliceExpr()
|