Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp289 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size()); in LLVMDisasmInstruction()
290 std::memcpy(OutString, InsnStr.data(), OutputSize); in LLVMDisasmInstruction()
291 OutString[OutputSize] = '\0'; // Terminate string. in LLVMDisasmInstruction()
288 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size()); LLVMDisasmInstruction() local
/freebsd/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/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp360 size_t OutputSize = SigOutputElements.Stride * OutputCount; in parse() local
361 SigOutputElements.Data = Data.substr(Current - Data.begin(), OutputSize); in parse()
362 Current += OutputSize; in parse()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1936 int OutputSize = (int)DestType->getScalarSizeInBits(); in foldItoFPtoI() local
1937 if (OutputSize > OpI->getType()->getFPMantissaWidth()) in foldItoFPtoI()
/freebsd/sys/contrib/zstd/programs/
H A Dzstd.1.md436 **Output Format:** CompressionLevel#Filename : IntputSize -> OutputSize (CompressionRatio), Compres…
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14960 int OutputSize = N->getValueType(0).getScalarSizeInBits(); in combineBVOfVecSExt() local
14961 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
14963 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
14965 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
14967 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
14969 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp17831 unsigned OutputSize = (int)VT.getScalarSizeInBits(); in FoldIntToFPToInt() local
17832 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()