• Home
  • Raw
  • Download

Lines Matching refs:algorithm

39         boost::algorithm::hex ( *p,                       std::back_inserter ( one ));  in test_to_hex()
40 boost::algorithm::hex ( arg, std::back_inserter ( two )); in test_to_hex()
41 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex()
49 boost::algorithm::unhex ( argh, std::back_inserter ( two )); in test_to_hex()
50 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
61 boost::algorithm::hex ( *p, std::front_inserter ( one )); in test_to_hex()
62 boost::algorithm::hex ( arg, std::front_inserter ( two )); in test_to_hex()
63 boost::algorithm::hex ( arg.begin (), arg.end (), std::front_inserter ( three )); in test_to_hex()
72 boost::algorithm::unhex ( argh, std::front_inserter ( two )); in test_to_hex()
73 boost::algorithm::unhex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_to_hex()
92 boost::algorithm::unhex ( *p, std::back_inserter ( one )); in test_from_hex_success()
93 boost::algorithm::unhex ( arg, std::back_inserter ( two )); in test_from_hex_success()
94 boost::algorithm::unhex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_from_hex_success()
102 boost::algorithm::hex ( argh, std::back_inserter ( two )); in test_from_hex_success()
103 boost::algorithm::hex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_from_hex_success()
114 boost::algorithm::unhex ( *p, std::front_inserter ( one )); in test_from_hex_success()
115 boost::algorithm::unhex ( arg, std::front_inserter ( two )); in test_from_hex_success()
116 boost::algorithm::unhex ( arg.begin (), arg.end (), std::front_inserter ( three )); in test_from_hex_success()
125 boost::algorithm::hex ( argh, std::front_inserter ( two )); in test_from_hex_success()
126 boost::algorithm::hex ( argh.begin (), argh.end (), std::front_inserter ( three )); in test_from_hex_success()