Home
last modified time | relevance | path

Searched refs:OutputSize (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpmac_common.txt23 OutputSize = 16
32 OutputSize = 16
51 OutputSize = 20
59 OutputSize = 20
75 OutputSize = 28
95 OutputSize = 32
115 OutputSize = 48
135 OutputSize = 64
159 OutputSize = 28
179 OutputSize = 32
[all …]
H A Devpmac_blake.txt20 OutputSize = 64
33 OutputSize = 64
84 OutputSize = 32
97 OutputSize = 32
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp289 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size()); in LLVMDisasmInstruction() local
290 std::memcpy(OutString, InsnStr.data(), OutputSize); in LLVMDisasmInstruction()
291 OutString[OutputSize] = '\0'; // Terminate string. in LLVMDisasmInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp1106 size_t OutputSize = Output.getCurrentPosition(); in decodePunycode() local
1182 size_t NumPoints = (Output.getCurrentPosition() - OutputSize) / 4 + 1; in decodePunycode()
1194 Output.insert(OutputSize + I * 4, UTF8, 4); in decodePunycode()
1197 removeNullBytes(Output, OutputSize); in decodePunycode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp352 size_t OutputSize = SigOutputElements.Stride * OutputCount; in parse() local
353 SigOutputElements.Data = Data.substr(Current - Data.begin(), OutputSize); in parse()
354 Current += OutputSize; in parse()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1893 int OutputSize = (int)DestType->getScalarSizeInBits(); in foldItoFPtoI() local
1894 if (OutputSize > OpI->getType()->getFPMantissaWidth()) in foldItoFPtoI()
/freebsd-14.2/sys/contrib/zstd/programs/
H A Dzstd.1.md436 **Output Format:** CompressionLevel#Filename : IntputSize -> OutputSize (CompressionRatio), Compres…
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14747 int OutputSize = N->getValueType(0).getScalarSizeInBits(); in combineBVOfVecSExt() local
14748 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
14750 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
14752 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
14754 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
14756 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp17493 unsigned OutputSize = (int)VT.getScalarSizeInBits(); in FoldIntToFPToInt() local
17494 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()