Home | History | Annotate | Download | only in nss

Lines Matching refs:sizeLo

400     unsigned int inBuf = ctx->sizeLo & 0x3f;
405 if ((ctx->sizeLo += inputLen) < inputLen)
436 unsigned int inBuf = ctx->sizeLo & 0x3f;
443 hi = (ctx->sizeHi << 3) | (ctx->sizeLo >> 29);
444 lo = (ctx->sizeLo << 3);
664 PRUint64 sizeLo; /* 64-bit count of hashed bytes. */
1052 inBuf = (unsigned int)ctx->sizeLo & 0x7f;
1054 ctx->sizeLo += inputLen;
1056 inBuf = (unsigned int)ctx->sizeLo.lo & 0x7f;
1057 ctx->sizeLo.lo += inputLen;
1058 if (ctx->sizeLo.lo < inputLen) ctx->sizeLo.hi++;
1090 unsigned int inBuf = (unsigned int)ctx->sizeLo & 0x7f;
1093 lo = (ctx->sizeLo << 3);
1095 unsigned int inBuf = (unsigned int)ctx->sizeLo.lo & 0x7f;
1097 PRUint64 lo = ctx->sizeLo;