Home
last modified time | relevance | path

Searched refs:LowBit (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/arm64/
Dinstructions-arm64.h132 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument
133 int64_t Name() const { return Func(HighBit, LowBit); }
Dconstants-arm64.h225 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2) \ argument
226 const int Name##_offset = LowBit; \
227 const int Name##_width = HighBit - LowBit + 1; \
228 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
229 #define DECLARE_INSTRUCTION_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1) \ argument
230 DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2)
Dsimulator-arm64.h112 #define DEFINE_GETTER(Name, HighBit, LowBit, Func, Type) \
113 Type Name() const { return static_cast<Type>(Func(HighBit, LowBit)); } \
115 SetBits(HighBit, LowBit, static_cast<Type>(bits)); \
/external/vixl/src/vixl/a64/
Dinstructions-a64.h190 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument
191 int64_t Name() const { return Func(HighBit, LowBit); }
Dconstants-a64.h183 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \ argument
184 const int Name##_offset = LowBit; \
185 const int Name##_width = HighBit - LowBit + 1; \
186 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
Dsimulator-a64.h708 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \ argument
709 uint32_t Name() const { return Func(HighBit, LowBit); } \
710 void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp616 unsigned LowBit = LowBitExpr.getValue(); in evalSliceExpr() local
617 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1; in evalSliceExpr()
618 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask; in evalSliceExpr()