Searched refs:bufIn (Results 1 – 7 of 7) sorted by relevance
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/ |
D | audio_effect_chain_manager.cpp | 234 void CopyBuffer(const float *bufIn, float *bufOut, uint32_t totalLen) in CopyBuffer() argument 237 bufOut[i] = bufIn[i]; in CopyBuffer() 241 void AudioEffectChain::ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen) in ApplyEffectChain() argument 244 CopyBuffer(bufIn, bufOut, frameLen * ioBufferConfig.outputCfg.channels); in ApplyEffectChain() 255 audioBufIn.raw = bufIn; in ApplyEffectChain() 258 audioBufOut.raw = bufIn; in ApplyEffectChain() 272 CopyBuffer(bufIn, bufOut, frameLen * ioBufferConfig.outputCfg.channels); in ApplyEffectChain() 567 … CopyBuffer(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->frameLen * bufferAttr->numChanIn); in ApplyAudioEffectChain() 572 … CopyBuffer(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->frameLen * bufferAttr->numChanIn); in ApplyAudioEffectChain() 578 audioEffectChain->ApplyEffectChain(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->frameLen); in ApplyAudioEffectChain()
|
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/include/ |
D | audio_effect_chain_adapter.h | 27 float *bufIn; member
|
D | audio_effect_chain_manager.h | 55 void ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen);
|
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/ |
D | zip_file.cpp | 523 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local 524 if (bufIn == nullptr) { in InitZStream() 530 zstream.next_in = bufIn; in InitZStream() 562 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local 571 if (!ReadZStream(bufIn, zstream, remainCompressedSize, startPos)) { in UnzipWithInflated() 607 delete[] bufIn; in UnzipWithInflated() 706 BytePtr bufIn = zstream.next_in; in UnzipWithInflatedFromMMap() local 725 if (!ReadZStreamFromMMap(bufIn, mmapSrcDataPtr, zstream, remainCompressedSize)) { in UnzipWithInflatedFromMMap() 767 delete[] bufIn; in UnzipWithInflatedFromMMap()
|
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
D | zip_file.cpp | 446 BytePtr bufIn = new Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local 447 if (bufIn == nullptr) { in InitZStream() 453 zstream.next_in = bufIn; in InitZStream() 486 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local 495 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated() 536 delete[] bufIn; in UnzipWithInflated()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
D | zip_file.cpp | 466 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local 467 if (bufIn == nullptr) { in InitZStream() 473 zstream.next_in = bufIn; in InitZStream() 505 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local 513 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated() 549 delete[] bufIn; in UnzipWithInflated()
|
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/effect/ |
D | module_effect_sink.c | 367 float *bufIn, *bufOut; in SinkInputPopCb() local 369 bufIn = u->bufferAttr->bufIn; in SinkInputPopCb() 372 ConvertToFloat(u->format, u->processLen, src, bufIn); in SinkInputPopCb() 668 pa_assert_se(u->bufferAttr->bufIn = (float *)malloc(u->processSize)); in ConfigSinkInput()
|