Searched refs:AttachedTransformation (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dgzip.cpp13 AttachedTransformation()->Put(MAGIC1);
14 AttachedTransformation()->Put(MAGIC2);
15 AttachedTransformation()->Put(DEFLATED);
16 AttachedTransformation()->Put(0); // general flag
17 AttachedTransformation()->PutWord32(0); // time stamp
19 AttachedTransformation()->Put(extra);
20 AttachedTransformation()->Put(GZIP_OS_CODE);
33 AttachedTransformation()->Put(crc, 4);
34 AttachedTransformation()->PutWord32(m_totalLen, LITTLE_ENDIAN_ORDER);
79 AttachedTransformation()
[all...]
H A Dzlib.cpp25 AttachedTransformation()->PutWord16(RoundUpToMultipleOf(cmf*256+flags, 31));
37 AttachedTransformation()->Put(adler32, 4);
77 AttachedTransformation()->Put(inString, length);
H A Dcryptlib.cpp310 const BufferedTransformation *t = AttachedTransformation();
316 BufferedTransformation *t = AttachedTransformation();
323 assert(!AttachedTransformation());
329 assert(!AttachedTransformation());
335 assert(!AttachedTransformation());
381 if (AttachedTransformation())
382 return AttachedTransformation()->MaxRetrievable();
389 if (AttachedTransformation())
390 return AttachedTransformation()->AnyRetrievable();
400 if (AttachedTransformation())
[all...]
H A Dida.cpp215 inputQueues[i].TransferAllTo(*AttachedTransformation(), WordToString(inputChannelIds[i]));
223 m_outputQueues[i].TransferAllTo(*AttachedTransformation(), m_outputChannelIdStrings[i]);
231 AttachedTransformation()->ChannelMessageEnd(m_outputChannelIdStrings[i], GetAutoSignalPropagation()-1);
289 m_outputQueues[0].TransferTo(*AttachedTransformation(), m_outputQueues[0].MaxRetrievable()-4);
291 m_outputQueues[0].TransferTo(*AttachedTransformation());
298 PaddingRemover paddingRemover(new Redirector(*AttachedTransformation()));
303 AttachedTransformation()->MessageEnd(GetAutoSignalPropagation()-1);
356 m_queue.TransferTo(*AttachedTransformation(), m_queue.MaxRetrievable()-4*m_threshold);
358 m_queue.TransferTo(*AttachedTransformation());
365 PaddingRemover paddingRemover(new Redirector(*AttachedTransformation()));
[all...]
H A Dfilters.cpp26 BufferedTransformation * Filter::AttachedTransformation() function in class:Filter
33 const BufferedTransformation *Filter::AttachedTransformation() const function in class:Filter
53 return AttachedTransformation()->CopyRangeTo2(target, begin, end, channel, blocking);
58 return AttachedTransformation()->TransferTo2(target, transferBytes, channel, blocking);
99 AttachedTransformation()->Initialize(parameters, propagation-1);
106 size_t result = AttachedTransformation()->ChannelPutModifiable2(channel, inString, length, messageEnd, blocking);
115 size_t result = AttachedTransformation()->ChannelPut2(channel, inString, length, messageEnd, blocking);
122 if (propagation && AttachedTransformation()->ChannelFlush(channel, hardFlush, propagation-1, blocking))
133 if (propagation && AttachedTransformation()->ChannelMessageSeriesEnd(channel, propagation-1, blocking))
599 byte *space = HelpCreatePutSpace(*AttachedTransformation(), DEFAULT_CHANNE
[all...]
H A Dfilters.h21 BufferedTransformation *AttachedTransformation();
22 const BufferedTransformation *AttachedTransformation() const;
101 {return AttachedTransformation()->CreatePutSpace(size);}
508 {return m_owner.AttachedTransformation()->CreatePutSpace(size);}
510 {return m_owner.AttachedTransformation()->Put2(begin, length, m_passSignal ? messageEnd : 0, blocking);}
512 {return m_owner.AttachedTransformation()->PutModifiable2(begin, length, m_passSignal ? messageEnd : 0, blocking);}
514 {if (m_passSignal) m_owner.AttachedTransformation()->Initialize(parameters, propagation);}
516 {return m_passSignal ? m_owner.AttachedTransformation()->Flush(hardFlush, propagation, blocking) : false;}
518 {return m_passSignal ? m_owner.AttachedTransformation()->MessageSeriesEnd(propagation, blocking) : false;}
521 {return m_owner.AttachedTransformation()
[all...]
H A Dfipsalgt.cpp32 AttachedTransformation()->Put2(begin+last, i-last, GetAutoSignalPropagation(), blocking);
37 AttachedTransformation()->Put2(begin+last, i-last, 0, blocking);
41 AttachedTransformation()->MessageEnd(GetAutoSignalPropagation()-1, blocking);
42 AttachedTransformation()->MessageSeriesEnd(GetAutoSignalPropagation()-1, blocking);
444 AttachedTransformation()->Put((byte *)output.data(), output.size());
471 AttachedTransformation()->Put((byte *)output.data(), output.size());
509 AttachedTransformation()->Put((byte *)output.data(), output.size());
528 AttachedTransformation()->Put((byte *)output.data(), output.size());
547 AttachedTransformation()->Put((byte *)output.data(), output.size());
605 AttachedTransformation()
[all...]
H A Dasn.cpp293 return *AttachedTransformation();
302 AttachedTransformation()->Put(inString, length);
357 AttachedTransformation()->MessageEnd();
362 AttachedTransformation()->MessageEnd();
365 AttachedTransformation()->MessageSeriesEnd();
367 m_queue.TransferAllTo(*AttachedTransformation());
H A Dnetwork.cpp155 RETURN_IF_NONZERO(AttachedTransformation()->Put2(NULL, 0, GetAutoSignalPropagation(), true));
239 + AttachedTransformation()->GetMaxWaitObjectCount();
254 AttachedTransformation()->GetWaitObjects(container, CallStack("NetworkSource::GetWaitObjects() - attachment", &callStack));
265 BufferedTransformation *t = AttachedTransformation();
H A Dzinflate.h115 {AttachedTransformation()->Put(string, length);}
H A Dzdeflate.cpp49 AttachedTransformation()->PutModifiable(m_outputBuffer, m_bytesBuffered);
66 AttachedTransformation()->PutModifiable(m_outputBuffer, m_bytesBuffered);
71 AttachedTransformation()->Put((byte)m_buffer);
633 AttachedTransformation()->PutWord16(m_blockLength, LITTLE_ENDIAN_ORDER);
634 AttachedTransformation()->PutWord16(~m_blockLength, LITTLE_ENDIAN_ORDER);
635 AttachedTransformation()->Put(m_byteBuffer + m_blockStart, m_blockLength);
H A Dsimple.h70 BufferedTransformation *attached = this->AttachedTransformation();
H A Ddefault.cpp105 AttachedTransformation()->Put(salt, SALTLENGTH);
H A Dcryptlib.h1024 virtual BufferedTransformation *AttachedTransformation() {assert(!Attachable()); return 0;} function in class:BufferedTransformation
1026 virtual const BufferedTransformation *AttachedTransformation() const function in class:BufferedTransformation
1027 {return const_cast<BufferedTransformation *>(this)->AttachedTransformation();}
H A Dzinflate.cpp356 m_inQueue.TransferTo(*AttachedTransformation());
H A Dvalidat1.cpp332 test.AttachedTransformation()->MessageEnd();

Completed in 119 milliseconds