Home
last modified time | relevance | path

Searched defs:test_allocator (Results 1 – 2 of 2) sorted by relevance

/external/gemmlowp/test/
Dtest_allocator.cc20 void test_allocator(Allocator* a, int max_array_size) { in test_allocator() function
42 void test_allocator() { in test_allocator() function
/external/libcxx/test/support/
Dtest_allocator.h77 template <class U> friend class test_allocator; variable
90 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} in test_allocator() function
93 test_allocator(const test_allocator& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
101 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
112 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
229 template <class U> friend class test_allocator; variable
240 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {} in test_allocator() function
242 test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function
244 template <class U> test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function