Searched refs:m_counter (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dcmac.cpp50 m_counter = 0;
66 if (m_counter > 0)
68 unsigned int len = UnsignedMin(blockSize - m_counter, length);
69 xorbuf(m_reg+m_counter, input, len);
72 m_counter += len;
74 if (m_counter == blockSize && length > 0)
77 m_counter = 0;
83 assert(m_counter == 0);
91 assert(m_counter + length <= blockSize);
92 xorbuf(m_reg+m_counter, inpu
[all...]
H A Dcbcmac.cpp13 m_counter = 0;
20 while (m_counter && length)
22 m_reg[m_counter++] ^= *input++;
23 if (m_counter == blockSize)
37 m_reg[m_counter++] ^= *input++;
38 if (m_counter == blockSize)
47 if (m_counter)
57 m_counter = 0;
H A Ddmac.h31 unsigned int m_counter; member in class:DMAC_Base
54 m_counter = 0;
62 m_counter = (unsigned int)((m_counter + length) % T::BLOCKSIZE);
71 byte padByte = byte(T::BLOCKSIZE-m_counter);
77 m_counter = 0; // reset for next message
H A Dbasecode.cpp202 m_counter = 0;
212 if (m_counter == m_groupSize)
215 m_counter = 0;
219 FILTER_OUTPUT2(2, len = STDMIN(length-m_inputPosition, m_groupSize-m_counter),
222 m_counter += len;
231 m_counter = 0;
H A Dcbcmac.h26 unsigned int m_counter; member in class:CBC_MAC_Base
H A Dcmac.h30 unsigned int m_counter; member in class:CMAC_Base
H A Dbasecode.h81 size_t m_groupSize, m_counter; member in class:Grouper
H A Dinteger.cpp3246 : m_counter(0), m_counterAndSeed(seedSize + 4)
3253 PutWord(false, BIG_ENDIAN_ORDER, m_counterAndSeed, m_counter);
3254 ++m_counter;
3259 word32 m_counter;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DStatTree.h983 m_counter(counter),
1004 const CStatTreeItemUlDlCounter *m_counter; member in class:CStatTreeItemAverageSpeed
H A DStatTree.cpp504 return CFormat(wxGetTranslation(m_label)) % CastItoSpeed((*m_counter)/time);
515 CECTag value(EC_TAG_STAT_NODE_VALUE, (uint32)((*m_counter)/time));

Completed in 81 milliseconds