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

  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 591 uint8_t Mantissa = Imm & 0xf;
603 FPUnion.I |= Mantissa << 19;
613 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
615 // We can handle 4 bits of mantissa.
616 // mantissa = (16+UInt(e:f:g:h))/16.
617 if (Mantissa & 0x7ffff)
619 Mantissa >>= 19;
620 if ((Mantissa & 0xf) != Mantissa)
628 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 660 uint8_t Mantissa = Imm & 0xf;
672 FPUnion.I |= Mantissa << 19;
682 int64_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
684 // We can handle 4 bits of mantissa.
685 // mantissa = (16+UInt(e:f:g:h))/16.
686 if (Mantissa & 0x3f)
688 Mantissa >>= 6;
695 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...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AddressingModes.h 351 uint8_t Mantissa = Imm & 0xf;
363 FPUnion.I |= Mantissa << 19;
373 int32_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
375 // We can handle 4 bits of mantissa.
376 // mantissa = (16+UInt(e:f:g:h))/16.
377 if (Mantissa & 0x3f)
379 Mantissa >>= 6;
386 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
399 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
401 // We can handle 4 bits of mantissa
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
rat.go 33 mantissa := bits & (1<<52 - 1)
41 mantissa |= 1 << 52
48 for mantissa&1 == 0 && shift > 0 {
49 mantissa >>= 1
53 z.a.SetUint64(mantissa)
73 // mantissa
97 // This is 2 or 3 more than the float32 mantissa field width of Msize:
116 mantissa := low32(q)
117 haveRem := len(r) > 0 // mantissa&1 && !haveRem => remainder is exactly half
121 if mantissa>>Msize2 == 1
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
rat.go 33 mantissa := bits & (1<<52 - 1)
41 mantissa |= 1 << 52
48 for mantissa&1 == 0 && shift > 0 {
49 mantissa >>= 1
53 z.a.SetUint64(mantissa)
73 // mantissa
97 // This is 2 or 3 more than the float32 mantissa field width of Msize:
116 mantissa := low32(q)
117 haveRem := len(r) > 0 // mantissa&1 && !haveRem => remainder is exactly half
121 if mantissa>>Msize2 == 1
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmshalf.c 33 static cmsUInt32Number Mantissa[2048] = {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 296 milliseconds