| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 773 const char *Exponent = s; in ParseDecimalOrOctalCommon() local 784 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), in ParseDecimalOrOctalCommon() 882 const char *Exponent = s; in ParseNumberStartingWithZero() local 889 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), in ParseNumberStartingWithZero() 1070 uint64_t Exponent = 0; in GetFixedPointValue() local 1085 Exponent = ExpInt.getZExtValue(); in GetFixedPointValue() 1090 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue() 1091 else BaseShift += Exponent; in GetFixedPointValue() 1113 NumBitsNeeded = 4 * (NumDigits + Exponent) + Scale; in GetFixedPointValue() 1115 NumBitsNeeded = 4 * NumDigits + Exponent + Scale; in GetFixedPointValue()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | NativeFormatting.cpp | 177 if (Style == FloatStyle::Exponent) in write_double() 188 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) { in write_double() 256 case FloatStyle::Exponent: in getDefaultPrecision()
|
| H A D | raw_ostream.cpp | 193 llvm::write_double(*this, N, FloatStyle::Exponent); in operator <<()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | StraightLineStrengthReduce.cpp | 609 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); in emitBump() local 610 return Builder.CreateShl(ExtendedStride, Exponent); in emitBump() 614 ConstantInt *Exponent = in emitBump() local 616 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent)); in emitBump()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | NativeFormatting.h | 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; enumerator
|
| H A D | FormatProviders.h | 312 S = FloatStyle::Exponent;
|
| /freebsd-12.1/contrib/sendmail/ |
| H A D | CACerts | 42 Exponent: 65537 (0x10001) 138 Exponent: 65537 (0x10001)
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionExpander.cpp | 779 uint64_t Exponent = 0; in visitMulExpr() local 785 while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) { in visitMulExpr() 786 ++Exponent; in visitMulExpr() 789 assert(Exponent > 0 && "Trying to calculate a zeroth exponent of operand?"); in visitMulExpr() 795 if (Exponent & 1) in visitMulExpr() 797 for (uint64_t BinExp = 2; BinExp <= Exponent; BinExp <<= 1) { in visitMulExpr() 799 if (Exponent & BinExp) in visitMulExpr()
|
| H A D | ValueTracking.cpp | 2984 if (ConstantInt *Exponent = dyn_cast<ConstantInt>(I->getOperand(1))) { in cannotBeOrderedLessThanZeroImpl() local 2986 if (Exponent->getBitWidth() <= 64 && Exponent->getSExtValue() % 2u == 0) in cannotBeOrderedLessThanZeroImpl()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | README_P9.txt | 383 - Insert Exponent DP/QP: xsiexpdp xsiexpqp 392 - Extract Exponent/Significand DP/QP: xsxexpdp xsxsigdp xsxexpqp xsxsigqp 428 - Vector Insert Exponent DP/SP: xviexpdp xviexpsp 433 - Vector Extract Exponent/Significand DP/SP: xvxexpdp xvxexpsp xvxsigdp xvxsigsp
|
| H A D | PPCInstrVSX.td | 2691 // Insert Exponent DP/QP 2703 // Extract Exponent/Significand DP/QP 2731 // Vector Insert Exponent DP/SP 2737 // Vector Extract Exponent/Significand DP/SP
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | arm_fp16.td | 31 // Reciprocal Exponent
|
| H A D | arm_neon.td | 1269 // Scalar Floating-point Reciprocal Exponent
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | IntrinsicsAArch64.td | 315 // Reciprocal Exponent
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 645 Error parseAlignmentValue(uint64_t Exponent, unsigned &Alignment); 1429 Error BitcodeReader::parseAlignmentValue(uint64_t Exponent, in parseAlignmentValue() argument 1433 if (Exponent > Value::MaxAlignmentExponent + 1) in parseAlignmentValue() 1435 Alignment = (1 << static_cast<unsigned>(Exponent)) >> 1; in parseAlignmentValue()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 4340 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias); in expandFP_TO_SINT() local 4354 dl, Exponent, ExponentLoBit, in expandFP_TO_SINT() 4357 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit), in expandFP_TO_SINT() 4361 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent), in expandFP_TO_SINT() 4368 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT), in expandFP_TO_SINT()
|
| /freebsd-12.1/sys/contrib/zstd/doc/ |
| H A D | zstd_compression_format.md | 239 | Field name | `Exponent` | `Mantissa` | 244 windowLog = 10 + Exponent;
|
| /freebsd-12.1/contrib/gcc/config/arm/ |
| H A D | ieee754-df.S | 277 @ Exponent too small, denormalize result.
|
| /freebsd-12.1/contrib/wpa/hostapd/ |
| H A D | ChangeLog | 318 - fix vht_capab 'Maximum A-MPDU Length Exponent' handling
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 7957 SDValue Exponent = DAG.getNode(ISD::SINT_TO_FP, dl, Ty, Op.getOperand(1)); in LowerFPOWI() local 7969 Entry.Node = Exponent; in LowerFPOWI() 7970 Entry.Ty = Exponent.getValueType().getTypeForEVT(*DAG.getContext()); in LowerFPOWI()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 2030 Value *Exponent = EmitScalarExpr(E->getArg(1)); in EmitBuiltinExpr() local 2033 return RValue::get(Builder.CreateCall(F, {Base, Exponent})); in EmitBuiltinExpr()
|
| /freebsd-12.1/contrib/binutils/gas/ |
| H A D | ChangeLog-9295 | 12307 * config/atof-ieee.c (atof_ieee): Exponent field isn't a pointer;
|