Searched refs:Accumulator (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/modules/flann/include/opencv2/flann/
H A Ddist.h70 struct Accumulator { typedef T Type; }; struct in namespace:cvflann
72 struct Accumulator<unsigned char> { typedef float Type; }; struct in namespace:cvflann
74 struct Accumulator<unsigned short> { typedef float Type; }; struct in namespace:cvflann
76 struct Accumulator<unsigned int> { typedef float Type; }; struct in namespace:cvflann
78 struct Accumulator<char> { typedef float Type; }; struct in namespace:cvflann
80 struct Accumulator<short> { typedef float Type; }; struct in namespace:cvflann
82 struct Accumulator<int> { typedef float Type; }; struct in namespace:cvflann
109 typedef typename Accumulator<T>::Type ResultType;
142 typedef typename Accumulator<T>::Type ResultType;
207 typedef typename Accumulator<
[all...]
/external/opencv3/modules/features2d/include/opencv2/
H A Dfeatures2d.hpp675 struct CV_EXPORTS Accumulator struct in namespace:cv
680 template<> struct Accumulator<unsigned char> { typedef float Type; }; struct in namespace:cv
681 template<> struct Accumulator<unsigned short> { typedef float Type; }; struct in namespace:cv
682 template<> struct Accumulator<char> { typedef float Type; }; struct in namespace:cv
683 template<> struct Accumulator<short> { typedef float Type; }; struct in namespace:cv
693 typedef typename Accumulator<T>::Type ResultType;
709 typedef typename Accumulator<T>::Type ResultType;
725 typedef typename Accumulator<T>::Type ResultType;
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h49 inline sampleprof_error MergeResult(sampleprof_error &Accumulator, argument
53 if (Accumulator == sampleprof_error::success &&
55 Accumulator = Result;
56 return Accumulator;
H A DInstrProf.h187 inline instrprof_error MergeResult(instrprof_error &Accumulator, argument
191 if (Accumulator == instrprof_error::success &&
193 Accumulator = Result;
194 return Accumulator;
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h186 Value *Accumulator = Builder.CreateAdd(Param, RecursiveReturn); local
187 Builder.CreateRet(Accumulator);
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp5890 std::string Accumulator; local
5893 if (!Accumulator.empty()) {
5895 Accumulator));
5896 Accumulator.clear();
5900 Accumulator += Sel.getNameForSlot(I);
5901 Accumulator += ':';
5903 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));

Completed in 204 milliseconds