Home
last modified time | relevance | path

Searched refs:a_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codec2/include/
DC2.h228 return ({ wide_type a_(a), b_(b); a_ > b_ ? a_ : b_; });
245 return ({ wide_type a_(a), b_(c2_max(b, c...)); a_ > b_ ? a_ : b_; });
255 wide_type a_(a), b_(b);
256 static_cast<typename c2_types<T, U>::mintype>(a_ < b_ ? a_ : b_);
276 wide_type a_(a), b_(c2_min(b, c...));
277 static_cast<typename c2_types<T, rest_type>::mintype>(a_ < b_ ? a_ : b_);
/frameworks/compile/mclinker/include/mcld/Support/
DCXADemangle.tcc4770 arena<N>& a_; member in mcld::short_alloc
4777 short_alloc(arena<N>& a) noexcept : a_(a) {} in short_alloc()
4780 : a_(a.a_) {} in short_alloc()
4786 return reinterpret_cast<T*>(a_.allocate(n*sizeof(T))); in allocate()
4790 a_.deallocate(reinterpret_cast<char*>(p), n*sizeof(T)); in deallocate()
4806 return N == M && &x.a_ == &y.a_; in operator ==()