Searched refs:m_nodeSize (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dqueue.cpp135 m_head = m_tail = new ByteQueueNode(m_nodeSize);
141 m_nodeSize = m_autoNodeSize ? 256 : nodeSize;
153 m_nodeSize = copy.m_nodeSize;
183 m_nodeSize = parameters.GetIntValueWithDefault("NodeSize", 256);
226 if (m_autoNodeSize && m_nodeSize < s_maxAutoNodeSize)
229 m_nodeSize *= 2;
231 while (m_nodeSize < length && m_nodeSize < s_maxAutoNodeSize);
232 m_tail->next = new ByteQueueNode(STDMAX(m_nodeSize, lengt
[all...]
H A Dqueue.h103 size_t m_nodeSize; member in class:ByteQueue

Completed in 20 milliseconds