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.c196 … UInt32 *heads = mt->hashBuf + ((numProcessedBlocks++) & kMtHashNumBlocksMask) * kMtHashBlockSize; in HashThreadFunc()
222 p->hashBufPosLimit += p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
223 p->hashNumAvail = p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
348 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++], in BtGetMatches()
361 …distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , siz… in BtGetMatches()
433 p->hashBuf = 0; in MatchFinderMt_Construct()
440 alloc->Free(alloc, p->hashBuf); in MatchFinderMt_FreeMem()
441 p->hashBuf = 0; in MatchFinderMt_FreeMem()
472 if (p->hashBuf == 0) in MatchFinderMt_Create()
474 p->hashBuf = (UInt32 *)alloc->Alloc(alloc, (kHashBufferSize + kBtBufferSize) * sizeof(UInt32)); in MatchFinderMt_Create()
[all …]
DLzFindMt.h71 UInt32 *hashBuf; member