reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/xray/xray_function_call_trie.h
  161     Allocators(const Allocators &) = delete;
  162     Allocators &operator=(const Allocators &) = delete;
  162     Allocators &operator=(const Allocators &) = delete;
  211     Allocators(Allocators &&O) XRAY_NEVER_INSTRUMENT {
  240     Allocators &operator=(Allocators &&O) XRAY_NEVER_INSTRUMENT {
  240     Allocators &operator=(Allocators &&O) XRAY_NEVER_INSTRUMENT {
  306   static Allocators InitAllocators() XRAY_NEVER_INSTRUMENT {
  310   static Allocators InitAllocatorsCustom(uptr Max) XRAY_NEVER_INSTRUMENT {
  311     Allocators A(Max);
  315   static Allocators
  316   InitAllocatorsFromBuffers(Allocators::Buffers &Bufs) XRAY_NEVER_INSTRUMENT {
  317     Allocators A(Bufs);
  329   explicit FunctionCallTrie(const Allocators &A) XRAY_NEVER_INSTRUMENT
projects/compiler-rt/lib/xray/xray_profile_collector.cpp
   61   FunctionCallTrie::Allocators::Buffers Buffers;
   62   FunctionCallTrie::Allocators Allocators;
  109           FunctionCallTrie::Allocators &&A,
  110           FunctionCallTrie::Allocators::Buffers &&B,
projects/compiler-rt/lib/xray/xray_profile_collector.h
   40           FunctionCallTrie::Allocators &&A,
   41           FunctionCallTrie::Allocators::Buffers &&B, tid_t TId);
projects/compiler-rt/lib/xray/xray_profiling.cpp
   55 thread_local FunctionCallTrie::Allocators::Buffers ThreadBuffers;
   56 thread_local std::aligned_storage<sizeof(FunctionCallTrie::Allocators),
   57                                   alignof(FunctionCallTrie::Allocators)>::type
  128     new (&AllocatorsStorage) FunctionCallTrie::Allocators(
projects/compiler-rt/lib/xray/xray_segmented_array.h
  353   T *AppendEmplace(Args &&... args) XRAY_NEVER_INSTRUMENT {
  377     new (AlignedOffset) T{std::forward<Args>(args)...};
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };