Searched refs:CopyArray (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | copy.cpp | 43 CopyArray(toDesc, fromDesc, terminator); in CopyElement() 51 void CopyArray( in CopyArray() function
|
| H A D | copy.h | 25 void CopyArray(const Descriptor &to, const Descriptor &from, Terminator &);
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-internal.h | 1001 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);
|