Home
last modified time | relevance | path

Searched refs:StringTable (Results 1 – 2 of 2) sorted by relevance

/oneTBB/examples/concurrent_hash_map/count_strings/
H A Dcount_strings.cpp79 typedef oneapi::tbb::concurrent_hash_map<MyString, int> StringTable; typedef
83 StringTable& table;
84 Tally(StringTable& table_) : table(table_) {} in Tally()
87 StringTable::accessor a; in operator ()()
97 StringTable table; in CountOccurrences()
105 for (StringTable::iterator i = table.begin(); i != table.end(); ++i) { in CountOccurrences()
240 StringTable table; in main()
/oneTBB/doc/main/tbb_userguide/
H A Dconcurrent_hash_map.rst47 typedef concurrent_hash_map<string,int,MyHashCompare> StringTable;
52 StringTable& table;
53 Tally( StringTable& table_ ) : table(table_) {}
56 StringTable::accessor a;
72 StringTable table;
81 for( StringTable::iterator i=table.begin(); i!=table.end(); ++i )
116 StringTable accessor a;