Home
last modified time | relevance | path

Searched refs:pMatch (Results 1 – 5 of 5) 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.c394 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument
400 size_t diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
401 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()
406 … (LZ4_64bits()) if ((pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatc… in LZ4_count()
407 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count()
408 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()
/external/pdfium/xfa/src/fgas/src/font/
Dfx_stdfontmgr.cpp348 FX_LPCFONTDESCRIPTOR pMatch = m_FontFaces.GetPtrAt(i); in FindFont() local
349 if (*pMatch == *pDesc) { in FindFont()
350 return pMatch; in FindFont()
/external/sqlite/dist/
Dsqlite3.c83696 struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
83753 pMatch = pItem;
83771 pMatch = pItem;
83784 pMatch = pItem;
83791 if( pMatch ){
83792 pExpr->iTable = pMatch->iCursor;
83793 pExpr->pTab = pMatch->pTab;
83795 assert( (pMatch->fg.jointype & JT_RIGHT)==0 );
83796 if( (pMatch->fg.jointype & JT_LEFT)!=0 ){
83863 && pMatch
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c83678 struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
83735 pMatch = pItem;
83753 pMatch = pItem;
83766 pMatch = pItem;
83773 if( pMatch ){
83774 pExpr->iTable = pMatch->iCursor;
83775 pExpr->pTab = pMatch->pTab;
83777 assert( (pMatch->fg.jointype & JT_RIGHT)==0 );
83778 if( (pMatch->fg.jointype & JT_LEFT)!=0 ){
83845 && pMatch
[all …]