Home | History | Annotate | Download | only in nss

Lines Matching defs:counter

24     PRUint32 counter, rounds;
36 for (counter = 0; counter < rounds; counter++) {
37 C[0] = (unsigned char)((counter >> 24) & 0xff);
38 C[1] = (unsigned char)((counter >> 16) & 0xff);
39 C[2] = (unsigned char)((counter >> 8) & 0xff);
40 C[3] = (unsigned char)(counter & 0xff);
48 tempHash = mask + counter * hash->length;
49 if (counter != (rounds-1)) {
54 PORT_Memcpy(tempHash, temp, maskLen - counter * hash->length);