/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | zip_file.cpp | 446 BytePtr bufIn = new (std::nothrow) 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/ |
H A D | zip_file.cpp | 463 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local 464 if (bufIn == nullptr) { in InitZStream() 470 zstream.next_in = bufIn; in InitZStream() 502 BytePtr bufIn = zstream.next_in; in UnzipWithInflated() local 510 if (!ReadZStream(bufIn, zstream, remainCompressedSize)) { in UnzipWithInflated() 546 delete[] bufIn; in UnzipWithInflated()
|
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/include/ |
H A D | audio_effect_chain_manager.h | 82 float *bufIn; member 87 EffectBufferAttr(float *bufIn, float *bufOut, int numChans, int frameLen) in EffectBufferAttr() 88 : bufIn(bufIn), bufOut(bufOut), numChans(numChans), frameLen(frameLen) in EffectBufferAttr()
|
H A D | audio_effect_chain_adapter.h | 28 float *bufIn; member
|
H A D | audio_effect_chain.h | 68 void ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen, AudioEffectProcInfo procInfo);
|
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/ |
H A D | audio_effect_chain.cpp | 285 void AudioEffectChain::ApplyEffectChain(float *bufIn, float *bufOut, uint32_t frameLen, AudioEffectProcInfo procInfo) in ApplyEffectChain() argument 289 DumpFileUtil::WriteDumpFile(dumpFileInput_, static_cast<void *>(bufIn), inTotlen); in ApplyEffectChain() 290 DumpEffectProcessData(dumpNameIn_, static_cast<void *>(bufIn), inTotlen); in ApplyEffectChain() 293 CHECK_AND_RETURN_LOG(memcpy_s(bufOut, outTotlen, bufIn, outTotlen) == 0, "memcpy error in apply effect"); in ApplyEffectChain() 317 audioBufIn_.raw = bufIn; in ApplyEffectChain() 320 audioBufOut_.raw = bufIn; in ApplyEffectChain() 329 CHECK_AND_RETURN_LOG(memcpy_s(bufOut, outTotlen, bufIn, outTotlen) == 0, "memcpy error when last copy"); in ApplyEffectChain()
|
H A D | audio_effect_chain_adapter.cpp | 70 auto eBufferAttr = std::make_unique<EffectBufferAttr>(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->numChanIn, in EffectChainManagerProcess()
|
H A D | audio_effect_chain_manager.cpp | 349 AUDIO_PRERELEASE_LOGI("Effectchain is empty, copy bufIn to bufOut like EFFECT_NONE mode"); in SetAudioEffectChainDynamic() 388 CHECK_AND_RETURN_RET_LOG(memcpy_s(bufferAttr->bufOut, totLen, bufferAttr->bufIn, totLen) == 0, ERROR, in ApplyAudioEffectChain() 395 audioEffectChain->ApplyEffectChain(bufferAttr->bufIn, bufferAttr->bufOut, bufferAttr->frameLen, procInfo); in ApplyAudioEffectChain()
|
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/ |
H A D | zip_file.cpp | 725 BytePtr bufIn = new (std::nothrow) Byte[UNZIP_BUF_IN_LEN]; in InitZStream() local 726 if (bufIn == nullptr) { in InitZStream() 727 ABILITYBASE_LOGE("null bufIn"); in InitZStream() 732 zstream.next_in = bufIn; in InitZStream() 793 BytePtr bufIn = zstream.next_in; in UnzipWithInflatedFromMMap() local 808 if (!ReadZStreamFromMMap(bufIn, mmapSrcDataPtr, zstream, remainCompressedSize)) { in UnzipWithInflatedFromMMap() 834 delete[] bufIn; in UnzipWithInflatedFromMMap()
|
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/test/unittest/effect_unit_test/src/ |
H A D | audio_effect_chain_manager_unit_test.cpp | 546 float* bufIn; in HWTEST() local 552 bufIn = bufInVector.data(); in HWTEST() 556 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen); in HWTEST() 574 float* bufIn; in HWTEST() local 580 bufIn = bufInVector.data(); in HWTEST() 584 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen); in HWTEST() 602 float* bufIn; in HWTEST() local 608 bufIn = bufInVector.data(); in HWTEST() 612 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen); in HWTEST() 630 float* bufIn; in HWTEST() local [all...] |
/foundation/multimedia/audio_framework/test/fuzztest/audioeffect_fuzzer/ |
H A D | audio_effect_fuzzer.cpp | 115 float* bufIn = const_cast<float *>(reinterpret_cast<const float*>(rawData)); in ApplyAudioEffectChainFuzzTest() local 117 auto eBufferAttr = make_unique<EffectBufferAttr>(bufIn, bufOut, numChans, frameLen); in ApplyAudioEffectChainFuzzTest()
|
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/ |
H A D | hdi_sink.c | 1952 memcpy_s(u->bufferAttr->bufIn, frameLen * sizeof(float), u->bufferAttr->tempBufIn, frameLen * sizeof(float)); in SinkRenderPrimaryProcess() 3850 pa_assert_se(u->bufferAttr->bufIn = (float *)malloc(u->processSize)); in PaHdiSinkUserdataInit() 4269 free(u->bufferAttr->bufIn); in FreeBufferAttr() 4273 u->bufferAttr->bufIn = NULL; in FreeBufferAttr()
|