Home
last modified time | relevance | path

Searched refs:Mantissa (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h635 uint8_t Mantissa = Imm & 0xf; in getFPImmFloat() local
646 I |= Mantissa << 19; in getFPImmFloat()
656 int64_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits in getFP16Imm() local
660 if (Mantissa & 0x3f) in getFP16Imm()
662 Mantissa >>= 6; in getFP16Imm()
669 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
682 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits in getFP32Imm() local
686 if (Mantissa & 0x7ffff) in getFP32Imm()
688 Mantissa >>= 19; in getFP32Imm()
689 if ((Mantissa & 0xf) != Mantissa) in getFP32Imm()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h348 uint8_t Mantissa = Imm & 0xf; in getFPImmFloat() local
360 I |= Mantissa << 19; in getFPImmFloat()
370 int32_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits in getFP16Imm() local
374 if (Mantissa & 0x3f) in getFP16Imm()
376 Mantissa >>= 6; in getFP16Imm()
383 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
396 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits in getFP32Imm() local
400 if (Mantissa & 0x7ffff) in getFP32Imm()
402 Mantissa >>= 19; in getFP32Imm()
403 if ((Mantissa & 0xf) != Mantissa) in getFP32Imm()
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dpacking.inl30 ((f >> 13) & 0x03ff); // Mantissa
48 ((f >> 17) & 0x003f); // Mantissa
66 ((p & 0x003f) << 17); // Mantissa
87 ((f >> 18) & 0x001f); // Mantissa
108 ((p & 0x001f) << 18); // Mantissa
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_blend_minmax_factor.txt227 to zero. Mantissa bits may be quantied.
DNV_vertex_program.txt2684 q.y = Mantissa(t.x);
2708 -Inf respectively. The "Mantissa(t.x)" function returns a value
2710 fabs(t.x) is approximately "Mantissa(t.x)*2^Exponent(t.x)".
/third_party/openGLES/extensions/NV/
DNV_blend_minmax_factor.txt227 to zero. Mantissa bits may be quantied.
DNV_vertex_program.txt2684 q.y = Mantissa(t.x);
2708 -Inf respectively. The "Mantissa(t.x)" function returns a value
2710 fabs(t.x) is approximately "Mantissa(t.x)*2^Exponent(t.x)".
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2123 int Mantissa = DestTy->getFPMantissaWidth(); in OptimizeShadowIV() local
2124 if (Mantissa == -1) continue; in OptimizeShadowIV()
2125 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa) in OptimizeShadowIV()