/external/eigen/Eigen/src/Core/arch/NEON/ |
Complex.h | 1 // This file is part of Eigen, a lightweight C++ template library 28 template<> struct packet_traits<std::complex<float> > : default_packet_traits 49 template<> struct unpacket_traits<Packet2cf> { typedef std::complex<float> type; enum {size=2}; }; 51 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) 59 template<> EIGEN_STRONG_INLINE Packet2cf padd<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(padd<Packet4f>(a.v,b.v)); } 60 template<> EIGEN_STRONG_INLINE Packet2cf psub<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(psub<Packet4f>(a.v,b.v)); } 61 template<> EIGEN_STRONG_INLINE Packet2cf pnegate(const Packet2cf& a) { return Packet2cf(pnegate<Packet4f>(a.v)); } 62 template<> EIGEN_STRONG_INLINE Packet2cf pconj(const Packet2cf& a) 68 template<> EIGEN_STRONG_INLINE Packet2cf pmul<Packet2cf>(const Packet2cf& a, const Packet2cf& b) 88 template<> EIGEN_STRONG_INLINE Packet2cf pand <Packet2cf>(const Packet2cf& a, const Packet2cf& b [all...] |
/external/eigen/doc/ |
TemplateKeyword.dox | 3 /** \page TopicTemplateKeyword The template and typename keywords in C++ 5 There are two uses for the \c template and \c typename keywords in C++. One of them is fairly well known 7 to a template function or a type. This regularly trips up programmers that use the %Eigen library, often 13 \section TopicTemplateKeywordToDefineTemplates Using the template and typename keywords to define templates 15 The \c template and \c typename keywords are routinely used to define templates. This is not the topic of this 17 should illustrate this use of the \c template keyword. 20 template <typename T> 27 We could just as well have written <tt>template <class T></tt>; the keywords \c typename and \c class have the 31 \section TopicTemplateKeywordExample An example showing the second use of the template keyword 33 Let us illustrate the second use of the \c template keyword with an example. Suppose we want to write [all...] |
/external/iptables/iptables/ |
iptables.xslt | 15 <xsl:template match="iptables-rules/table/chain/rule/conditions/*"> 22 </xsl:template> 25 <xsl:template match="iptables-rules/table/chain/rule/actions|table/chain/rule/conditions"> 27 </xsl:template> 29 <xsl:template match="iptables-rules/table/chain/rule/actions/goto"> 33 </xsl:template> 34 <xsl:template match="iptables-rules/table/chain/rule/actions/call"> 38 </xsl:template> 40 <xsl:template match="iptables-rules/table/chain/rule/actions/*"> 44 </xsl:template> [all...] |
/external/parameter-framework/upstream/xmlserializer/ |
XmlElement.cpp | 79 template <> 100 template <typename T> 195 template <> 201 template <> 210 // need for one template instance per value of N. 217 template <typename T> 267 template bool CXmlElement::getAttribute(const std::string &name, std::string &value) const; 268 template bool CXmlElement::getAttribute(const std::string &name, bool &value) const; 269 template bool CXmlElement::getAttribute(const std::string &name, short &value) const; 270 template bool CXmlElement::getAttribute(const std::string &name, unsigned short &value) const [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/ |
exception.hpp | 21 template <class T> 86 template <class Tag,class T> 93 template <> 107 template <> 121 template <> 147 template <class T> 173 template <class> 176 template <> 179 template <> 182 template <> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/ |
for_each_selectors.h | 41 template<typename _It> 51 template<typename _It> 57 template<typename _Op> 67 template<typename _It> 73 template<typename _Op> 83 template<typename _It> 89 template<typename _ValueType> 99 template<typename _It> 105 template<typename _Op> 115 template<typename _It [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/ |
for_each_selectors.h | 41 template<typename _It> 51 template<typename _It> 57 template<typename _Op> 67 template<typename _It> 73 template<typename _Op> 83 template<typename _It> 89 template<typename _ValueType> 99 template<typename _It> 105 template<typename _Op> 115 template<typename _It [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/ |
for_each_selectors.h | 41 template<typename _It> 51 template<typename _It> 57 template<typename _Op> 67 template<typename _It> 73 template<typename _Op> 83 template<typename _It> 89 template<typename _ValueType> 99 template<typename _It> 105 template<typename _Op> 115 template<typename _It [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/ |
for_each_selectors.h | 41 template<typename _It> 51 template<typename _It> 57 template<typename _Op> 67 template<typename _It> 73 template<typename _Op> 83 template<typename _It> 89 template<typename _ValueType> 99 template<typename _It> 105 template<typename _Op> 115 template<typename _It [all...] |
/external/libcxx/include/ |
valarray | 20 template<class T> 120 template <class T> 156 template <class T> 182 template <class T> 208 template <class T> 234 template<class T> void swap(valarray<T>& x, valarray<T>& y) noexcept; 236 template<class T> valarray<T> operator* (const valarray<T>& x, const valarray<T>& y); 237 template<class T> valarray<T> operator* (const valarray<T>& x, const T& y); 238 template<class T> valarray<T> operator* (const T& x, const valarray<T>& y); 240 template<class T> valarray<T> operator/ (const valarray<T>& x, const valarray<T>& y) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
valarray | 20 template<class T> 120 template <class T> 156 template <class T> 182 template <class T> 208 template <class T> 234 template<class T> void swap(valarray<T>& x, valarray<T>& y) noexcept; 236 template<class T> valarray<T> operator* (const valarray<T>& x, const valarray<T>& y); 237 template<class T> valarray<T> operator* (const valarray<T>& x, const T& y); 238 template<class T> valarray<T> operator* (const T& x, const valarray<T>& y); 240 template<class T> valarray<T> operator/ (const valarray<T>& x, const valarray<T>& y) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
valarray | 20 template<class T> 120 template <class T> 156 template <class T> 182 template <class T> 208 template <class T> 234 template<class T> void swap(valarray<T>& x, valarray<T>& y) noexcept; 236 template<class T> valarray<T> operator* (const valarray<T>& x, const valarray<T>& y); 237 template<class T> valarray<T> operator* (const valarray<T>& x, const T& y); 238 template<class T> valarray<T> operator* (const T& x, const valarray<T>& y); 240 template<class T> valarray<T> operator/ (const valarray<T>& x, const valarray<T>& y) [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
partial-ordering.cpp | 5 template<typename ...Types> struct tuple; 7 template<typename Tuple> 12 template<typename Head, typename ...Tail> 17 template<typename Head, typename ...Tail> 22 template<typename Head, typename ...Tail> 34 template<typename T1, typename T2, typename ...Rest> 37 template<typename T1, typename T2> 45 template<typename T1, typename T2, typename ...Rest> 48 template<typename T1, typename T2> 55 template<typename T1, typename T2, typename ...Rest [all...] |
/external/clang/test/CodeGenCXX/ |
2010-07-23-DeclLoc.cpp | 2 // Require the template function declaration refer to the correct filename. 14 template<typename _Tp> class auto_ptr { 34 template <typename _SIZE, typename _ENDIANNESS> class SizeAndEndianness { 42 template <typename SIZE> class TRange { 48 template <typename SIZE, typename T> class TRangeValue : public TRange<SIZE> { 53 template <typename SIZE> class TAddressRelocator {}; 56 template <typename SIZE> class TRawSymbolOwnerData 66 template <typename SIZE_AND_ENDIANNESS> class TExtendedMachOHeader {}; 68 template <typename SIZE_AND_ENDIANNESS> void extract_dwarf_data_from_header(TExtendedMachOHeader<SIZE_AND_ENDIANNESS>& header, 76 template <typename SIZE_AND_ENDIANNESS> CSCppSymbolOwnerData* create_symbol_owner_data_arch_specific(CSCppS (…) [all...] |
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
IncompleteLU.h | 1 // This file is part of Eigen, a lightweight C++ template library 15 template <typename _Scalar> 28 template<typename MatrixType> 37 template<typename MatrixType> 73 template<typename Rhs, typename Dest> 76 x = m_lu.template triangularView<UnitLower>().solve(b); 77 x = m_lu.template triangularView<Upper>().solve(x); 80 template<typename Rhs> inline const internal::solve_retval<IncompleteLU, Rhs> 96 template<typename _MatrixType, typename Rhs> 103 template<typename Dest> void evalTo(Dest& dst) cons [all...] |
/external/google-breakpad/src/google_breakpad/common/ |
minidump_size.h | 30 // minidump_size.h: Provides a C++ template for programmatic access to 44 template<typename T> 54 template<> 60 template<> 66 template<> 72 template<> 78 template<> 84 template<> 90 template<> 99 template<> [all...] |
/external/libxml2/doc/ |
xsa.xsl | 14 <xsl:template match="/"> 31 </xsl:template> 32 <xsl:template match="xhtml:h3"> 33 </xsl:template> 34 <xsl:template match="xhtml:ul"> 38 </xsl:template> 39 <xsl:template match="xhtml:li"> 44 </xsl:template> 45 <xsl:template match="xhtml:a"> 52 </xsl:template> [all...] |
/external/llvm/include/llvm/Support/ |
EndianStream.h | 26 template <endianness endian> struct Writer { 29 template <typename value_type> void write(value_type Val) { 35 template <> 36 template <> 41 template <> 42 template <> 47 template <> 48 template <> 53 template <> 54 template <> [all...] |
/external/vulkan-validation-layers/libs/glm/gtx/ |
multiple.inl | 16 template <bool Signed> 19 template <typename genType> 36 template <> 39 template <typename genType> 55 template <typename genType> 66 template <> 82 template <> 103 template <typename genType> 119 template <> 135 template <> [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/ |
audio_decoder_isac_t_impl.h | 20 template <typename T> 24 template <typename T> 36 template <typename T> 41 template <typename T> 60 template <typename T> 65 template <typename T> 70 template <typename T> 75 template <typename T> 92 template <typename T> 97 template <typename T [all...] |
/frameworks/av/services/audiopolicy/utilities/convert/ |
convert.h | 53 template <typename srcType, typename dstType> 62 template <typename T> 64 template <typename T> 68 template <> 70 template <> 72 template <> 74 template <> 76 template <> 78 template <> 80 template <> [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_iterator.h | 36 template <class _Iterator> 40 template <class _Iterator> 44 template <class _Iterator> 48 template <class _Iterator> 52 template <class _Iterator> 56 template <class _Iterator> 60 template <class _Iterator> 64 template <class _Iterator> 70 template <class _Iterator> 76 template <class _Iterator [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
iter_fold_if_impl.hpp | 15 template< typename Iterator, typename State > 22 template< bool > 25 template< 38 template<> 41 template< 54 template< 65 >::template result_< Iterator,State,ForwardOp, mpl::next<Iterator> > impl_; 71 template< 82 >::template result_< Iterator,State,BackwardOp, identity<Iterator> > impl_; 88 template< [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
stringbuffer.h | 34 template <typename Encoding, typename Allocator = CrtAllocator>
50 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
56 *stack_.template Push<Ch>() = '\0';
58 stack_.template Pop<Ch>(1);
60 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
61 void Pop(size_t count) { stack_.template Pop<Ch>(count); }
65 *stack_.template Push<Ch>() = '\0';
66 stack_.template Pop<Ch>(1);
68 return stack_.template Bottom<Ch>();
86 template<>
[all...] |
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/ |
_iterator.h | 36 template <class _Iterator> 40 template <class _Iterator> 44 template <class _Iterator> 48 template <class _Iterator> 52 template <class _Iterator> 56 template <class _Iterator> 60 template <class _Iterator> 64 template <class _Iterator> 70 template <class _Iterator> 76 template <class _Iterator [all...] |