Lines Matching refs:YourTable
795 using YourTable = oneapi::tbb::concurrent_hash_map<MyKey, MyData, YourHashCompare>; typedef
797 std::atomic<YourTable::size_type> InsertEraseCount[IE_SIZE];
800 static void apply( YourTable& table, int i ) { in apply()
808 YourTable::accessor res; in apply()
812 YourTable::const_accessor res; in apply()
821 static void apply( YourTable& table, int i ) { in apply()
822 YourTable::accessor a1, a2; in apply()
833 YourTable& table;
834 FakeExclusive(utils::SpinBarrier& b, YourTable&t) : barrier(b), table(t) {} in FakeExclusive()
837 YourTable::const_accessor real_ca; in operator ()()
844 YourTable::accessor fake_ca; in operator ()()
845 const YourTable &const_table = table; in operator ()()
945 YourTable ie_table; in TestInsertFindErase()
948 DoConcurrentOperations<InsertErase,YourTable>(ie_table,n/2,"insert_erase",nthread); in TestInsertFindErase()
952 DoConcurrentOperations<InnerInsert, YourTable>(ie_table,2000,"inner insert",nthread); in TestInsertFindErase()