Lines Matching refs:ti
112 uchar_t i, j, ti, tj; in arcfour_crypt() local
171 ti = arr[i]; in arcfour_crypt()
172 j = j + ti; in arcfour_crypt()
174 arr[j] = ti; in arcfour_crypt()
176 out[ii] = in[ii] ^ arr[(ti + tj) & 0xff]; in arcfour_crypt()
188 ti = arr[i]; in arcfour_crypt()
189 j = j + ti; in arcfour_crypt()
191 arr[j] = ti; in arcfour_crypt()
193 arr_ij = arr[(ti + tj) & 0xff]; in arcfour_crypt()
198 ti = arr[i]; in arcfour_crypt()
199 j = j + ti; in arcfour_crypt()
201 arr[j] = ti; in arcfour_crypt()
208 arr_ij = arr[(ti + tj) & 0xff]; in arcfour_crypt()