Searched refs:tempBuffer (Results 1 – 4 of 4) sorted by relevance
41 sp<EffectBufferHalAidl> tempBuffer = new EffectBufferHalAidl(size); in mirror() local42 status_t status = tempBuffer.get()->init(); in mirror()48 tempBuffer->setExternalData(external); in mirror()49 *buffer = tempBuffer; in mirror()
47 sp<EffectBufferHalInterface> tempBuffer = new EffectBufferHalHidl(size); in mirror() local48 status_t result = static_cast<EffectBufferHalHidl*>(tempBuffer.get())->init(); in mirror()50 tempBuffer->setExternalData(external); in mirror()51 *buffer = tempBuffer; in mirror()
261 std::vector<float> tempBuffer; in process() local264 tempBuffer.resize(floatsToRead); in process()265 outputRawBuffer = tempBuffer.data(); in process()
99 final ByteBuffer tempBuffer = ByteBuffer.allocateDirect(8192); in run() local100 final byte[] temp = tempBuffer.hasArray() ? tempBuffer.array() : new byte[8192]; in run()