Home
last modified time | relevance | path

Searched refs:boost (Results 1 – 25 of 102) sorted by relevance

12345

/external/llvm/test/Transforms/PhaseOrdering/
D2010-03-22-empty-baseclass.ll6 %"struct.boost::compressed_pair<empty_t,int>" = type { %"struct.boost::details::compressed_pair_imp…
7 %"struct.boost::details::compressed_pair_imp<empty_t,int,1>" = type { i32 }
22 …%x = alloca %"struct.boost::compressed_pair<empty_t,int>" ; <%"struct.boost::compressed_pair<empty…
26 …%3 = call i32* @_ZN5boost15compressed_pairI7empty_tiE6secondEv(%"struct.boost::compressed_pair<emp…
28 …%4 = call %struct.empty_base_t* @_ZN5boost15compressed_pairI7empty_tiE5firstEv(%"struct.boost::com…
31 …%5 = call i32* @_ZN5boost15compressed_pairI7empty_tiE6secondEv(%"struct.boost::compressed_pair<emp…
82 … @_ZN5boost7details19compressed_pair_impI7empty_tiLi1EE6secondEv(%"struct.boost::details::compress…
84 …%this_addr = alloca %"struct.boost::details::compressed_pair_imp<empty_t,int,1>"*, align 8 ; <%"st…
88 …store %"struct.boost::details::compressed_pair_imp<empty_t,int,1>"* %this, %"struct.boost::details…
89boost::details::compressed_pair_imp<empty_t,int,1>"*, %"struct.boost::details::compressed_pair_imp…
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Df.cpp62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2()
67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x) in log2()
72 boost::math::ntl::RR f(const boost::math::ntl::RR& x, int variant) in f()
88 const boost::math::tools::polynomial<boost::math::ntl::RR>& n, in show_extra()
89 const boost::math::tools::polynomial<boost::math::ntl::RR>& d, in show_extra()
90 const boost::math::ntl::RR& x_offset, in show_extra()
91 const boost::math::ntl::RR& y_offset, in show_extra()
/external/curl/docs/examples/
Dasiohiper.cpp57 boost::asio::io_service io_service;
58 boost::asio::deadline_timer timer(io_service);
59 std::map<curl_socket_t, boost::asio::ip::tcp::socket *> socket_map;
77 static void timer_cb(const boost::system::error_code & error, GlobalInfo *g);
90 timer.expires_from_now(boost::posix_time::millisec(timeout_ms)); in multi_timer_cb()
91 timer.async_wait(boost::bind(&timer_cb, _1, g)); in multi_timer_cb()
96 boost::system::error_code error; /*success*/ in multi_timer_cb()
178 static void event_cb(GlobalInfo *g, boost::asio::ip::tcp::socket *tcp_socket, in event_cb()
198 static void timer_cb(const boost::system::error_code & error, GlobalInfo *g) in timer_cb()
227 std::map<curl_socket_t, boost::asio::ip::tcp::socket *>::iterator it = socket_map.find(s); in setsock()
[all …]
/external/opencv3/samples/cpp/
Dtree_engine.cpp91 Ptr<Boost> boost = Boost::create(); in main() local
92 boost->setBoostType(Boost::GENTLE); in main()
93 boost->setWeakCount(100); in main()
94 boost->setWeightTrimRate(0.95); in main()
95 boost->setMaxDepth(2); in main()
96 boost->setUseSurrogates(false); in main()
97 boost->setPriors(Mat()); in main()
98 train_and_print_errs(boost, data); in main()
Dpoints_classifier.cpp167 Ptr<Boost> boost = Boost::create(); in find_decision_boundary_BT() local
168 boost->setBoostType(Boost::DISCRETE); in find_decision_boundary_BT()
169 boost->setWeakCount(100); in find_decision_boundary_BT()
170 boost->setWeightTrimRate(0.95); in find_decision_boundary_BT()
171 boost->setMaxDepth(2); in find_decision_boundary_BT()
172 boost->setUseSurrogates(false); in find_decision_boundary_BT()
173 boost->setPriors(Mat()); in find_decision_boundary_BT()
174 boost->train(prepare_train_data()); in find_decision_boundary_BT()
175 predict_and_paint(boost, imgDst); in find_decision_boundary_BT()
/external/valgrind/
Dglibc-2.X-drd.supp283 # Suppress the races on boost::once_flag::epoch and on
284 # boost::detail::this_thread_epoch. See also the source file
285 # boost/thread/pthread/once.hpp in the Boost source tree
286 # (https://svn.boost.org/trac/boost/browser/trunk/boost/thread/pthread/once.hpp).
288 drd-libboost-boost::call_once<void (*)()>(boost::once_flag&, void (*)())
294 drd-libboost-boost::detail::get_once_per_thread_epoch()
298 # Suppress the race reports on boost::detail::current_thread_tls_key. See also
299 # https://svn.boost.org/trac/boost/ticket/3526 for more information about why
302 drd-libboost-boost::detail::get_current_thread_data()
308 drd-libboost-boost::detail::set_current_thread_data(boost::detail::thread_data_base*)
/external/valgrind/drd/tests/
Dboost_thread.cpp11 static boost::condition s_cva;
12 static boost::mutex s_m;
18 boost::mutex::scoped_lock sl(s_m); in thread_func()
26 boost::mutex::scoped_lock sl(s_m); in main()
27 boost::thread t(thread_func); in main()
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dthrow_error.ipp8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
33 // boostify: non-boost code starts here
34 // boostify: non-boost code ends here
37 // boostify: non-boost code starts here
38 // boostify: non-boost code ends here
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
Dmove_convert07.fail.cpp44 boost::unique_ptr<B[]> s(new B); in main()
46 boost::unique_ptr<A[]> s2(new A); in main()
48 s2 = boost::move(s); in main()
Dmove_convert08.fail.cpp46 boost::unique_ptr<B[], Deleter<B> > s(new B); in main()
48 boost::unique_ptr<A[], Deleter<A> > s2(new A); in main()
50 s2 = (boost::move(s)); in main()
Dmove_convert09.fail.cpp49 boost::unique_ptr<B[], Deleter<B>&> s(new B, db); in main()
52 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da); in main()
53 s2 = boost::move(s); in main()
Dmove_convert04.fail.cpp46 const boost::unique_ptr<B[]> s(new B); in main()
48 boost::unique_ptr<A[]> s2; in main()
Dmove_convert02.fail.cpp48 boost::unique_ptr<B[], Deleter<B> > s(new B); in main()
50 boost::unique_ptr<A[], Deleter<A> > s2; in main()
Dmove_convert05.fail.cpp48 const boost::unique_ptr<B[], Deleter<B> > s(new B); in main()
50 boost::unique_ptr<A[], Deleter<A> > s2; in main()
Dmove_convert06.fail.cpp49 const boost::unique_ptr<B[], Deleter<B>&> s(new B, db); in main()
52 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da); in main()
Dmove_convert03.fail.cpp49 boost::unique_ptr<B[], Deleter<B>&> s(new B, db); in main()
52 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da); in main()
/external/clang/test/SemaTemplate/
Doverload-candidates.cpp46 namespace boost { namespace
50 template<typename T> typename boost::enable_if<sizeof(T) == 4, int>::type if_size_4(); // expected-…
54 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {};
64 …typename boost::enable_if<sizeof(T) == 4, int>::type f(); // expected-error{{no type named 'type' …
/external/clang/test/Analysis/
Dcxx11-crashes.cpp16 namespace boost {namespace filesystem3 { namespace
23 namespace boost namespace
32 namespace fs = boost::filesystem; in radar11487541()
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dbuffer_sequence_adapter.hpp230 class buffer_sequence_adapter<Buffer, boost::array<Elem, 2> >
235 const boost::array<Elem, 2>& buffer_sequence) in buffer_sequence_adapter()
258 static bool all_empty(const boost::array<Elem, 2>& buffer_sequence) in all_empty()
264 static void validate(const boost::array<Elem, 2>& buffer_sequence) in validate()
270 static Buffer first(const boost::array<Elem, 2>& buffer_sequence) in first()
/external/eigen/bench/btl/libs/ublas/
Dublas_interface.hh28 using namespace boost::numeric;
40 …typedef typename boost::numeric::ublas::matrix<real,boost::numeric::ublas::column_major> gene_matr…
41 typedef typename boost::numeric::ublas::vector<real> gene_vector;
/external/freetype/src/cff/
Dcf2blues.c411 blues->boost = cf2_floatToFixed( .6 ) - in cf2_blues_init()
415 if ( blues->boost > 0x7FFF ) in cf2_blues_init()
418 blues->boost = 0x7FFF; in cf2_blues_init()
424 blues->boost = 0; in cf2_blues_init()
436 blues->boost ); in cf2_blues_init()
442 blues->boost ); in cf2_blues_init()
/external/pdfium/third_party/freetype/src/cff/
Dcf2blues.c411 blues->boost = cf2_floatToFixed( .6 ) - in cf2_blues_init()
415 if ( blues->boost > 0x7FFF ) in cf2_blues_init()
418 blues->boost = 0x7FFF; in cf2_blues_init()
424 blues->boost = 0; in cf2_blues_init()
436 blues->boost ); in cf2_blues_init()
442 blues->boost ); in cf2_blues_init()
/external/opencv3/doc/tutorials/introduction/transition_guide/
Dtransition_guide.markdown128 CvBoost boost;
138 boost.train( trainSamples, CV_ROW_SAMPLE, trainClasses, Mat(), Mat(), var_types, Mat(), params );
141 Ptr<Boost> boost = Boost::create();
142 boost->setBoostType(Boost::DISCRETE);
143 boost->setWeakCount(100);
144 boost->setWeightTrimRate(0.95);
145 boost->setMaxDepth(2);
146 boost->setUseSurrogates(false);
147 boost->setPriors(Mat());
148 boost->train(prepare_train_data()); // 'prepare_train_data' returns an instance of ml::TrainData cl…
/external/opencv3/modules/python/test/
Dtest.py153 boost = cv2.ml.Boost_create()
154 boost.getBoostType() # from ml::Boost
155 boost.getMaxDepth() # from ml::DTrees
156 boost.isClassifier() # from ml::StatModel
/external/vulkan-validation-layers/libs/glm/gtx/
Dio.inl11 // #include <boost/io/ios_state.hpp> // boost::io::ios_all_saver
112 // boost::io::ios_all_saver const ias(os);
132 // boost::io::ios_all_saver const ias(os);
150 // boost::io::ios_all_saver const ias(os);
169 // boost::io::ios_all_saver const ias(os);

12345