OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_virtualReadIndex
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioResamplerKernel.h
65
double
m_virtualReadIndex
;
AudioResamplerKernel.cpp
44
,
m_virtualReadIndex
(0.0)
55
// Calculate the next "virtual" index. After process() is called,
m_virtualReadIndex
will equal this value.
56
double nextFractionalIndex =
m_virtualReadIndex
+ framesToProcess * rate();
93
double virtualReadIndex =
m_virtualReadIndex
;
125
m_virtualReadIndex
= virtualReadIndex;
130
m_virtualReadIndex
= 0.0;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OscillatorNode.h
92
//
m_virtualReadIndex
is a sample-frame index into our buffer representing the current playback position.
94
double
m_virtualReadIndex
;
AudioBufferSourceNode.cpp
64
,
m_virtualReadIndex
(0)
221
if (
m_virtualReadIndex
>= endFrame)
222
m_virtualReadIndex
= 0; // reset to start
246
double virtualReadIndex =
m_virtualReadIndex
;
328
m_virtualReadIndex
= virtualReadIndex;
336
m_virtualReadIndex
= 0;
376
m_virtualReadIndex
= 0;
441
m_virtualReadIndex
= AudioUtilities::timeToSampleFrame(m_grainOffset, buffer()->sampleRate());
AudioBufferSourceNode.h
125
//
m_virtualReadIndex
is a sample-frame index into our buffer representing the current playback position.
127
double
m_virtualReadIndex
;
OscillatorNode.cpp
55
,
m_virtualReadIndex
(0)
263
double virtualReadIndex =
m_virtualReadIndex
;
326
m_virtualReadIndex
= virtualReadIndex;
333
m_virtualReadIndex
= 0;
Completed in 762 milliseconds