Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp288 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size()); in LLVMDisasmInstruction() local
289 std::memcpy(OutString, InsnStr.data(), OutputSize); in LLVMDisasmInstruction()
290 OutString[OutputSize] = '\0'; // Terminate string. in LLVMDisasmInstruction()
/openbsd-src/gnu/llvm/llvm/lib/Demangle/
H A DRustDemangle.cpp1109 size_t OutputSize = Output.getCurrentPosition(); in decodePunycode() local
1185 size_t NumPoints = (Output.getCurrentPosition() - OutputSize) / 4 + 1; in decodePunycode()
1197 Output.insert(OutputSize + I * 4, UTF8, 4); in decodePunycode()
1200 removeNullBytes(Output, OutputSize); in decodePunycode()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1993 int OutputSize = (int)DestType->getScalarSizeInBits(); in foldItoFPtoI() local
1994 if (OutputSize > OpI->getType()->getFPMantissaWidth()) in foldItoFPtoI()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14442 int OutputSize = N->getValueType(0).getScalarSizeInBits(); in combineBVOfVecSExt() local
14443 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
14445 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
14447 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
14449 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
14451 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16336 unsigned OutputSize = (int)VT.getScalarSizeInBits(); in FoldIntToFPToInt() local
16337 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()