Home
last modified time | relevance | path

Searched refs:seekResult (Results 1 – 3 of 3) sorted by relevance

/third_party/lz4/programs/
Dlz4io.c886 int const seekResult = UTIL_fseek(file, 1 GB, SEEK_CUR); in LZ4IO_fwriteSparse() local
887 if (seekResult != 0) EXM_THROW(71, "1 GB skip error (sparse file support)"); in LZ4IO_fwriteSparse()
903 { int const seekResult = UTIL_fseek(file, storedSkips, SEEK_CUR); in LZ4IO_fwriteSparse() local
904 …if (seekResult) EXM_THROW(72, "Sparse skip error(%d): %s ; try --no-sparse", (int)errno, strerror(… in LZ4IO_fwriteSparse()
923 int const seekResult = UTIL_fseek(file, storedSkips, SEEK_CUR); in LZ4IO_fwriteSparse() local
924 if (seekResult) EXM_THROW(74, "Sparse skip error ; try --no-sparse"); in LZ4IO_fwriteSparse()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch93118 + ((P)->eCurType==CURTYPE_PSEUDO && (P)->nullRow && (P)->seekResult==0)
96698 ** If the seekResult parameter is non-zero, then a successful call to
96701 ** been performed. In other words, if seekResult!=0 then the cursor
96703 ** to be inserted. If seekResult<0 then pCur points to a cell that is
96708 - int seekResult /* Result of prior MovetoUnpacked() call */
96709 + int seekResult /* Result of prior IndexMoveto() call */
96712 int loc = seekResult; /* -1: before desired location +1: after */
96715 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 );
99206 + || (pC->eCurType==CURTYPE_PSEUDO && pC->seekResult==0) );
99216 + if( pC->eCurType==CURTYPE_PSEUDO && pC->seekResult>0 ){
[all …]
/third_party/sqlite/src/
Dsqlite3.c14991 int flags, int seekResult);
21870 int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0
74623 int seekResult /* Result of prior MovetoUnpacked() call */
74626 int loc = seekResult; /* -1: before desired location +1: after */
74636 assert( (flags & BTREE_PREFORMAT)==0 || seekResult || pCur->pKeyInfo==0 );
89781 assert( pC->seekResult>0 );
89782 pReg = &aMem[pC->seekResult];
91339 pCx->seekResult = pOp->p2;
92031 pC->seekResult = res;
92142 pC->seekResult = res;
[all …]