HomeSort by relevance Sort by last modified time
    Searched refs:mutableData (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.cpp 76 memcpy(m_buffer->mutableData(), str, length);
77 m_buffer->mutableData()[length] = '\0';
80 char* CString::mutableData()
85 return m_buffer->mutableData();
92 char* bytes = result.m_buffer->mutableData();
106 memcpy(m_buffer->mutableData(), buffer->data(), length + 1);
CString.h 39 const char* data() { return mutableData(); }
52 char* mutableData() { return reinterpret_cast<char*>(this + 1); }
71 char* mutableData();
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioChannel.cpp 56 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());
MultiChannelResampler.cpp 80 memcpy(bus->channel(0)->mutableData(), m_multiChannelBus->channel(m_currentChannel)->data(), sizeof(float) * framesToProcess);
116 destination->channel(channelIndex)->mutableData(),
HRTFKernel.cpp 51 float* impulseP = channel->mutableData();
79 float* impulseResponse = channel->mutableData();
106 fftFrame.doInverseFFT(channel->mutableData());
AudioFIFO.cpp 62 float* destinationData = destination->channel(channelIndex)->mutableData();
99 float* destination = m_fifoAudioBus->channel(channelIndex)->mutableData();
EqualPowerPanner.cpp 68 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
69 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();
AudioChannel.h 88 float* mutableData()
AudioDSPKernelProcessor.cpp 95 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
AudioResampler.cpp 105 float* destination = destinationBus->channel(i)->mutableData();
AudioBus.cpp 288 float* destination = channelByType(ChannelLeft)->mutableData();
330 float* destination = channelByType(ChannelLeft)->mutableData();
356 float* destination = channelByType(ChannelLeft)->mutableData();
439 destinations[i] = channel(i)->mutableData();
520 float* destination = channel(channelIndex)->mutableData();
577 float* destination = destinationBus->channel(i)->mutableData();
604 float* destination = destinationBus->channel(0)->mutableData();
HRTFPanner.cpp 162 float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
163 float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();
ReverbConvolver.cpp 161 float* destination = destinationChannel->mutableData();
DynamicsCompressor.cpp 165 m_destinationChannels[i] = destinationBus->channel(i)->mutableData();
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Stream.cpp 56 buffer->mutableData()->resize(len);
57 memcpy(buffer->mutableData()->data(), data, len);
BlobBuilder.cpp 58 return *m_items[m_items.size() - 1].data->mutableData();
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
WaveShaperProcessor.cpp 92 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
AudioScheduledSourceNode.cpp 111 memset(outputBus->channel(i)->mutableData(), 0, sizeof(float) * quantumFrameOffset);
131 memset(outputBus->channel(i)->mutableData() + zeroStartFrame, 0, sizeof(float) * framesToZero);
BiquadProcessor.cpp 111 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
OscillatorNode.cpp 258 float* destP = outputBus->channel(0)->mutableData();
ScriptProcessorNode.cpp 207 memcpy(outputBus->channel(i)->mutableData(), outputBuffer->getChannelData(i)->data() + m_bufferReadWriteIndex, sizeof(float) * framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebAudioBus.cpp 132 return m_private->channel(channelIndex)->mutableData();
  /external/chromium_org/third_party/WebKit/Source/platform/mediastream/
MediaStreamComponent.cpp 90 webAudioData[i] = bus->channel(i)->mutableData();
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ChromiumDataObjectItem.cpp 140 rawData->mutableData()->append(data->data(), data->size());
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobData.h 56 Vector<char>* mutableData() { return &m_data; }

Completed in 1133 milliseconds

1 2