Home
last modified time | relevance | path

Searched refs:ResultType (Results 1 – 25 of 31) sorted by relevance

12

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Ddist.h109 typedef typename Accumulator<T>::Type ResultType;
112ResultType operator()(Iterator1 a, Iterator2 b, size_t size, ResultType /*worst_dist*/ = -1) const
114 ResultType result = ResultType();
115 ResultType diff;
124 inline ResultType accum_dist(const U& a, const V& b, int) const
142 typedef typename Accumulator<T>::Type ResultType;
154 ResultType operator()(Iterator1 a, Iterator2 b, size_t size, ResultType worst_dist = -1) const
156 ResultType result = ResultType();
157 ResultType diff0, diff1, diff2, diff3;
163 diff0 = (ResultType)(a[0] - b[0]);
[all …]
H A Dindex_testing.h64 typename Distance::ResultType computeDistanceRaport(const Matrix<typename Distance::ElementType>& i… in computeDistanceRaport()
67 typedef typename Distance::ResultType DistanceType; in computeDistanceRaport()
88 … float& time, typename Distance::ResultType& dist, const Distance& distance, int skipMatches) in search_with_ground_truth()
90 typedef typename Distance::ResultType DistanceType; in search_with_ground_truth()
141 typedef typename Distance::ResultType DistanceType;
158 typedef typename Distance::ResultType DistanceType;
231 typedef typename Distance::ResultType DistanceType;
H A Dflann_base.hpp106 typedef typename Distance::ResultType DistanceType;
284 …nst Matrix<typename Distance::ElementType>& points, Matrix<typename Distance::ResultType>& centers, in hierarchicalClustering()
H A Dlinear_index.h54 typedef typename Distance::ResultType DistanceType;
H A Dground_truth.h45 typedef typename Distance::ResultType DistanceType;
H A Dcomposite_index.h75 typedef typename Distance::ResultType DistanceType;
H A Dnn_index.h49 typedef typename Distance::ResultType DistanceType;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/formulas/
H A Dflattening.hpp27 template <typename ResultType, typename Geometry, typename Tag = typename tag<Geometry>::type>
32 template <typename ResultType, typename Geometry>
33 struct flattening<ResultType, Geometry, srs_sphere_tag>
35 static inline ResultType apply(Geometry const& /*geometry*/) in apply()
37 return ResultType(0); in apply()
41 template <typename ResultType, typename Geometry>
42 struct flattening<ResultType, Geometry, srs_spheroid_tag>
44 static inline ResultType apply(Geometry const& geometry) in apply()
47 return ResultType(get_radius<0>(geometry) - get_radius<2>(geometry)) in apply()
48 / ResultType(get_radius<0>(geometry)); in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Ddata_driven_property_evaluator.hpp12 using ResultType = PossiblyEvaluatedPropertyValue<T>; typedef in mbgl::DataDrivenPropertyEvaluator
18 ResultType operator()(const style::Undefined&) const { in operator ()()
19 return ResultType(defaultValue); in operator ()()
22 ResultType operator()(const T& constant) const { in operator ()()
23 return ResultType(constant); in operator ()()
26 ResultType operator()(const style::PropertyExpression<T>& expression) const { in operator ()()
30 return ResultType(returnExpression); in operator ()()
32 return ResultType(expression.evaluate(parameters.z)); in operator ()()
34 return ResultType(expression.evaluate(floor(parameters.z))); in operator ()()
H A Dproperty_evaluator.hpp11 using ResultType = T; typedef in mbgl::PropertyEvaluator
H A Dcross_faded_property_evaluator.hpp22 using ResultType = Faded<T>; typedef in mbgl::CrossFadedPropertyEvaluator
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/actor/
H A Dmessage.hpp42 template <class ResultType, class Object, class MemberFn, class ArgsTuple>
45 …AskMessageImpl(std::promise<ResultType> promise_, Object& object_, MemberFn memberFn_, ArgsTuple a… in AskMessageImpl()
57 ResultType ask(std::index_sequence<I...>) { in ask()
64 std::promise<ResultType> promise;
101 template <class ResultType, class Object, class MemberFn, class... Args>
102 std::unique_ptr<Message> makeMessage(std::promise<ResultType>&& promise, Object& object, MemberFn m… in makeMessage()
104 …return std::make_unique<AskMessageImpl<ResultType, Object, MemberFn, decltype(tuple)>>(std::move(p… in makeMessage()
H A Dactor_ref.hpp41 using ResultType = typename std::result_of<decltype(fn)(Object, Args...)>::type; in ask() typedef
43 std::promise<ResultType> promise; in ask()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_valid/
H A Dring.hpp87 template <typename ResultType, bool IsInteriorRing /* false */>
90 typedef std::greater<ResultType> type;
93 template <typename ResultType>
94 struct ring_area_predicate<ResultType, true>
96 typedef std::less<ResultType> type;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplacesearchresult_p.h67 #define Q_DEFINE_SEARCHRESULT_PRIVATE_HELPER(Class, ResultType) \ argument
69 virtual QPlaceSearchResult::SearchResultType type() const override {return ResultType;} \
72 if (other.type() == ResultType) \
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/
H A Dfeatures2d.hpp782 typedef typename Accumulator<T>::Type ResultType; typedef
784 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
786 return normL2Sqr<ValueType, ResultType>(a, b, size); in operator ()()
798 typedef typename Accumulator<T>::Type ResultType; typedef
800 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
802 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size)); in operator ()()
814 typedef typename Accumulator<T>::Type ResultType; typedef
816 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
818 return normL1<ValueType, ResultType>(a, b, size); in operator ()()
H A Dflann.hpp112 typedef typename Distance::ResultType DistanceType;
345 typedef typename L2<T>::ResultType DistanceType;
492 typedef typename Distance::ResultType DistanceType; in hierarchicalClustering()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/
H A Dfeatures2d.hpp782 typedef typename Accumulator<T>::Type ResultType; typedef
784 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
786 return normL2Sqr<ValueType, ResultType>(a, b, size); in operator ()()
798 typedef typename Accumulator<T>::Type ResultType; typedef
800 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
802 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size)); in operator ()()
814 typedef typename Accumulator<T>::Type ResultType; typedef
816 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
818 return normL1<ValueType, ResultType>(a, b, size); in operator ()()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/
H A Dfeatures2d.hpp782 typedef typename Accumulator<T>::Type ResultType; typedef
784 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
786 return normL2Sqr<ValueType, ResultType>(a, b, size); in operator ()()
798 typedef typename Accumulator<T>::Type ResultType; typedef
800 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
802 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size)); in operator ()()
814 typedef typename Accumulator<T>::Type ResultType; typedef
816 ResultType operator()( const T* a, const T* b, int size ) const in operator ()()
818 return normL1<ValueType, ResultType>(a, b, size); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/variant/1.1.4/include/mapbox/
H A Dvariant.hpp973 template <typename ResultType, typename T>
974 auto get(T& var)->decltype(var.template get<ResultType>()) in get()
976 return var.template get<ResultType>(); in get()
980 template <typename ResultType, typename T>
981 ResultType& get_unchecked(T& var) in get_unchecked()
983 return var.template get_unchecked<ResultType>(); in get_unchecked()
987 template <typename ResultType, typename T>
988 auto get(T const& var)->decltype(var.template get<ResultType>()) in get()
990 return var.template get<ResultType>(); in get()
994 template <typename ResultType, typename T>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/geographic/
H A Dside.hpp114 template <typename ResultType,
119 static inline ResultType azimuth(Point1 const& point1, Point2 const& point2, in azimuth()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/
H A Dintersection.hpp208 template <typename D, typename W, typename ResultType>
212 ResultType& d, ResultType& da) in cramers_rule()
215 d = geometry::detail::determinant<ResultType>(dx_a, dy_a, dx_b, dy_b); in cramers_rule()
216 da = geometry::detail::determinant<ResultType>(dx_b, dy_b, wx, wy); in cramers_rule()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dbase.hpp435 typedef int ResultType; typedef
439 ResultType operator()( const unsigned char* a, const unsigned char* b, int size ) const;
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dbase.hpp435 typedef int ResultType; typedef
439 ResultType operator()( const unsigned char* a, const unsigned char* b, int size ) const;
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dbase.hpp435 typedef int ResultType; typedef
439 ResultType operator()( const unsigned char* a, const unsigned char* b, int size ) const;

12