Home
last modified time | relevance | path

Searched refs:toCopy (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dcommand.cpp74 std::int64_t toCopy{std::min(rawValueLength, in CopyToDescriptor() local
76 if (toCopy < 0) { in CopyToDescriptor()
80 std::memcpy(value.OffsetElement(offset), rawValue, toCopy); in CopyToDescriptor()
82 if (rawValueLength > toCopy) { in CopyToDescriptor()
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1518 OurCppRunException (const OurCppRunException &toCopy) : in OurCppRunException() argument
1519 std::runtime_error(toCopy) {} in OurCppRunException()
1521 OurCppRunException &operator = (const OurCppRunException &toCopy) { in operator =() argument
1523 std::runtime_error::operator=(toCopy))); in operator =()