Lines Matching refs:nIdx3
43 std::ptrdiff_t nIdx3 = aPool.alloc(); in TEST_F() local
46 ASSERT_TRUE(nIdx2 < nIdx3) << "allocator idx order 2"; in TEST_F()
49 aPool.free(nIdx3); in TEST_F()
52 nIdx3 = aPool.alloc(); in TEST_F()
54 ASSERT_TRUE(nIdx1 < nIdx3) << "allocator idx order 1 after fragmentation"; in TEST_F()
55 ASSERT_TRUE(nIdx3 < nIdx2) << "allocator idx order 2 after fragmentation"; in TEST_F()
68 std::ptrdiff_t nIdx3 = aPool.store(2); in TEST_F() local
69 ASSERT_TRUE(aPool.get(nIdx3) == 2) << "allocator value semantics 3"; in TEST_F()
72 aPool.free(nIdx3); in TEST_F()
77 nIdx3 = aPool.store(2); in TEST_F()
78 ASSERT_TRUE(aPool.get(nIdx3) == 2) << "allocator value semantics 3 after fragmentation"; in TEST_F()