Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h882 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument
884 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
889 DEBUGLOG(7, "distance from current pos to end buffer = %i", (int)(iEnd - ip)); in ZSTD_count_2segments()
891 DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd)); in ZSTD_count_2segments()
892 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd); in ZSTD_count_2segments()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h881 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument
883 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
888 DEBUGLOG(7, "distance from current pos to end buffer = %i", (int)(iEnd - ip)); in ZSTD_count_2segments()
890 DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd)); in ZSTD_count_2segments()
891 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd); in ZSTD_count_2segments()
/freebsd/contrib/sqlite3/
H A Dsqlite3.h14227 int iEnd /* Byte offset of end of token within input text */
14251 int iEnd /* Byte offset of end of token within input text */
H A Dsqlite3.c14548 int iEnd /* Byte offset of end of token within input text */
14572 int iEnd /* Byte offset of end of token within input text */
39761 sqlite3_int64 iEnd = iOfst+iAmt; in kvvfsWriteJrnl() local
39763 if( iEnd>=0x10000000 ) return SQLITE_FULL; in kvvfsWriteJrnl()
39764 if( pFile->aJrnl==0 || pFile->nJrnl<iEnd ){ in kvvfsWriteJrnl()
39765 char *aNew = sqlite3_realloc(pFile->aJrnl, iEnd); in kvvfsWriteJrnl()
39773 pFile->nJrnl = iEnd; in kvvfsWriteJrnl()
75046 int iEnd = iStart + iSize; /* First byte past the iStart buffer */ local
75053 assert( CORRUPT_DB || iEnd <= (int)pPage->pBt->usableSize );
75084 if( iFreeBlk && iEnd+3>=iFreeBlk ){
[all …]
H A Dshell.c9229 int iStart, iEnd, iGoto; in re_subcompile_re() local
9234 iEnd = p->nState; in re_subcompile_re()
9235 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re()
17536 int iEnd = iEndOfCol ? iEndOfCol : iOff; in intckParseCreateIndex() local
17537 nRet = (iEnd - iStart); in intckParseCreateIndex()
24740 sqlite3_int64 iEnd = timeOfDay(); in endTimer() local
24743 p->prevTimer = (iEnd - iBegin)*0.000001; in endTimer()
28182 static char **readline_completion(const char *zText, int iStart, int iEnd){ in readline_completion() argument
28184 (void)iEnd; in readline_completion()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp2067 for (uint32_t i = 0, iEnd = NI.getCUCount(); i < iEnd; ++i) { in verifyDebugNames() local