Home
last modified time | relevance | path

Searched refs:iEnd (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_compress_internal.h418 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument
420 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
423 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd); in ZSTD_count_2segments()
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c13507 int iEnd /* Byte offset of end of token within input text */
37413 sqlite3_int64 iEnd = iOfst+iAmt;
37415 if( iEnd>=0x10000000 ) return SQLITE_FULL;
37416 if( pFile->aJrnl==0 || pFile->nJrnl<iEnd ){
37417 char *aNew = sqlite3_realloc(pFile->aJrnl, iEnd);
37425 pFile->nJrnl = iEnd;
71611 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */
71618 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize );
71649 if( iFreeBlk && iEnd+3>=iFreeBlk ){
71650 nFrag = iFreeBlk - iEnd;
[all …]
Dsqlite3.h13194 int iEnd /* Byte offset of end of token within input text */
Dshell.c349 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
353 (iEnd - iBegin)*0.001, in endTimer()
5965 int iStart, iEnd, iGoto; in re_subcompile_re() local
5970 iEnd = p->nState; in re_subcompile_re()
5971 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re()
21599 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
21601 (void)iEnd; in readline_completion()
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c56666 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz;
56711 for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOff<iEnd; iOff+=nDestPgsz){
56908 i64 iEnd;
56925 iEnd = MIN(PENDING_BYTE + pgszDest, iSize);
56928 rc==SQLITE_OK && iOff<iEnd;
87019 int iEnd = sqlite3VdbeCurrentAddr(v);
87024 for(i=iStartAddr; i<iEnd; i++){
96096 int iEnd; /* Address of the end of the query */
96311 iEnd = sqlite3VdbeMakeLabel(v);
96313 computeLimitRegisters(pParse, p, iEnd);
[all …]