Searched refs:small_ptr (Results 1 – 3 of 3) sorted by relevance
/third_party/abseil-cpp/absl/container/internal/ |
D | inlined_vector.h | 833 Storage* small_ptr = this; variable 835 if (small_ptr->GetSize() > large_ptr->GetSize()) swap(small_ptr, large_ptr); 837 for (size_type i = 0; i < small_ptr->GetSize(); ++i) { 838 swap(small_ptr->GetInlinedData()[i], large_ptr->GetInlinedData()[i]); 842 MoveIterator(large_ptr->GetInlinedData() + small_ptr->GetSize())); 846 small_ptr->GetInlinedData() + small_ptr->GetSize(), &move_values, 847 large_ptr->GetSize() - small_ptr->GetSize()); 851 large_ptr->GetInlinedData() + small_ptr->GetSize(), 852 large_ptr->GetSize() - small_ptr->GetSize());
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | inlined_vector.h | 904 Storage* small_ptr = this; variable 906 if (small_ptr->GetSize() > large_ptr->GetSize()) swap(small_ptr, large_ptr); 908 for (size_type i = 0; i < small_ptr->GetSize(); ++i) { 909 swap(small_ptr->GetInlinedData()[i], large_ptr->GetInlinedData()[i]); 913 MoveIterator(large_ptr->GetInlinedData() + small_ptr->GetSize())); 917 small_ptr->GetInlinedData() + small_ptr->GetSize(), &move_values, 918 large_ptr->GetSize() - small_ptr->GetSize()); 922 large_ptr->GetInlinedData() + small_ptr->GetSize(), 923 large_ptr->GetSize() - small_ptr->GetSize());
|
/third_party/grpc/test/core/slice/ |
D | slice_test.cc | 302 char* small_ptr = strdup(kSmallStr); in test_moved_string_slice() local 304 grpc_slice_from_moved_string(grpc_core::UniquePtr<char>(small_ptr)); in test_moved_string_slice() 307 reinterpret_cast<uint8_t*>(small_ptr)); in test_moved_string_slice()
|