Home
last modified time | relevance | path

Searched refs:iStart (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
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()
/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
889 DEBUGLOG(7, "next byte : ip==%02X, istart==%02X", ip[matchLength], *iStart); 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/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()
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 Dshell.c1617 int iStart /* Begin escapding on this byte of pStr */ in qrfEscape() argument
1629 zIn += iStart; in qrfEscape()
1645 sz = sqlite3_str_length(pStr) - iStart; in qrfEscape()
1650 zOut += iStart; in qrfEscape()
1748 int iStart = sqlite3_str_length(pOut); in qrfEncodeText() local
1843 qrfEscape(p->spec.eEsc, pOut, iStart); in qrfEncodeText()
2008 int iStart; in qrfRenderValue() local
2016 iStart = sqlite3_str_length(pOut); in qrfRenderValue()
2024 for(i=0, j=iStart; i<nBlob; i++, j+=2){ in qrfRenderValue()
2033 int iStart; in qrfRenderValue() local
[all …]
H A Dsqlite3.h14226 int iStart, /* Byte offset of token within input text */
14250 int iStart, /* Byte offset of token within input text */
H A Dsqlite3.c14547 int iStart, /* Byte offset of token within input text */
14571 int iStart, /* Byte offset of token within input text */
75039 static int freeSpace(MemPage *pPage, int iStart, int iSize){ argument
75046 int iEnd = iStart + iSize; /* First byte past the iStart buffer */
75052 assert( CORRUPT_DB || iStart>=pPage->hdrOffset+6+pPage->childPtrSize );
75056 assert( CORRUPT_DB || iStart<=(int)pPage->pBt->usableSize-4 );
75066 while( (iFreeBlk = get2byte(&data[iPtr]))<iStart ){
75091 iSize = iEnd - iStart;
75101 if( iPtrEnd+3>=iStart ){
75102 if( iPtrEnd>iStart ) return SQLITE_CORRUPT_PAGE(pPage);
[all …]