Home
last modified time | relevance | path

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

/system/core/libpixelflinger/codeflinger/tinyutils/
DTypeHelpers.h36 template <typename T> struct trait_trivial_copy { enum { value = false }; }; struct
45 template<> struct trait_trivial_copy< T > { enum { value = true }; }; \
51 template<> struct trait_trivial_copy< T > { enum { value = copy }; }; \
60 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
242 struct trait_trivial_copy< key_value_pair_t<K, V> >
/system/core/include/utils/
DTypeHelpers.h35 template <typename T> struct trait_trivial_copy { enum { value = false }; }; argument
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
78 template<> struct trait_trivial_copy< T > { enum { value = true }; };
255 struct trait_trivial_copy< key_value_pair_t<K, V> >