Home
last modified time | relevance | path

Searched refs:a_array (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/serialization/test/
Dtest_array.cpp37 const std::array<T, 10> a_array = {{T(),T(),T(),T(),T(),T(),T(),T(),T(),T()}}; in test_std_array() local
41 oa << boost::serialization::make_nvp("a_array", a_array); in test_std_array()
50 BOOST_CHECK(std::equal(a_array.begin(), a_array.end(), a_array1.begin())); in test_std_array()
Dtest_boost_array.cpp37 const boost::array<T,10> a_array = {{T(),T(),T(),T(),T(),T(),T(),T(),T(),T()}}; in test_boost_array() local
41 oa << boost::serialization::make_nvp("a_array", a_array); in test_boost_array()
51 BOOST_CHECK(std::equal(a_array.begin(), a_array.end(), a_array1.begin())); in test_boost_array()
Dtest_native_array.cpp36 const T a_array[10]={T(),T(),T(),T(),T(),T(),T(),T(),T(),T()}; in test_native_array() local
42 oa << boost::serialization::make_nvp("a_array", a_array); in test_native_array()
57 BOOST_CHECK(std::equal(& a_array[0], & a_array[10], & a_array1[0])); in test_native_array()
/third_party/python/Python/
Dhamt.c316 PyHamtNode *a_array[HAMT_ARRAY_NODE_SIZE]; member
383 if (node->a_array[i] != NULL) { in _hamt_node_array_validate()
845 new_node->a_array[jdx] = hamt_node_assoc( in hamt_node_bitmap_assoc()
847 if (new_node->a_array[jdx] == NULL) { in hamt_node_bitmap_assoc()
859 assert(new_node->a_array[i] == NULL); in hamt_node_bitmap_assoc()
862 new_node->a_array[i] = in hamt_node_bitmap_assoc()
864 Py_INCREF(new_node->a_array[i]); in hamt_node_bitmap_assoc()
872 new_node->a_array[i] = hamt_node_assoc( in hamt_node_bitmap_assoc()
879 if (new_node->a_array[i] == NULL) { in hamt_node_bitmap_assoc()
1634 node->a_array[i] = NULL; in hamt_node_array_new()
[all …]
/third_party/boost/libs/serialization/performance/
Dpeformance_array.cpp68 const T a_array[10]={T(),T(),T(),T(),T(),T(),T(),T(),T(),T()}; in test_array() local
72 oa << boost::serialization::make_nvp("a_array", a_array); in test_array()
81 BOOST_CHECK(Compare(a_array, a_array1)); in test_array()