Home
last modified time | relevance | path

Searched refs:random_value (Results 1 – 25 of 577) sorted by relevance

12345678910>>...24

/dports/math/e-antic/cereal-51cbda5/unittests/
H A Dmultimap.hpp50 auto key = random_value<uint8_t>(gen); in test_multimap()
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
52 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
58 auto key = random_value<int16_t>(gen); in test_multimap()
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
60 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
68 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
74 auto key = random_value<char>(gen); in test_multimap()
75 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
[all …]
H A Dmap.hpp42 size_t id = random_value<size_t>(gen); in test_map()
44 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
49 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
53 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
57 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
61 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
65 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
129 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
130 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
132 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dunordered_multimap.hpp50 auto key = random_value<int>(gen); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
52 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
58 auto key = random_value<int>(gen); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
60 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
68 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
74 auto key = random_value<char>(gen); in test_unordered_multimap()
75 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dpod.hpp40 char const o_char = random_value<char>(gen); in test_pod()
42 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
43 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
44 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
45 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
46 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
47 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
49 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
50 float const o_float = random_value<float>(gen); in test_pod()
51 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/test/external/cereal/unittests/
H A Dmultimap.hpp50 auto key = random_value<uint8_t>(gen); in test_multimap()
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
52 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
58 auto key = random_value<int16_t>(gen); in test_multimap()
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
60 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
68 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
74 auto key = random_value<char>(gen); in test_multimap()
75 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
[all …]
H A Dmap.hpp42 size_t id = random_value<size_t>(gen); in test_map()
44 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
49 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
53 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
57 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
61 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
65 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
129 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
130 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
132 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dunordered_multimap.hpp50 auto key = random_value<int>(gen); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
52 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
58 auto key = random_value<int>(gen); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
60 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
68 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
74 auto key = random_value<char>(gen); in test_unordered_multimap()
75 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dpod.hpp40 char const o_char = random_value<char>(gen); in test_pod()
42 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
43 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
44 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
45 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
46 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
47 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
49 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
50 float const o_float = random_value<float>(gen); in test_pod()
51 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/misc/openmvg/openMVG-2.0/src/dependencies/cereal/unittests/
H A Dmultimap.hpp50 auto key = random_value<uint8_t>(gen); in test_multimap()
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
52 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
58 auto key = random_value<int16_t>(gen); in test_multimap()
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
60 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
68 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
74 auto key = random_value<char>(gen); in test_multimap()
75 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
[all …]
H A Dmap.hpp42 size_t id = random_value<size_t>(gen); in test_map()
44 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
49 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
53 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
57 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
61 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
65 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
129 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
130 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
132 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dunordered_multimap.hpp50 auto key = random_value<int>(gen); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
52 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
58 auto key = random_value<int>(gen); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
60 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
68 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
74 auto key = random_value<char>(gen); in test_unordered_multimap()
75 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dpod.hpp40 char const o_char = random_value<char>(gen); in test_pod()
42 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
43 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
44 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
45 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
46 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
47 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
49 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
50 float const o_float = random_value<float>(gen); in test_pod()
51 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/security/palisade/palisade-release-d76213499af44558170cca6c72c5314755fec23c/third-party/cereal/unittests/
H A Dmultimap.hpp50 auto key = random_value<uint8_t>(gen);
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
52 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
58 auto key = random_value<int16_t>(gen);
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
60 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
68 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
74 auto key = random_value<char>(gen);
75 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }});
[all …]
H A Dmap.hpp42 size_t id = random_value<size_t>(gen); in test_map()
44 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
49 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
53 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
57 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
61 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
65 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
129 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
130 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
132 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dunordered_multimap.hpp50 auto key = random_value<int>(gen); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
52 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
58 auto key = random_value<int>(gen); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
60 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
68 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
74 auto key = random_value<char>(gen); in test_unordered_multimap()
75 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dpod.hpp40 char const o_char = random_value<char>(gen); in test_pod()
42 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
43 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
44 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
45 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
46 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
47 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
49 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
50 float const o_float = random_value<float>(gen); in test_pod()
51 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/devel/cereal/cereal-1.3.0-10-g64f50dbd/unittests/
H A Dmultimap.hpp50 auto key = random_value<uint8_t>(gen); in test_multimap()
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
52 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
58 auto key = random_value<int16_t>(gen); in test_multimap()
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
60 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
68 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
74 auto key = random_value<char>(gen); in test_multimap()
75 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
[all …]
H A Dmap.hpp42 size_t id = random_value<size_t>(gen); in test_map()
44 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
49 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
53 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
57 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
61 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
65 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
129 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
130 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
132 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dunordered_multimap.hpp50 auto key = random_value<int>(gen); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
52 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
58 auto key = random_value<int>(gen); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
60 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
68 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
74 auto key = random_value<char>(gen); in test_unordered_multimap()
75 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dpod.hpp40 char const o_char = random_value<char>(gen); in test_pod()
42 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
43 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
44 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
45 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
46 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
47 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
49 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
50 float const o_float = random_value<float>(gen); in test_pod()
51 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/misc/thrill/thrill-12c5b59bca66df93b66628b3829027bd0f110dd9/extlib/cereal/unittests/
H A Dmultimap.cpp49 auto key = random_value<uint8_t>(gen); in test_multimap()
50 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
51 o_isermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
57 auto key = random_value<int16_t>(gen); in test_multimap()
58 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
59 o_isplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
66 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
67 o_esermultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
73 auto key = random_value<char>(gen); in test_multimap()
74 o_esplmultimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_multimap()
[all …]
H A Dunordered_multimap.cpp49 auto key = random_value<int>(gen); in test_unordered_multimap()
50 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
51 o_iserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
57 auto key = random_value<int>(gen); in test_unordered_multimap()
58 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
59 o_isplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
66 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
67 o_eserunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
73 auto key = random_value<char>(gen); in test_unordered_multimap()
74 o_esplunordered_multimap.insert({key, { random_value<int>(gen), random_value<int>(gen) }}); in test_unordered_multimap()
[all …]
H A Dmap.cpp41 size_t id = random_value<size_t>(gen); in test_map()
43 o_vectormap[id].emplace_back(random_value<int>(gen), random_value<int>(gen)); in test_map()
48 o_podmap.insert({random_value<std::string>(gen), random_value<int>(gen)}); in test_map()
52 … o_isermap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
56 … o_isplmap.insert({random_value<int>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
60 …o_esermap.insert({random_value<uint32_t>(gen), { random_value<int>(gen), random_value<int>(gen) }}… in test_map()
64 … o_esplmap.insert({random_value<char>(gen), { random_value<int>(gen), random_value<int>(gen) }}); in test_map()
128 …o_uniqueptrMap.insert( std::make_pair(random_value<int>(gen), std::unique_ptr<int>( new int( rando… in test_map_memory()
129 …o_sharedptrMap.insert( std::make_pair(random_value<int>(gen), std::make_shared<int>( random_value<… in test_map_memory()
131 …o_uniqueptrMap.emplace( random_value<int>(gen), std::unique_ptr<int>( new int( random_value<int>(g… in test_map_memory()
[all …]
H A Dpod.cpp39 char const o_char = random_value<char>(gen); in test_pod()
41 uint8_t const o_uint8 = random_value<uint8_t>(gen); in test_pod()
42 int8_t const o_int8 = random_value<int8_t>(gen); in test_pod()
43 uint16_t const o_uint16 = random_value<uint16_t>(gen); in test_pod()
44 int16_t const o_int16 = random_value<int16_t>(gen); in test_pod()
45 uint32_t const o_uint32 = random_value<uint32_t>(gen); in test_pod()
46 int32_t const o_int32 = random_value<int32_t>(gen); in test_pod()
48 int64_t const o_int64 = random_value<int64_t>(gen); in test_pod()
49 float const o_float = random_value<float>(gen); in test_pod()
50 double const o_double = random_value<double>(gen); in test_pod()
[all …]
/dports/science/siconos/siconos-4.4.0/externals/numeric_bindings/libs/numeric/bindings/blas/test/
H A Drandom.hpp15 T random_value() { in random_value() function
21 float random_value<float>() {return float(std::rand()) / float(RAND_MAX) - 0.5;} in random_value() function
24 double random_value<double>() {return double(std::rand()) / double(RAND_MAX) - 0.5;} in random_value() function
27 std::complex<float> random_value< std::complex<float> >() {return std::complex<float>(random_value<… in random_value() function
30 std::complex<double> random_value< std::complex<double> >() {return std::complex<double>(random_val… in random_value() function

12345678910>>...24