Searched refs:pMatch (Results 1 – 5 of 5) sorted by relevance
/third_party/zlib/ |
D | zlib2ansi | 60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ; 84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
|
/third_party/lz4/lib/ |
D | lz4.c | 659 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument 664 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count() 666 pIn+=STEPSIZE; pMatch+=STEPSIZE; in LZ4_count() 672 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count() 673 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count() 678 …f ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatc… in LZ4_count() 679 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count() 680 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()
|
/third_party/sqlite/src/ |
D | shell.c | 21166 struct ArSwitch *pMatch = 0; /* Matching option */ in arParseCommand() local 21171 if( pMatch ){ in arParseCommand() 21174 pMatch = pOpt; in arParseCommand() 21179 if( pMatch==0 ){ in arParseCommand() 21182 if( pMatch->bArg ){ in arParseCommand() 21188 if( arProcessSwitch(pAr, pMatch->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()
|
D | sqlite3.c | 103653 SrcItem *pMatch, /* Source table containing the column */ 103658 pNew->iTable = pMatch->iCursor; 103660 pNew->y.pTab = pMatch->pTab; 103661 assert( (pMatch->fg.jointype & (JT_LEFT|JT_LTORJ))!=0 ); 103708 SrcItem *pMatch = 0; /* The matching pSrcList item */ 103805 extendFJMatch(pParse, &pFJMatch, pMatch, pExpr->iColumn); 103810 pMatch = pItem; 103861 extendFJMatch(pParse, &pFJMatch, pMatch, pExpr->iColumn); 103865 pMatch = pItem; 103876 pMatch = pItem; [all …]
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 106038 +** Create a new expression term for the column specified by pMatch and 106046 + SrcItem *pMatch, /* Source table containing the column */ 106051 + pNew->iTable = pMatch->iCursor; 106053 + pNew->y.pTab = pMatch->pTab; 106054 + assert( (pMatch->fg.jointype & (JT_LEFT|JT_LTORJ))!=0 ); 106100 - pMatch = pItem; 106127 + extendFJMatch(pParse, &pFJMatch, pMatch, pExpr->iColumn); 106132 + pMatch = pItem; 106187 + extendFJMatch(pParse, &pFJMatch, pMatch, pExpr->iColumn); 106191 pMatch = pItem; [all …]
|