Home | History | Annotate | Download | only in protobuf

Lines Matching refs:array_size

228   void operator()(Element to[], const Element from[], int array_size);
828 Element to[], Element from[], int array_size) {
829 CopyArray(to, from, array_size);
834 Element to[], const Element from[], int array_size) {
835 internal::ElementCopier<Element>()(to, from, array_size);
842 Element to[], const Element from[], int array_size) {
843 std::copy(from, from + array_size, to);
848 void operator()(Element to[], const Element from[], int array_size) {
849 memcpy(to, from, array_size * sizeof(Element));