Home
last modified time | relevance | path

Searched refs:sizeLo (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/crypto/third_party/nss/
Dsha512.cc400 unsigned int inBuf = ctx->sizeLo & 0x3f; in SHA256_Update()
405 if ((ctx->sizeLo += inputLen) < inputLen) in SHA256_Update()
436 unsigned int inBuf = ctx->sizeLo & 0x3f; in SHA256_End()
443 hi = (ctx->sizeHi << 3) | (ctx->sizeLo >> 29); in SHA256_End()
444 lo = (ctx->sizeLo << 3); in SHA256_End()
663 PRUint64 sizeLo; /* 64-bit count of hashed bytes. */
1051 inBuf = (unsigned int)ctx->sizeLo & 0x7f;
1053 ctx->sizeLo += inputLen;
1055 inBuf = (unsigned int)ctx->sizeLo.lo & 0x7f;
1056 ctx->sizeLo.lo += inputLen;
[all …]
Dchromium-sha256.h48 PRUint32 sizeHi,sizeLo; /* 64-bit count of hashed bytes. */ member