HomeSort by relevance Sort by last modified time
    Searched refs:readPosition (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DelayDSPKernel.cpp 137 double readPosition = m_writeIndex + bufferLength - desiredDelayFrames;
138 if (readPosition >= bufferLength)
139 readPosition -= bufferLength;
142 int readIndex1 = static_cast<int>(readPosition);
144 double interpolationFactor = readPosition - readIndex1;
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 247 static int readPosition(DocListReader *pReader){
270 while( readPosition(pReader)!=-1 )
397 int block_pos = readPosition(pBlockReader);
398 int in_pos = readPosition(&m->in);
409 block_pos = readPosition(pBlockReader);
410 in_pos = readPosition(&m->in);
412 block_pos = readPosition(pBlockReader);
414 in_pos = readPosition(&m->in);
448 int pos = readPosition(&blockReader);
    [all...]
fts1.c 360 ** readPosition()
420 static int readPosition(DocListReader *pReader, int *iColumn){
460 while( readPosition(pReader, &iColumn)!=-1 ){}
512 while( (iPos = readPosition(&r, &iCol))>=0 ){
539 while( (iPos = readPosition(&r, &iColumn)) != -1 ){
566 while( (iPos = readPosition(&r, &iColumn)) != -1 ){
694 int iLeftCol, iLeftPos = readPosition(pLeft, &iLeftCol);
695 int iRightCol, iRightPos = readPosition(pRight, &iRightCol);
708 iLeftPos = readPosition(pLeft, &iLeftCol);
709 iRightPos = readPosition(pRight, &iRightCol)
    [all...]

Completed in 4297 milliseconds