Lines Matching refs:t
53 uint32_t t; in esp_rom_md5_update() local
57 t = context->bits[0]; in esp_rom_md5_update()
58 if ((context->bits[0] = t + ((uint32_t) len << 3)) < t) in esp_rom_md5_update()
62 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ in esp_rom_md5_update()
66 if (t) { in esp_rom_md5_update()
67 unsigned char *p = (unsigned char *) context->in + t; in esp_rom_md5_update()
69 t = 64 - t; in esp_rom_md5_update()
70 if (len < t) { in esp_rom_md5_update()
74 memcpy(p, buf, t); in esp_rom_md5_update()
77 buf += t; in esp_rom_md5_update()
78 len -= t; in esp_rom_md5_update()
138 uint32_t t; in byteReverse() local
140 t = (uint32_t) ((unsigned) buf[3] << 8 | buf[2]) << 16 | in byteReverse()
142 *(uint32_t *) buf = t; in byteReverse()