Home
last modified time | relevance | path

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

/src/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
832 DEBUGLOG(7, "next byte : ip==%02X, istart==%02X", ip[matchLength], *iStart); 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()
/src/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
890 DEBUGLOG(7, "next byte : ip==%02X, istart==%02X", ip[matchLength], *iStart); 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()
/src/contrib/ntp/ntpd/
H A Drefclock_jjy.c851 getRawDataBreakPosition ( struct jjyunit *up, int iStart ) in getRawDataBreakPosition() argument
856 if ( iStart >= up->iRawBufLen ) { in getRawDataBreakPosition()
858 printf( "refclock_jjy.c : getRawDataBreakPosition : iStart=%d return=-1\n", iStart ) ; in getRawDataBreakPosition()
863 for ( i = iStart ; i < up->iRawBufLen ; i ++ ) { in getRawDataBreakPosition()
875 iStart, i + up->pRawBreak[j].iLength - 1 ) ; in getRawDataBreakPosition()
885 printf( "refclock_jjy.c : getRawDataBreakPosition : iStart=%d return=-1\n", iStart ) ; in getRawDataBreakPosition()
/src/contrib/sqlite3/
H A Dsqlite3.h13666 int iStart, /* Byte offset of token within input text */
13690 int iStart, /* Byte offset of token within input text */
H A Dsqlite3.c13985 int iStart, /* Byte offset of token within input text */
14009 int iStart, /* Byte offset of token within input text */
73471 static int freeSpace(MemPage *pPage, int iStart, int iSize){
73478 int iEnd = iStart + iSize; /* First byte past the iStart buffer */
73484 assert( CORRUPT_DB || iStart>=pPage->hdrOffset+6+pPage->childPtrSize );
73488 assert( CORRUPT_DB || iStart<=pPage->pBt->usableSize-4 );
73498 while( (iFreeBlk = get2byte(&data[iPtr]))<iStart ){
73523 iSize = iEnd - iStart;
73533 if( iPtrEnd+3>=iStart ){
73534 if( iPtrEnd>iStart ) return SQLITE_CORRUPT_PAGE(pPage);
[all …]
H A Dshell.c7462 static void re_copy(ReCompiled *p, int iStart, int N){ in re_copy() argument
7464 memcpy(&p->aOp[p->nState], &p->aOp[iStart], N*sizeof(p->aOp[0])); in re_copy()
7465 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy()
7541 int iStart, iEnd, iGoto; in re_subcompile_re() local
7542 iStart = p->nState; in re_subcompile_re()
7547 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re()
7563 int iStart; in re_subcompile_string() local
7567 iStart = p->nState; in re_subcompile_string()
7699 iPrev = iStart; in re_subcompile_string()
15532 int iStart = 0; in intckParseCreateIndex() local
[all …]