Lines Matching defs:counter
76 /* tmp = counter || num_bits_returned || [inbyte] */
86 /* (Step 3) counter = 1 (tmp[0] is the 8 bit counter) */
101 * (where tmp = counter || num_bits_returned || [inbyte])
123 /* (Step 4.2) counter++ */
328 unsigned char counter[4];
331 counter[0] = (unsigned char)((reseed_counter >> 24) & 0xff);
332 counter[1] = (unsigned char)((reseed_counter >> 16) & 0xff);
333 counter[2] = (unsigned char)((reseed_counter >> 8) & 0xff);
334 counter[3] = (unsigned char)(reseed_counter & 0xff);
349 && add_bytes(drbg, hash->V, counter, 4);