/external/llvm/test/Transforms/PhaseOrdering/ |
D | 2010-03-22-empty-baseclass.ll | 6 %"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… 89 …boost::details::compressed_pair_imp<empty_t,int,1>"*, %"struct.boost::details::compressed_pair_imp… [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | f.cpp | 62 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/ |
D | asiohiper.cpp | 57 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/ |
D | tree_engine.cpp | 91 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()
|
D | points_classifier.cpp | 167 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/ |
D | glibc-2.X-drd.supp | 283 # 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/ |
D | boost_thread.cpp | 11 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/ |
D | throw_error.ipp | 8 // 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/ |
D | move_convert07.fail.cpp | 44 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()
|
D | move_convert08.fail.cpp | 46 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()
|
D | move_convert09.fail.cpp | 49 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()
|
D | move_convert04.fail.cpp | 46 const boost::unique_ptr<B[]> s(new B); in main() 48 boost::unique_ptr<A[]> s2; in main()
|
D | move_convert02.fail.cpp | 48 boost::unique_ptr<B[], Deleter<B> > s(new B); in main() 50 boost::unique_ptr<A[], Deleter<A> > s2; in main()
|
D | move_convert05.fail.cpp | 48 const boost::unique_ptr<B[], Deleter<B> > s(new B); in main() 50 boost::unique_ptr<A[], Deleter<A> > s2; in main()
|
D | move_convert06.fail.cpp | 49 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()
|
D | move_convert03.fail.cpp | 49 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/ |
D | overload-candidates.cpp | 46 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/ |
D | cxx11-crashes.cpp | 16 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/ |
D | buffer_sequence_adapter.hpp | 230 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/ |
D | ublas_interface.hh | 28 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/ |
D | cf2blues.c | 411 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/ |
D | cf2blues.c | 411 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/ |
D | transition_guide.markdown | 128 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/ |
D | test.py | 153 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/ |
D | io.inl | 11 // #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);
|