OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hash2Value
(Results
1 - 6
of
6
) sorted by null
/external/lzma/C/
LzHash.h
19
hash2Value
= temp & (kHash2Size - 1); \
24
hash2Value
= temp & (kHash2Size - 1); \
30
hash2Value
= temp & (kHash2Size - 1); \
41
hash2Value
= (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1);
45
hash2Value
= temp & (kHash2Size - 1); \
50
hash2Value
= temp & (kHash2Size - 1); \
LzFind.c
510
UInt32
hash2Value
, delta2, maxLen, offset;
515
delta2 = p->pos - p->hash[
hash2Value
];
518
p->hash[
hash2Value
] =
543
UInt32
hash2Value
, hash3Value, delta2, delta3, maxLen, offset;
548
delta2 = p->pos - p->hash[
hash2Value
];
552
p->hash[
hash2Value
] =
590
UInt32
hash2Value
, hash3Value, delta2, delta3, maxLen, offset;
595
delta2 = p->pos - p->hash[
hash2Value
];
599
p->hash[
hash2Value
] =
679
UInt32
hash2Value
;
[
all
...]
LzFindMt.c
560
UInt32
hash2Value
, curMatch2;
566
curMatch2 = hash[
hash2Value
];
567
hash[
hash2Value
] = lzPos;
580
UInt32
hash2Value
, hash3Value, curMatch2, curMatch3;
586
curMatch2 = hash[
hash2Value
];
589
hash[
hash2Value
] =
615
UInt32
hash2Value
, hash3Value, hash4Value, curMatch2, curMatch3, curMatch4;
621
curMatch2 = hash[
hash2Value
];
625
hash[
hash2Value
] =
728
UInt32
hash2Value
;
[
all
...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
Hash234.java
26
private int
hash2Value
= 0;
57
hash2Value
= temp & HASH_2_MASK;
67
return hash2Table[
hash2Value
];
79
hash2Table[
hash2Value
] = pos;
/external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java
137
int hashValue,
hash2Value
= 0, hash3Value = 0;
142
hash2Value
= temp & (kHash2Size - 1);
153
int curMatch2 = _hash[
hash2Value
];
155
_hash[
hash2Value
] = _pos;
277
int
hash2Value
= temp & (kHash2Size - 1);
278
_hash[
hash2Value
] = _pos;
/external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs
137
UInt32 hashValue,
hash2Value
= 0, hash3Value = 0;
142
hash2Value
= temp & (kHash2Size - 1);
153
UInt32 curMatch2 = _hash[
hash2Value
];
155
_hash[
hash2Value
] = _pos;
277
UInt32
hash2Value
= temp & (kHash2Size - 1);
278
_hash[
hash2Value
] = _pos;
Completed in 1500 milliseconds