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

  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PciHostBridgeLib/
PciHostBridgeSupport.c 196 UINTN LowBit;
267 LowBit = LowBitSet64 (Length);
268 Length = LShiftU64 (1ULL, LowBit);
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.c 189 INT32 LowBit;
211 LowBit = (INT32)LowBitSet32 (ProcessAffinityMask);
212 if (LowBit != -1) {
217 SetProcessAffinityMask (GetCurrentProcess (), (INTN)(BIT0 << LowBit));
    [all...]
  /external/v8/src/arm64/
instructions-arm64.h 122 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
123 int32_t Name() const { return Func(HighBit, LowBit); }
constants-arm64.h 288 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2) \
289 const int Name##_offset = LowBit; \
290 const int Name##_width = HighBit - LowBit + 1; \
291 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
292 #define DECLARE_INSTRUCTION_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1) \
293 DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, unused_1, unused_2)
    [all...]
simulator-arm64.h 295 #define DEFINE_GETTER(Name, HighBit, LowBit, Func, Type) \
296 Type Name() const { return static_cast<Type>(Func(HighBit, LowBit)); } \
298 SetBits(HighBit, LowBit, static_cast<Type>(bits)); \
    [all...]
  /external/vixl/src/aarch64/
instructions-aarch64.h 193 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
194 int32_t Get##Name() const { return this->Func(HighBit, LowBit); } \
constants-aarch64.h 194 #define DECLARE_FIELDS_OFFSETS(Name, HighBit, LowBit, X) \
195 const int Name##_offset = LowBit; \
196 const int Name##_width = HighBit - LowBit + 1; \
197 const uint32_t Name##_mask = ((1 << Name##_width) - 1) << LowBit;
    [all...]
simulator-aarch64.h 533 #define DEFINE_GETTER(Name, HighBit, LowBit, Func) \
534 uint32_t Get##Name() const { return this->Func(HighBit, LowBit); } \
536 void Set##Name(uint32_t bits) { SetBits(HighBit, LowBit, bits); }
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 618 unsigned LowBit = LowBitExpr.getValue();
619 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1;
620 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 618 unsigned LowBit = LowBitExpr.getValue();
619 uint64_t Mask = ((uint64_t)1 << (HighBit - LowBit + 1)) - 1;
620 uint64_t SlicedValue = (SubExprResult.getValue() >> LowBit) & Mask;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 760 milliseconds