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

  /external/chromium_org/v8/src/arm64/
instructions-arm64.h 132 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
133 int64_t Name() const { return Func(HighBit, LowBit); }
constants-arm64.h 225 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2) \
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) \
230 DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2)
    [all...]
simulator-arm64.h 112 #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/a64/
instructions-a64.h 181 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
182 inline int64_t Name() const { return Func(HighBit, LowBit); }
simulator-a64.h 111 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
112 inline uint32_t Name() const { return Func(HighBit, LowBit); } \
113 inline void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
constants-a64.h 149 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \
150 const int Name##_offset = LowBit; \
151 const int Name##_width = HighBit - LowBit + 1; \
152 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 509 unsigned LowBit = LowBitExpr.getValue();
510 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1;
511 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask;

Completed in 124 milliseconds