Searched refs:LowBit (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/arm64/ |
D | constants-arm64.h | 222 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2) \ argument 223 const int Name##_offset = LowBit; \ 224 const int Name##_width = HighBit - LowBit + 1; \ 225 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit; 226 #define DECLARE_INSTRUCTION_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1) \ argument 227 DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2)
|
D | instructions-arm64.h | 140 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 141 int32_t Name() const { return Func(HighBit, LowBit); }
|
D | simulator-arm64.h | 104 #define DEFINE_GETTER(Name, HighBit, LowBit, Func, Type) \ 105 Type Name() const { return static_cast<Type>(Func(HighBit, LowBit)); } \ 107 SetBits(HighBit, LowBit, static_cast<Type>(bits)); \
|
/external/vixl/src/aarch64/ |
D | instructions-aarch64.h | 196 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 197 int32_t Get##Name() const { return this->Func(HighBit, LowBit); } \
|
D | constants-aarch64.h | 189 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \ argument 190 const int Name##_offset = LowBit; \ 191 const int Name##_width = HighBit - LowBit + 1; \ 192 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
|
D | simulator-aarch64.h | 699 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument 700 uint32_t Get##Name() const { return this->Func(HighBit, LowBit); } \ 702 void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 618 unsigned LowBit = LowBitExpr.getValue(); in evalSliceExpr() local 619 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1; in evalSliceExpr() 620 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask; in evalSliceExpr()
|