Home
last modified time | relevance | path

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

/external/zlib/src/
Dzlib2ansi60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
/external/lz4/lib/
Dlz4.c351 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument
356 reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
357 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()
362 …f ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatc… in LZ4_count()
363 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count()
364 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()
/external/sqlite/dist/orig/
Dshell.c11868 struct ArSwitch *pMatch = 0; /* Matching option */ in arParseCommand() local
11873 if( pMatch ){ in arParseCommand()
11876 pMatch = pOpt; in arParseCommand()
11881 if( pMatch==0 ){ in arParseCommand()
11884 if( pMatch->bArg ){ in arParseCommand()
11890 if( arProcessSwitch(pAr, pMatch->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()
Dsqlite3.c91344 struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
91402 pMatch = pItem;
91420 pMatch = pItem;
91433 pMatch = pItem;
91440 if( pMatch ){
91441 pExpr->iTable = pMatch->iCursor;
91442 pExpr->pTab = pMatch->pTab;
91444 assert( (pMatch->fg.jointype & JT_RIGHT)==0 );
91445 if( (pMatch->fg.jointype & JT_LEFT)!=0 ){
91511 && pMatch
[all …]
/external/sqlite/dist/
Dshell.c11891 struct ArSwitch *pMatch = 0; /* Matching option */ in arParseCommand() local
11896 if( pMatch ){ in arParseCommand()
11899 pMatch = pOpt; in arParseCommand()
11904 if( pMatch==0 ){ in arParseCommand()
11907 if( pMatch->bArg ){ in arParseCommand()
11913 if( arProcessSwitch(pAr, pMatch->eSwitch, zArg) ) return SQLITE_ERROR; in arParseCommand()
Dsqlite3.c91344 struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
91402 pMatch = pItem;
91420 pMatch = pItem;
91433 pMatch = pItem;
91440 if( pMatch ){
91441 pExpr->iTable = pMatch->iCursor;
91442 pExpr->pTab = pMatch->pTab;
91444 assert( (pMatch->fg.jointype & JT_RIGHT)==0 );
91445 if( (pMatch->fg.jointype & JT_LEFT)!=0 ){
91511 && pMatch
[all …]