Searched refs:seekResult (Results 1 – 7 of 7) sorted by relevance
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/flac/src/main/java/com/google/android/exoplayer2/ext/flac/ |
D | FlacExtractor.java | 231 int seekResult = binarySearchSeeker.handlePendingSeek(input, seekPosition); in handlePendingSeek() local 233 if (seekResult == RESULT_CONTINUE && outputByteBuffer.limit() > 0) { in handlePendingSeek() 236 return seekResult; in handlePendingSeek()
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/flac/src/main/java/com/google/android/exoplayer2/ext/flac/ |
D | FlacExtractor.java | 234 int seekResult = binarySearchSeeker.handlePendingSeek(input, seekPosition); in handlePendingSeek() local 236 if (seekResult == RESULT_CONTINUE && outputByteBuffer.limit() > 0) { in handlePendingSeek() 239 return seekResult; in handlePendingSeek()
|
/external/lz4/programs/ |
D | lz4io.c | 899 int const seekResult = UTIL_fseek(file, 1 GB, SEEK_CUR); in LZ4IO_fwriteSparse() local 900 if (seekResult != 0) END_PROCESS(71, "1 GB skip error (sparse file support)"); in LZ4IO_fwriteSparse() 916 { int const seekResult = UTIL_fseek(file, storedSkips, SEEK_CUR); in LZ4IO_fwriteSparse() local 917 …if (seekResult) END_PROCESS(72, "Sparse skip error(%d): %s ; try --no-sparse", (int)errno, strerro… in LZ4IO_fwriteSparse() 936 int const seekResult = UTIL_fseek(file, storedSkips, SEEK_CUR); in LZ4IO_fwriteSparse() local 937 if (seekResult) END_PROCESS(74, "Sparse skip error ; try --no-sparse"); in LZ4IO_fwriteSparse()
|
/external/python/pycparser/utils/benchmark/inputs/ |
D | sqlite-btree.c.ppout | 1526 int flags, int seekResult); 9866 int seekResult 9869 int loc = seekResult;
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 15278 int flags, int seekResult); 22276 int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 22314 ((P)->eCurType==CURTYPE_PSEUDO && (P)->nullRow && (P)->seekResult==0) 75806 int seekResult /* Result of prior IndexMoveto() call */ 75809 int loc = seekResult; /* -1: before desired location +1: after */ 75819 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 ); 91039 || (pC->eCurType==CURTYPE_PSEUDO && pC->seekResult==0) ); 91048 if( pC->eCurType==CURTYPE_PSEUDO && pC->seekResult>0 ){ 91051 pReg = &aMem[pC->seekResult]; 92687 pCx->seekResult = pOp->p2; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 15278 int flags, int seekResult); 22276 int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 22314 ((P)->eCurType==CURTYPE_PSEUDO && (P)->nullRow && (P)->seekResult==0) 75822 int seekResult /* Result of prior IndexMoveto() call */ 75825 int loc = seekResult; /* -1: before desired location +1: after */ 75835 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 ); 91055 || (pC->eCurType==CURTYPE_PSEUDO && pC->seekResult==0) ); 91064 if( pC->eCurType==CURTYPE_PSEUDO && pC->seekResult>0 ){ 91067 pReg = &aMem[pC->seekResult]; 92703 pCx->seekResult = pOp->p2; [all …]
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 15430 int flags, int seekResult); 21086 int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 member 73640 int seekResult /* Result of prior MovetoUnpacked() call */ 73643 int loc = seekResult; /* -1: before desired location +1: after */ 73653 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 ); 88593 assert( pC->seekResult>0 ); 88594 pReg = &aMem[pC->seekResult]; 90037 pCx->seekResult = pOp->p2; 90712 pC->seekResult = res; 90823 pC->seekResult = res; [all …]
|