Home
last modified time | relevance | path

Searched full:zfh (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c346 { ZSTD_frameHeader zfh; in ZSTD_getFrameContentSize() local
347 if (ZSTD_getFrameHeader(&zfh, src, srcSize) != 0) in ZSTD_getFrameContentSize()
349 if (zfh.frameType == ZSTD_skippableFrame) { in ZSTD_getFrameContentSize()
352 return zfh.frameContentSize; in ZSTD_getFrameContentSize()
483 ZSTD_frameHeader zfh; in ZSTD_findFrameSizeInfo() local
486 { size_t const ret = ZSTD_getFrameHeader(&zfh, src, srcSize); in ZSTD_findFrameSizeInfo()
493 ip += zfh.headerSize; in ZSTD_findFrameSizeInfo()
494 remainingSize -= zfh.headerSize; in ZSTD_findFrameSizeInfo()
514 if (zfh.checksumFlag) { in ZSTD_findFrameSizeInfo()
521 frameSizeInfo.decompressedBound = (zfh.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) in ZSTD_findFrameSizeInfo()
[all …]
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c546 { ZSTD_frameHeader zfh; in ZSTD_getFrameContentSize() local
547 if (ZSTD_getFrameHeader(&zfh, src, srcSize) != 0) in ZSTD_getFrameContentSize()
549 if (zfh.frameType == ZSTD_skippableFrame) { in ZSTD_getFrameContentSize()
552 return zfh.frameContentSize; in ZSTD_getFrameContentSize()
723 ZSTD_frameHeader zfh; in ZSTD_findFrameSizeInfo() local
726 { size_t const ret = ZSTD_getFrameHeader(&zfh, src, srcSize); in ZSTD_findFrameSizeInfo()
733 ip += zfh.headerSize; in ZSTD_findFrameSizeInfo()
734 remainingSize -= zfh.headerSize; in ZSTD_findFrameSizeInfo()
754 if (zfh.checksumFlag) { in ZSTD_findFrameSizeInfo()
761 frameSizeInfo.decompressedBound = (zfh.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) in ZSTD_findFrameSizeInfo()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/riscv/
H A Dextensions.yaml280 - const: zfh
282 The standard Zfh extension for 16-bit half-precision binary
284 version numbers for Zfh/Zfinx") of riscv-isa-manual.
290 in commit 64074bc ("Update version numbers for Zfh/Zfinx") of
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFeatures.td307 "'Zfh' (Half-Precision Floating-Point) or "
311 : RISCVExtension<"zfh", 1, 0,
312 "'Zfh' (Half-Precision Floating-Point)",
317 "'Zfh' (Half-Precision Floating-Point)">;
331 "'Zfh' (Half-Precision Floating-Point) or "
727 "'Zfh' (Half-Precision Floating-Point) or "
H A DRISCVInstrInfoZfh.td1 //===-- RISCVInstrInfoZfh.td - RISC-V 'Zfh' instructions ---*- tablegen -*-===//
9 // This file describes the RISC-V instructions from the standard 'Zfh'
H A DRISCVInstrInfoF.td92 // Describes a combination of predicates from F/D/Zfh/Zfhmin or
95 // type may be unset for combinations of predicates like Zfh+D.
H A DRISCVISelLowering.cpp2342 // Use f32 to pass f16 if it is legal and Zfh/Zfhmin is not enabled. in getRegisterTypeForCallingConv()
2359 // Use f32 to pass f16 if it is legal and Zfh/Zfhmin is not enabled. in getNumRegistersForCallingConv()
2918 // For bf16 or for f16 in absense of Zfh, promote to f32, then saturate in lowerFP_TO_INT_SAT()
5156 // If we don't have Zfh, we need to use an integer scalar load. in lowerVECTOR_SHUFFLE()
12210 // In absense of Zfh, promote f16 to f32, then convert. in ReplaceNodeResults()
12227 // For bf16, or f16 in absense of Zfh, promote [b]f16 to f32 and then in ReplaceNodeResults()
12270 // In absense of Zfh, promote f16 to f32, then convert. in ReplaceNodeResults()
15301 // Don't do this for f16 with Zfhmin and not Zfh. in performFP_TO_INTCombine()
15410 // Don't do this for f16 with Zfhmin and not Zfh. in performFP_TO_INT_SATCombine()
/freebsd/contrib/xz/src/liblzma/simple/
H A Driscv.c37 RV32I and RV64I, possibly combined with extensions C, Zfh, F, D,
116 Zfh, F, D, and Q:
119 * Zfh: FLH, FSH
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DRISCV.cpp353 if (ISAInfo->hasExtension("zfh") || ISAInfo->hasExtension("zhinx")) in handleTargetFeatures()
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DHost.cpp2091 Features["zfh"] = ExtMask & (1 << 27); // RISCV_HWPROBE_EXT_ZFH in getHostCPUFeatures()