OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pMatch
(Results
1 - 2
of
2
) sorted by null
/external/zlib/src/
zlib2ansi
60
my $
pMatch
= '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84
my %tmp = map { /$
pMatch
/; $_ => $pList{$1} }
/external/lz4/lib/
lz4.c
394
static unsigned LZ4_count(const BYTE* pIn, const BYTE*
pMatch
, const BYTE* pInLimit)
400
size_t diff = LZ4_read_ARCH(
pMatch
) ^ LZ4_read_ARCH(pIn);
401
if (!diff) { pIn+=STEPSIZE;
pMatch
+=STEPSIZE; continue; }
406
if (LZ4_64bits()) if ((pIn<(pInLimit-3)) && (LZ4_read32(
pMatch
) == LZ4_read32(pIn))) { pIn+=4;
pMatch
+=4; }
407
if ((pIn<(pInLimit-1)) && (LZ4_read16(
pMatch
) == LZ4_read16(pIn))) { pIn+=2;
pMatch
+=2; }
408
if ((pIn<pInLimit) && (*
pMatch
== *pIn)) pIn++;
[
all
...]
Completed in 92 milliseconds