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

  /external/libcxx/test/support/
hexfloat.h 28 const unsigned long long TopBit = 1ull << (Digits - 1);
31 while ((n & TopBit) == 0) {
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/AArch64/
ArmMmuLibCore.c 166 UINTN TopBit;
172 for (TopBit = 63; TopBit != 0; TopBit--) {
173 if ((1ULL << TopBit) & MaxAddress) {
175 TopBit = TopBit + 1;
179 ASSERT (TopBit != 0);
182 *T0SZ = 64 - TopBit;
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmDisassemblerLib/
ThumbDisassembler.c 439 IN UINT32 TopBit
442 if (((Data & TopBit) == 0) || (TopBit == BIT31)) {
447 TopBit <<= 1;
448 Data |= TopBit;
449 } while ((TopBit & BIT31) != BIT31);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 336 APInt TopBit(NVT.getSizeInBits(), 0);
337 TopBit.setBit(OVT.getSizeInBits());
338 Op = DAG.getNode(ISD::OR, dl, NVT, Op, DAG.getConstant(TopBit, NVT));
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 402 auto TopBit = APInt::getOneBitSet(NVT.getScalarSizeInBits(),
404 Op = DAG.getNode(ISD::OR, dl, NVT, Op, DAG.getConstant(TopBit, dl, NVT));
    [all...]
LegalizeDAG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
LegalizeIntegerTypes.cpp 392 auto TopBit = APInt::getOneBitSet(NVT.getScalarSizeInBits(),
394 Op = DAG.getNode(ISD::OR, dl, NVT, Op, DAG.getConstant(TopBit, dl, NVT));
    [all...]

Completed in 561 milliseconds