Searched refs:iStart (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_compress_internal.h | 588 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments() argument 596 DEBUGLOG(7, "next byte : ip==%02X, istart==%02X", ip[matchLength], *iStart); 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 D | zstd_compress_internal.h | 824 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()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_jjy.c | 851 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() 874 printf( "refclock_jjy.c : getRawDataBreakPosition : iStart=%d return=%d\n", 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()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 6680 static void re_copy(ReCompiled *p, int iStart, int N){ in re_copy() argument 6682 memcpy(&p->aOp[p->nState], &p->aOp[iStart], N*sizeof(p->aOp[0])); in re_copy() 6683 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy() 6759 int iStart, iEnd, iGoto; in re_subcompile_re() local 6760 iStart = p->nState; in re_subcompile_re() 6765 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart); in re_subcompile_re() 6781 int iStart; in re_subcompile_string() local 6785 iStart = p->nState; in re_subcompile_string() 6917 iPrev = iStart; in re_subcompile_string() 14613 int iStart = 0; in intckParseCreateIndex() local [all …]
|
H A D | sqlite3.c | 13674 int iStart, /* Byte offset of token within input text */ 72456 static int freeSpace(MemPage *pPage, u16 iStart, u16 iSize){ 72463 u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */ 72469 assert( CORRUPT_DB || iStart>=pPage->hdrOffset+6+pPage->childPtrSize ); 72473 assert( CORRUPT_DB || iStart<=pPage->pBt->usableSize-4 ); 72483 while( (iFreeBlk = get2byte(&data[iPtr]))<iStart ){ 72508 iSize = iEnd - iStart; 72518 if( iPtrEnd+3>=iStart ){ 72519 if( iPtrEnd>iStart ) return SQLITE_CORRUPT_PAGE(pPage); 72520 nFrag += iStart - iPtrEnd; [all …]
|
H A D | sqlite3.h | 13361 int iStart, /* Byte offset of token within input text */
|