/freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
H A D | RISCVTargetParser.cpp | 194 bool Fractional; in printVType() local 195 std::tie(LMul, Fractional) = decodeVLMUL(getVLMUL(VType)); in printVType() 197 if (Fractional) in printVType() 216 bool Fractional; in getSEWLMULRatio() local 217 std::tie(LMul, Fractional) = decodeVLMUL(VLMul); in getSEWLMULRatio() 220 LMul = Fractional ? (8 / LMul) : (LMul * 8); in getSEWLMULRatio() 230 bool Fractional = EMULFixedPoint < 8; in getSameRatioLMUL() local 231 unsigned EMUL = Fractional ? 8 / EMULFixedPoint : EMULFixedPoint / 8; in getSameRatioLMUL() 232 if (!isValidLMUL(EMUL, Fractional)) in getSameRatioLMUL() 234 return RISCVVType::encodeLMUL(EMUL, Fractional); in getSameRatioLMUL()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
H A D | RISCVTargetParser.h | 77 inline static bool isValidLMUL(unsigned LMUL, bool Fractional) { in isValidLMUL() argument 78 return isPowerOf2_32(LMUL) && LMUL <= 8 && (!Fractional || LMUL != 1); in isValidLMUL() 92 inline static RISCVII::VLMUL encodeLMUL(unsigned LMUL, bool Fractional) { in encodeLMUL() argument 93 assert(isValidLMUL(LMUL, Fractional) && "Unsupported LMUL"); in encodeLMUL() 95 return static_cast<RISCVII::VLMUL>(Fractional ? 8 - LmulLog2 : LmulLog2); in encodeLMUL()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Chrono.cpp | 72 static void format(const T &Fractional, struct tm <, raw_ostream &OS, in format() 83 "%.3lu", (long)duration_cast<milliseconds>(Fractional).count()); in format() 88 "%.6lu", (long)duration_cast<microseconds>(Fractional).count()); in format() 93 "%.9lu", (long)duration_cast<nanoseconds>(Fractional).count()); 114 auto Fractional = T - Truncated; 116 llvm::format(Fractional, LT, OS, Style); 123 auto Fractional = T - Truncated; 125 llvm::format(Fractional, LT, OS, Style); 57 auto Fractional = T - Truncated; format() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | common.h | 120 uptr *Fractional) { in computePercentage() argument 124 *Fractional = 0; in computePercentage() 129 *Fractional = in computePercentage()
|
H A D | secondary.h | 179 uptr Fractional; in getStats() local 181 &Fractional); in getStats() 190 SuccessfulRetrieves, CallsToRetrieve, Integral, Fractional); in getStats()
|
H A D | primary32.h | 942 uptr Fractional; in getSizeClassFragmentationInfo() local 944 &Fractional); in getSizeClassFragmentationInfo() 948 AllocatedPagesCount, InUseBytes >> 10, Integral, Fractional); in getSizeClassFragmentationInfo()
|
H A D | primary64.h | 1187 uptr Fractional; in getRegionFragmentationInfo() local 1189 &Fractional); in getRegionFragmentationInfo() 1193 AllocatedPagesCount, InUseBytes >> 10, Integral, Fractional); in getRegionFragmentationInfo()
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | cs2000-cp.txt | 1 CIRRUS LOGIC Fractional-N Clock Synthesizer & Clock Multiplier
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/ |
H A D | RISCVAsmParser.cpp | 124 unsigned &Lmul, bool &Fractional, bool &TailAgnostic, 2170 bool &Fractional, bool &TailAgnostic, in parseVTypeToken() argument 2190 Fractional = Identifier.consume_front("f"); in parseVTypeToken() 2193 if (!RISCVVType::isValidLMUL(Lmul, Fractional)) in parseVTypeToken() 2196 if (Fractional) { in parseVTypeToken() 2239 bool Fractional = false; in parseVTypeI() local 2246 if (parseVTypeToken(getTok(), State, Sew, Lmul, Fractional, TailAgnostic, in parseVTypeI() 2253 if (parseVTypeToken(getTok(), State, Sew, Lmul, Fractional, TailAgnostic, in parseVTypeI() 2261 RISCVII::VLMUL VLMUL = RISCVVType::encodeLMUL(Lmul, Fractional); in parseVTypeI() 2262 if (Fractional) { in parseVTypeI()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInsertVSETVLI.cpp | 327 auto [LMul, Fractional] = RISCVVType::decodeVLMUL(LMUL); in isLMUL1OrSmaller() 328 return Fractional || LMul == 1; in isLMUL1OrSmaller() 988 auto [LMul, Fractional] = RISCVVType::decodeVLMUL(VLMul); in computeVLMAX() 989 if (Fractional) in computeVLMAX()
|
H A D | RISCVScheduleV.td | 410 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation 639 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation
|
H A D | RISCVInstrInfo.cpp | 328 auto [LMulVal, Fractional] = RISCVVType::decodeVLMUL(LMul); in copyPhysRegVector() 329 assert(!Fractional && "It is impossible be fractional lmul here."); in copyPhysRegVector() 3989 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation
|
H A D | RISCVISelLowering.cpp | 2861 bool Fractional; in getLMULCost() 2862 std::tie(LMul, Fractional) = in getLMULCost() 2864 if (Fractional) in getLMULCost() 8970 bool Fractional = VF < LMul1VF; in lowerGetVectorLength() 8971 unsigned LMulVal = Fractional ? LMul1VF / VF : VF / LMul1VF; in lowerGetVectorLength() 8972 unsigned VLMUL = (unsigned)RISCVVType::encodeLMUL(LMulVal, Fractional); in lowerGetVectorLength() 17932 auto [LMul, Fractional] = RISCVVType::decodeVLMUL(VLMUL); in computeKnownBitsForTargetNode() 17934 MaxVL = (Fractional) ? MaxVL / LMul : MaxVL * LMul; in computeKnownBitsForTargetNode() 21651 auto [LMUL, Fractional] = RISCVVType::decodeVLMUL(getLMUL(ContainerVT)); in isLegalInterleavedAccessType() 21652 if (Fractional) in isLegalInterleavedAccessType() 2860 bool Fractional; getLMULCost() local 8968 bool Fractional = VF < LMul1VF; lowerGetVectorLength() local [all...] |
H A D | RISCVInstrInfoV.td | 1320 // Vector Single-Width Fractional Multiply with Rounding and Saturation
|
H A D | RISCVInstrInfoVPseudos.td | 6416 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation 7078 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDebugInfo.cpp | 813 bool Fractional = false; in CreateType() local 821 Fractional = true; in CreateType() 838 if (Fractional) in CreateType()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | riscv_vector.td | 1447 // 12.3. Vector Single-Width Fractional Multiply with Rounding and Saturation
|
/freebsd/contrib/tzcode/ |
H A D | NEWS | 3482 Fractional-second GMT offsets have been documented for civil time
|
/freebsd/contrib/tzdata/ |
H A D | NEWS | 3585 Fractional-second GMT offsets have been documented for civil time
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 3500 compliance with RFC 5280. Fractional seconds and timezone offsets 3750 compliance with RFC 5280. Fractional seconds and timezone offsets 5535 compliance with RFC 5280. Fractional seconds and timezone offsets
|