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.java327 byte[] hashBuf = new byte[mgf1Hash.getDigestSize()]; in maskGeneratorFunction1()
333 while (counter < (length / hashBuf.length)) in maskGeneratorFunction1()
339 mgf1Hash.doFinal(hashBuf, 0); in maskGeneratorFunction1()
341 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length); in maskGeneratorFunction1()
346 if ((counter * hashBuf.length) < length) in maskGeneratorFunction1()
352 mgf1Hash.doFinal(hashBuf, 0); in maskGeneratorFunction1()
354 …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()
355 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++], in BtGetMatches()
368 …distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos), size… in BtGetMatches()
441 p->hashBuf = NULL; in MatchFinderMt_Construct()
448 alloc->Free(alloc, p->hashBuf); in MatchFinderMt_FreeMem()
449 p->hashBuf = NULL; in MatchFinderMt_FreeMem()
481 if (!p->hashBuf) in MatchFinderMt_Create()
483 p->hashBuf = (UInt32 *)alloc->Alloc(alloc, (kHashBufferSize + kBtBufferSize) * sizeof(UInt32)); in MatchFinderMt_Create()
[all …]
DLzFindMt.h69 UInt32 *hashBuf; member