HomeSort by: relevance | last modified time | path
    Searched refs:Mantissa (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 649 uint8_t Mantissa = Imm & 0xf;
660 I |= Mantissa << 19;
670 int64_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
672 // We can handle 4 bits of mantissa.
673 // mantissa = (16+UInt(e:f:g:h))/16.
674 if (Mantissa & 0x3f)
676 Mantissa >>= 6;
683 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
708 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
710 // We can handle 4 bits of mantissa
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AddressingModes.h 348 uint8_t Mantissa = Imm & 0xf;
360 I |= Mantissa << 19;
370 int32_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
372 // We can handle 4 bits of mantissa.
373 // mantissa = (16+UInt(e:f:g:h))/16.
374 if (Mantissa & 0x3f)
376 Mantissa >>= 6;
383 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
396 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
398 // We can handle 4 bits of mantissa
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 2126 int Mantissa = DestTy->getFPMantissaWidth();
2127 if (Mantissa == -1) continue;
2128 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)

Completed in 73 milliseconds