| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress_internal.h | 393 const BYTE* const pStart = pIn; in ZSTD_count() 396 if (pIn < pInLoopLimit) { in ZSTD_count() 397 { size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn); in ZSTD_count() 399 pIn+=sizeof(size_t); pMatch+=sizeof(size_t); in ZSTD_count() 400 while (pIn < pInLoopLimit) { in ZSTD_count() 403 pIn += ZSTD_NbCommonBytes(diff); in ZSTD_count() 404 return (size_t)(pIn - pStart); in ZSTD_count() 406 …if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatc… in ZSTD_count() 407 if ((pIn<(pInLimit-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; } in ZSTD_count() 408 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in ZSTD_count() [all …]
|
| H A D | zstd_ldm.c | 199 const BYTE* pIn, const BYTE* pAnchor, in ZSTD_ldm_countBackwardsMatch() argument 203 while (pIn > pAnchor && pMatch > pBase && pIn[-1] == pMatch[-1]) { in ZSTD_ldm_countBackwardsMatch() 204 pIn--; in ZSTD_ldm_countBackwardsMatch()
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 11355 int nIn, const void *pIn, 11492 int (*xInputA)(void *pIn, void *pData, int *pnData), 11500 int (*xInput)(void *pIn, void *pData, int *pnData), 11501 void *pIn, 11507 int (*xInput)(void *pIn, void *pData, int *pnData), 11508 void *pIn 11512 int (*xInput)(void *pIn, void *pData, int *pnData), 11513 void *pIn, 11528 void *pIn 11536 int (*xInput)(void *pIn, void *pData, int *pnData), [all …]
|
| H A D | sqlite3.c | 30384 p->pIn = pIn; 30482 p->pIn = pIn; 30555 p->pIn = pIn; 32731 if( pIn==0 || pIn[1]+nInt > pIn[0] ){ 32745 assert( pIn[1]<=pIn[0] ); 51238 pIn = pIn ? rowSetEntryMerge(pIn, aBucket[i]) : aBucket[i]; 204145 pRet->in.pIn = pIn; 204207 pIn->nData = pIn->buf.nBuf; 204226 rc = pIn->xInput(pIn->pIn, &pIn->buf.aBuf[pIn->buf.nBuf], &nNew); 204409 while( (pIn->iNext + nRead)<pIn->nData && pIn->aData[pIn->iNext + nRead] ){ [all …]
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/lz4/ |
| H A D | lz4.c | 361 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument 363 const BYTE* const pStart = pIn; in LZ4_count() 365 while (likely(pIn<pInLimit-(STEPSIZE-1))) { in LZ4_count() 366 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count() 367 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count() 368 pIn += LZ4_NbCommonBytes(diff); in LZ4_count() 369 return (unsigned)(pIn - pStart); in LZ4_count() 372 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count() 373 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count() 374 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count() [all …]
|
| /freebsd-12.1/sys/contrib/zstd/lib/dictBuilder/ |
| H A D | zdict.c | 169 static size_t ZDICT_count(const void* pIn, const void* pMatch) in ZDICT_count() argument 171 const char* const pStart = (const char*)pIn; in ZDICT_count() 173 size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn); in ZDICT_count() 175 pIn = (const char*)pIn+sizeof(size_t); in ZDICT_count() 179 pIn = (const char*)pIn+ZDICT_NbCommonBytes(diff); in ZDICT_count() 180 return (size_t)((const char*)pIn - pStart); in ZDICT_count()
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | zbufftest.c | 192 { size_t r, pIn=0, pOut=0; in basicUnitTests() local 199 …FF_decompressContinue(zd, ((BYTE*)decodedBuffer)+pOut, &outS, ((BYTE*)compressedBuffer)+pIn, &inS); in basicUnitTests() 200 pIn += inS; in basicUnitTests() 203 readSize = pIn; in basicUnitTests()
|
| /freebsd-12.1/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 957 sqlite3_value *pIn = argv[i]; in tclSqlFunc() local 961 switch( sqlite3_value_type(pIn) ){ in tclSqlFunc() 963 int bytes = sqlite3_value_bytes(pIn); in tclSqlFunc() 964 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes); in tclSqlFunc() 968 sqlite_int64 v = sqlite3_value_int64(pIn); in tclSqlFunc() 977 double r = sqlite3_value_double(pIn); in tclSqlFunc() 986 int bytes = sqlite3_value_bytes(pIn); in tclSqlFunc() 987 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes); in tclSqlFunc()
|
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.c | 35675 while( pIn ){ 35676 p = pIn; 37266 if( pIn->pLeft ){ 37274 rowSetTreeToList(pIn->pRight, &pIn->pRight, ppLast); 37276 *ppLast = pIn; 64008 Mem *pIn; 68801 Mem *pIn; 94297 sqlite3ExprCodeCopy(pParse, pIn->iMem, regPrev+1, pIn->nMem); 94387 sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iMem, pIn->nMem); 103831 if( pIn ){ [all …]
|