Lines Matching refs:t
73 u32 t; in byteReverse() local
75 t = (u32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | in byteReverse()
77 *(u32 *) buf = t; in byteReverse()
104 u32 t; in MD5Update() local
108 t = ctx->bits[0]; in MD5Update()
109 if ((ctx->bits[0] = t + ((u32) len << 3)) < t) in MD5Update()
113 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in MD5Update()
117 if (t) { in MD5Update()
118 unsigned char *p = (unsigned char *) ctx->in + t; in MD5Update()
120 t = 64 - t; in MD5Update()
121 if (len < t) { in MD5Update()
125 os_memcpy(p, buf, t); in MD5Update()
128 buf += t; in MD5Update()
129 len -= t; in MD5Update()