Searched refs:copyMax (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dfiles.cpp124 lword copyMax = end-begin; local
125 size_t blockedBytes = const_cast<FileStore *>(this)->TransferTo2(target, copyMax, channel, blocking);
126 begin += copyMax;
H A Dqueue.cpp60 inline size_t Peek(byte *target, size_t copyMax) const
62 size_t len = STDMIN(copyMax, m_tail-m_head);
74 inline size_t CopyTo(BufferedTransformation &target, size_t copyMax, const std::string &channel=DEFAULT_CHANNEL) const argument
76 size_t len = STDMIN(copyMax, m_tail-m_head);
H A Dcryptlib.h919 //! copy copyMax bytes of the buffered output to target as input
920 lword CopyTo(BufferedTransformation &target, lword copyMax=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL) const argument
921 {return CopyRangeTo(target, 0, copyMax, channel);}
923 //! copy copyMax bytes of the buffered output, starting at position (relative to current position), to target as input
924 lword CopyRangeTo(BufferedTransformation &target, lword position, lword copyMax=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL) const argument
925 {lword i = position; CopyRangeTo2(target, i, i+copyMax, channel); return i-position;}

Completed in 110 milliseconds