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

  /external/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) \
227 const int Name##_width = HighBit - LowBit + 1; \
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/vixl/a64/
instructions-a64.h 190 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
191 int64_t Name() const { return Func(HighBit, LowBit); }
simulator-a64.h 708 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
709 uint32_t Name() const { return Func(HighBit, LowBit); } \
710 void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
    [all...]
constants-a64.h 183 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \
185 const int Name##_width = HighBit - LowBit + 1; \
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 351 DigitsT HighBit = DigitsT(1) << (getWidth<DigitsT>() - 1);
352 return std::make_pair(HighBit | Sum >> 1, Scale + 1);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 615 unsigned HighBit = HighBitExpr.getValue();
617 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1;
    [all...]

Completed in 260 milliseconds