OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:destinationL
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp
158
float*
destinationL
= bus->channel(0)->data();
159
ASSERT(
destinationL
);
160
if (!
destinationL
)
194
memset(
destinationL
, 0, sizeof(float) * m_schedulingFrameDelay);
195
destinationL
+= m_schedulingFrameDelay;
220
currentDestinationBus.setChannelMemory(0,
destinationL
, framesThisTime);
228
destinationL
+= framesThisTime;
246
memset(
destinationL
, 0, sizeof(float) * framesToProcess);
292
float*
destinationL
= destinationBus->channel(0)->data();
294
bool isDestinationGood =
destinationL
&& (numberOfChannels == 1 || destinationR)
[
all
...]
AudioBufferSourceNode.h
142
void readFromBufferWithGrainEnvelope(float* sourceL, float* sourceR, float*
destinationL
, float* destinationR, size_t framesToProcess);
JavaScriptAudioNode.cpp
171
float*
destinationL
= outputBus->channel(0)->data();
187
memcpy(
destinationL
, outputBuffer->getChannelData(0)->data() + m_bufferReadWriteIndex, bytesToCopy);
/external/webkit/Source/WebCore/platform/audio/
EqualPowerPanner.cpp
64
float*
destinationL
= outputBus->channelByType(AudioBus::ChannelLeft)->data();
67
if (!sourceP || !
destinationL
|| !destinationR)
102
*
destinationL
++ = static_cast<float>(input * gainL);
AudioBus.cpp
255
float*
destinationL
= channelByType(ChannelLeft)->data();
268
*
destinationL
++ += static_cast<float>(gain * sampleL);
279
*
destinationL
++ += static_cast<float>(gain * sample);
289
*
destinationL
++ += static_cast<float>(gain * sampleL);
302
*
destinationL
++ = static_cast<float>(gain * sampleL);
313
*
destinationL
++ = static_cast<float>(gain * sample);
323
*
destinationL
++ = static_cast<float>(gain * sampleL);
HRTFPanner.cpp
156
float*
destinationL
= outputBus->channelByType(AudioBus::ChannelLeft)->data();
212
float* segmentDestinationL =
destinationL
+ offset;
Completed in 3386 milliseconds