Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:Swap

475 // Don't use std::min, std::max or std::swap, to minimize dependency
489 template<class T> void Swap(T& a, T& b) {
584 void swap(InternalMmapVectorNoCtor &other) {
585 Swap(data_, other.data_);
586 Swap(capacity_bytes_, other.capacity_bytes_);
587 Swap(size_, other.size_);
671 Swap(v[j], v[p]);
676 // Stage 2: swap largest element with the last one,
679 Swap(v[0], v[i]);
690 Swap(v[j], v[max_ind]);