Searched refs:is_cancellable (Results 1 – 1 of 1) sorted by relevance
1743 template <bool cancellable> struct is_cancellable {}; struct1744 template <> struct is_cancellable<true> { struct1746 is_cancellable() : value(false) {} in is_cancellable() function1747 is_cancellable(bool b) : value(b) {} in is_cancellable() argument1748 is_cancellable &operator=(bool b) { in operator =() argument1754 template <> struct is_cancellable<false> { struct1755 is_cancellable &operator=(bool b) { return *this; } in operator =() argument1777 is_cancellable<cancellable> cancelled; in __kmp_barrier_template() argument