HomeSort by relevance Sort by last modified time
    Searched refs:UniqInt (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/lib/gtl/
flatset_test.cc 534 typedef std::unique_ptr<int> UniqInt;
535 static UniqInt MakeUniq(int i) { return UniqInt(new int(i)); }
538 size_t operator()(const UniqInt& p) const { return *p; }
541 bool operator()(const UniqInt& a, const UniqInt& b) const { return *a == *b; }
543 typedef FlatSet<UniqInt, HashUniq, EqUniq> UniqSet;
flatmap_test.cc 634 typedef std::unique_ptr<int> UniqInt;
635 static UniqInt MakeUniq(int i) { return UniqInt(new int(i)); }
638 size_t operator()(const UniqInt& p) const { return *p; }
641 bool operator()(const UniqInt& a, const UniqInt& b) const { return *a == *b; }
643 typedef FlatMap<UniqInt, UniqInt, HashUniq, EqUniq> UniqMap;

Completed in 79 milliseconds