Lines Matching refs:ti
33 unsigned long ti[2]; in IDEA_cfb64_encrypt() local
46 ti[0] = v0; in IDEA_cfb64_encrypt()
48 ti[1] = v1; in IDEA_cfb64_encrypt()
49 IDEA_encrypt((unsigned long *)ti, schedule); in IDEA_cfb64_encrypt()
51 t = ti[0]; in IDEA_cfb64_encrypt()
53 t = ti[1]; in IDEA_cfb64_encrypt()
66 ti[0] = v0; in IDEA_cfb64_encrypt()
68 ti[1] = v1; in IDEA_cfb64_encrypt()
69 IDEA_encrypt((unsigned long *)ti, schedule); in IDEA_cfb64_encrypt()
71 t = ti[0]; in IDEA_cfb64_encrypt()
73 t = ti[1]; in IDEA_cfb64_encrypt()
84 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in IDEA_cfb64_encrypt()