Searched refs:OutputSize (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp288 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size()); local
289 std::memcpy(OutString, InsnStr.data(), OutputSize);
290 OutString[OutputSize] = '\0'; // Terminate string.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1735 int OutputSize = (int)FITy->getScalarSizeInBits() - IsOutputSigned; local
1736 int ActualSize = std::min(InputSize, OutputSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp13248 int OutputSize = N->getValueType(0).getScalarSizeInBits(); local
13249 if (InputSize + OutputSize == 40)
13251 else if (InputSize + OutputSize == 72)
13253 else if (InputSize + OutputSize == 48)
13255 else if (InputSize + OutputSize == 80)
13257 else if (InputSize + OutputSize == 96)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13175 unsigned OutputSize = (int)VT.getScalarSizeInBits() - IsOutputSigned; local
13176 unsigned ActualSize = std::min(InputSize, OutputSize);

Completed in 160 milliseconds