Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h588 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument
590 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
595 DEBUGLOG(7, "distance from current pos to end buffer = %zi", iEnd - ip); in ZSTD_count_2segments()
597 DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd)); in ZSTD_count_2segments()
598 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd); in ZSTD_count_2segments()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h824 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument
826 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
831 DEBUGLOG(7, "distance from current pos to end buffer = %zi", iEnd - ip); in ZSTD_count_2segments()
833 DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd)); in ZSTD_count_2segments()
834 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd); in ZSTD_count_2segments()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c13675 int iEnd /* Byte offset of end of token within input text */
37977 sqlite3_int64 iEnd = iOfst+iAmt;
37979 if( iEnd>=0x10000000 ) return SQLITE_FULL;
37980 if( pFile->aJrnl==0 || pFile->nJrnl<iEnd ){
37981 char *aNew = sqlite3_realloc(pFile->aJrnl, iEnd);
37989 pFile->nJrnl = iEnd;
72463 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */
72470 assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize );
72501 if( iFreeBlk && iEnd+3>=iFreeBlk ){
72502 nFrag = iFreeBlk - iEnd;
[all …]
H A Dsqlite3.h13362 int iEnd /* Byte offset of end of token within input text */
H A Dshell.c1357 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
1361 (iEnd - iBegin)*0.001, in endTimer()
6759 int iStart, iEnd, iGoto; in re_subcompile_re() local
6764 iEnd = p->nState; in re_subcompile_re()
6765 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re()
14640 int iEnd = iEndOfCol ? iEndOfCol : iOff; in intckParseCreateIndex() local
14641 nRet = (iEnd - iStart); in intckParseCreateIndex()
23618 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
23620 (void)iEnd; in readline_completion()