OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeIndex
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
ReverbAccumulationBuffer.cpp
85
size_t
writeIndex
= (*readIndex + delayFrames) % bufferLength;
90
size_t framesAvailable = bufferLength -
writeIndex
;
96
bool isSafe =
writeIndex
<= bufferLength && numberOfFrames1 +
writeIndex
<= bufferLength && numberOfFrames2 <= bufferLength;
101
vadd(source, 1, destination +
writeIndex
, 1, destination +
writeIndex
, 1, numberOfFrames1);
107
return
writeIndex
;
ReverbInputBuffer.h
47
size_t
writeIndex
() const { return m_writeIndex; }
ReverbConvolver.cpp
161
int
writeIndex
= m_inputBuffer.
writeIndex
();
167
while ((readIndex = m_backgroundStages[0]->inputReadIndex()) !=
writeIndex
) { // FIXME: do better to detect buffer overrun...
ReverbConvolverStage.cpp
125
int
writeIndex
= 0;
138
writeIndex
= m_accumulationBuffer->accumulate(temporaryBuffer, framesToProcess, &m_accumulationReadIndex, m_postDelayLength);
/external/webkit/Source/WebCore/webaudio/
RealtimeAnalyser.cpp
161
unsigned
writeIndex
= m_writeIndex;
163
tempP[i] = inputBuffer[(i +
writeIndex
- fftSize + InputBufferSize) % InputBufferSize];
277
unsigned
writeIndex
= m_writeIndex;
281
float value = inputBuffer[(i +
writeIndex
- fftSize + InputBufferSize) % InputBufferSize];
/external/doclava/src/com/google/doclava/
SampleCode.java
107
Data hdf =
writeIndex
(dir);
125
public Data
writeIndex
(File dir) {
Doclava.java
296
writeIndex
();
319
private static void
writeIndex
() {
[
all
...]
/external/icu4c/common/
uts46.cpp
602
int32_t readIndex=mappingStart,
writeIndex
=mappingStart;
609
s[
writeIndex
++]=0x73; // Replace sharp s with first s.
611
if(
writeIndex
==readIndex) {
621
u_memmove(s+
writeIndex
+1, s+
writeIndex
, length-
writeIndex
);
624
s[
writeIndex
++]=0x73;
629
s[
writeIndex
++]=0x3c3;
637
// Only really necessary if
writeIndex
was different from readIndex.
638
s[
writeIndex
++]=c
[
all
...]
/external/sonivox/arm-wt-22k/lib_src/
jet.c
126
EAS_INLINE EAS_BOOL JET_ReadQueue (EAS_U32 *pEventQueue, EAS_U8 *pReadIndex, EAS_U8
writeIndex
, EAS_U8 queueSize, EAS_U32 *pEvent)
130
if (*pReadIndex ==
writeIndex
)
[
all
...]
Completed in 747 milliseconds