Home
last modified time | relevance | path

Searched refs:hashBuf (Results 1 – 3 of 3) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
DOAEPEncoding.java329 byte[] hashBuf = new byte[mgf1Hash.getDigestSize()]; in maskGeneratorFunction1()
335 while (counter < (length / hashBuf.length)) in maskGeneratorFunction1()
341 mgf1Hash.doFinal(hashBuf, 0); in maskGeneratorFunction1()
343 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length); in maskGeneratorFunction1()
348 if ((counter * hashBuf.length) < length) in maskGeneratorFunction1()
354 mgf1Hash.doFinal(hashBuf, 0); in maskGeneratorFunction1()
356 …System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, mask.length - (counter * hashBuf.leng… in maskGeneratorFunction1()
/external/lzma/C/
DLzFindMt.c198 … UInt32 *heads = mt->hashBuf + ((numProcessedBlocks++) & kMtHashNumBlocksMask) * kMtHashBlockSize; in HashThreadFunc()
224 p->hashBufPosLimit += p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
225 p->hashNumAvail = p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
350 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++], in BtGetMatches()
363 …distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , siz… in BtGetMatches()
435 p->hashBuf = 0; in MatchFinderMt_Construct()
442 alloc->Free(alloc, p->hashBuf); in MatchFinderMt_FreeMem()
443 p->hashBuf = 0; in MatchFinderMt_FreeMem()
473 if (p->hashBuf == 0) in MatchFinderMt_Create()
475 p->hashBuf = (UInt32 *)alloc->Alloc(alloc, (kHashBufferSize + kBtBufferSize) * sizeof(UInt32)); in MatchFinderMt_Create()
[all …]
DLzFindMt.h69 UInt32 *hashBuf; member