Lines Matching refs:t
45 __u32 t; in byteReverse() local
47 t = (__u32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | in byteReverse()
49 *(__u32 *) buf = t; in byteReverse()
77 register __u32 t; in MD5Update() local
81 t = ctx->bits[0]; in MD5Update()
82 if ((ctx->bits[0] = t + ((__u32) len << 3)) < t) in MD5Update()
86 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update()
90 if (t) { in MD5Update()
91 unsigned char *p = (unsigned char *) ctx->in + t; in MD5Update()
93 t = 64 - t; in MD5Update()
94 if (len < t) { in MD5Update()
98 memmove(p, buf, t); in MD5Update()
101 buf += t; in MD5Update()
102 len -= t; in MD5Update()