Lines Matching refs:Precomputed

71 class Precomputed;
226 inline Point operator* (const Precomputed &q) const DECAF_NOEXCEPT { return q * (*this); } in operator *()
590 class Precomputed class
592 : protected OwnedOrUnowned<Precomputed,Precomputed_U>
598 inline ~Precomputed() DECAF_NOEXCEPT { clear(); } in ~Precomputed()
611 inline Precomputed ( in Precomputed() function in decaf::Ristretto::Precomputed
613 ) DECAF_NOEXCEPT : OwnedOrUnowned<Precomputed,Precomputed_U>(yours) {} in Precomputed()
618 inline Precomputed &operator=(Precomputed &&it) DECAF_NOEXCEPT { in operator =()
619 OwnedOrUnowned<Precomputed,Precomputed_U>::operator= (it); in operator =()
624 …inline Precomputed(Precomputed &&it) DECAF_NOEXCEPT : OwnedOrUnowned<Precomputed,Precomputed_U>() { in Precomputed() function in decaf::Ristretto::Precomputed
629 inline Precomputed &operator=(const Precomputed &it) DECAF_NOEXCEPT { in operator =()
630 OwnedOrUnowned<Precomputed,Precomputed_U>::operator= (it); in operator =()
638 inline Precomputed &operator=(const Point &it) /*throw(std::bad_alloc)*/ { in operator =()
647 inline Precomputed(const Precomputed &it) /*throw(std::bad_alloc)*/ in Precomputed() function in decaf::Ristretto::Precomputed
648 : OwnedOrUnowned<Precomputed,Precomputed_U>() { *this = it; } in Precomputed()
653 inline explicit Precomputed(const Point &it) /*throw(std::bad_alloc)*/ in Precomputed() function in decaf::Ristretto::Precomputed
654 : OwnedOrUnowned<Precomputed,Precomputed_U>() { *this = it; } in Precomputed()
663 static inline const Precomputed base() DECAF_NOEXCEPT { return Precomputed(); } in base()
667 friend class OwnedOrUnowned<Precomputed,Precomputed_U>;