Searched refs:ctr32 (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/modes/
H A Dctr.c161 unsigned int n, ctr32; local
175 ctr32 = GETU32(ivec + 12);
188 ctr32 += (uint32_t)blocks;
189 if (ctr32 < blocks) {
190 blocks -= ctr32;
191 ctr32 = 0;
195 PUTU32(ivec + 12, ctr32);
197 if (ctr32 == 0) {
208 ++ctr32;
209 PUTU32(ivec + 12, ctr32);
[all...]

Completed in 25 milliseconds