Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/state_trackers/clover/util/
Dlazy.hpp73 class strict_lazy : public basic_lazy<T> { class
76 strict_lazy(S &&x) : x(std::forward<S>(x)) { in strict_lazy() function in clover::detail::strict_lazy
81 return new strict_lazy(*this); in clone()
110 lazy(T x) : obj(new detail::strict_lazy<T>(x)) { in lazy()