Home
last modified time | relevance | path

Searched refs:CopyArray (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dcopy.cpp43 CopyArray(toDesc, fromDesc, terminator); in CopyElement()
51 void CopyArray( in CopyArray() function
H A Dcopy.h25 void CopyArray(const Descriptor &to, const Descriptor &from, Terminator &);
/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1001 void CopyArray(const T* from, size_t size, U* to);
1005 inline void CopyArray(const T& from, U* to) { *to = from; }
1009 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1010 internal::CopyArray(from, N, *to);
1017 void CopyArray(const T* from, size_t size, U* to) {
1019 internal::CopyArray(from[i], to + i);
1083 CopyArray(array, a_size, copy);