Home
last modified time | relevance | path

Searched refs:v_double (Results 1 – 3 of 3) sorted by relevance

/external/dbus/test/
Dbreak-loader.c53 double v_double; in random_int_in_range() local
62 v_double = ((double)start) + (((double)rand ())/RAND_MAX) * gap; in random_int_in_range()
63 if (v_double < 0.0) in random_int_in_range()
64 v = (v_double - 0.5); in random_int_in_range()
66 v = (v_double + 0.5); in random_int_in_range()
/external/opencv3/modules/java/generator/src/cpp/
Dconverters.cpp26 void Mat_to_vector_double(Mat& mat, std::vector<double>& v_double) in Mat_to_vector_double() argument
28 v_double.clear(); in Mat_to_vector_double()
30 v_double = (std::vector<double>) mat; in Mat_to_vector_double()
33 void vector_double_to_Mat(std::vector<double>& v_double, Mat& mat) in vector_double_to_Mat() argument
35 mat = Mat(v_double, true); in vector_double_to_Mat()
Dconverters.h7 void Mat_to_vector_double(cv::Mat& mat, std::vector<double>& v_double);
8 void vector_double_to_Mat(std::vector<double>& v_double, cv::Mat& mat);