Home
last modified time | relevance | path

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

/aosp_15_r20/external/tensorflow/tensorflow/core/lib/gtl/
H A Dflatset_test.cc513 struct CustomCmpKey { struct
514 int64_t a;
515 int64_t b;
516 CustomCmpKey(int64_t v1, int64_t v2) : a(v1), b(v2) {} in CustomCmpKey() argument
517 bool operator==(const CustomCmpKey& x) const { return a == x.a && b == x.b; } in operator ==()
H A Dflatmap_test.cc613 struct CustomCmpKey { struct
614 int64_t a;
615 int64_t b;
616 CustomCmpKey(int64_t v1, int64_t v2) : a(v1), b(v2) {} in CustomCmpKey() function
617 bool operator==(const CustomCmpKey& x) const { return a == x.a && b == x.b; } in operator ==()