Searched refs:mutableData (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DCString.cpp76 memcpy(m_buffer->mutableData(), str, length);
77 m_buffer->mutableData()[length] = '\0';
80 char* CString::mutableData() function in class:WTF::CString
85 return m_buffer->mutableData();
92 char* bytes = result.m_buffer->mutableData();
106 memcpy(m_buffer->mutableData(), buffer->data(), length + 1);
H A DCString.h39 const char* data() { return mutableData(); }
52 char* mutableData() { return reinterpret_cast<char*>(this + 1); } function in class:WTF::CStringBuffer
71 char* mutableData();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.cpp56 vsmul(data(), 1, &scale, mutableData(), 1, length());
70 memcpy(mutableData(), sourceChannel->data(), sizeof(float) * length());
92 float* destination = mutableData();
116 vadd(data(), 1, sourceChannel->data(), 1, mutableData(), 1, length());
H A DMultiChannelResampler.cpp80 memcpy(bus->channel(0)->mutableData(), m_multiChannelBus->channel(m_currentChannel)->data(), sizeof(float) * framesToProcess);
116 destination->channel(channelIndex)->mutableData(),
H A DHRTFKernel.cpp49 float* impulseP = channel->mutableData();
77 float* impulseResponse = channel->mutableData();
104 fftFrame.doInverseFFT(channel->mutableData());
H A DAudioFIFO.cpp62 float* destinationData = destination->channel(channelIndex)->mutableData();
99 float* destination = m_fifoAudioBus->channel(channelIndex)->mutableData();
H A DEqualPowerPanner.cpp66 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
67 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();
H A DAudioChannel.h88 float* mutableData() function in class:blink::AudioChannel
H A DAudioDSPKernelProcessor.cpp99 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
H A DAudioResampler.cpp103 float* destination = destinationBus->channel(i)->mutableData();
H A DAudioBus.cpp291 float* destination = channelByType(ChannelLeft)->mutableData();
333 float* destination = channelByType(ChannelLeft)->mutableData();
359 float* destination = channelByType(ChannelLeft)->mutableData();
442 destinations[i] = channel(i)->mutableData();
523 float* destination = channel(channelIndex)->mutableData();
580 float* destination = destinationBus->channel(i)->mutableData();
607 float* destination = destinationBus->channel(0)->mutableData();
H A DHRTFPanner.cpp171 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
172 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();
H A DDynamicsCompressor.cpp133 m_destinationChannels[i] = destinationBus->channel(i)->mutableData();
H A DReverbConvolver.cpp161 float* destination = destinationChannel->mutableData();
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DStream.cpp54 buffer->mutableData()->resize(len);
55 memcpy(buffer->mutableData()->data(), data, len);
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamWebAudioSource.cpp66 webAudioData[i] = bus->channel(i)->mutableData();
H A DMediaStreamComponent.cpp85 webAudioData[i] = bus->channel(i)->mutableData();
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DWaveShaperProcessor.cpp92 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
H A DAudioScheduledSourceNode.cpp108 memset(outputBus->channel(i)->mutableData(), 0, sizeof(float) * quantumFrameOffset);
128 memset(outputBus->channel(i)->mutableData() + zeroStartFrame, 0, sizeof(float) * framesToZero);
H A DBiquadProcessor.cpp118 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
H A DOscillatorNode.cpp259 float* destP = outputBus->channel(0)->mutableData();
H A DScriptProcessorNode.cpp211 memcpy(outputBus->channel(i)->mutableData(), outputBuffer->getChannelData(i)->data() + m_bufferReadWriteIndex, sizeof(float) * framesToProcess);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebAudioBus.cpp130 return m_private->channel(channelIndex)->mutableData();
/external/chromium_org/third_party/WebKit/Source/platform/blob/
H A DBlobData.cpp105 Vector<char>* buffer = data->mutableData();
120 Vector<char>* buffer = data->mutableData();
H A DBlobData.h56 Vector<char>* mutableData() { return &m_data; } function in class:blink::RawData

Completed in 245 milliseconds

12