• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/crypto/aes/ppc/

Lines Matching refs:kp

126     const aes_32t   *kp;
149 kp = kptr;
157 key_in(b0, b1, kp);
160 key_in(b1, b0, kp); // Xor b0(IV) with the key schedule and assign to b1
174 round(fwd_rnd, b1, b0, kp + 1 * N_COLS);
175 round(fwd_rnd, b0, b1, kp + 2 * N_COLS);
176 kp += 2 * N_COLS;
178 round(fwd_rnd, b1, b0, kp + 1 * N_COLS);
179 round(fwd_rnd, b0, b1, kp + 2 * N_COLS);
180 kp += 2 * N_COLS;
183 round(fwd_rnd, b1, b0, kp + 1 * N_COLS);
184 round(fwd_rnd, b0, b1, kp + 2 * N_COLS);
185 round(fwd_rnd, b1, b0, kp + 3 * N_COLS);
186 round(fwd_rnd, b0, b1, kp + 4 * N_COLS);
187 round(fwd_rnd, b1, b0, kp + 5 * N_COLS);
188 round(fwd_rnd, b0, b1, kp + 6 * N_COLS);
189 round(fwd_rnd, b1, b0, kp + 7 * N_COLS);
190 round(fwd_rnd, b0, b1, kp + 8 * N_COLS);
191 round(fwd_rnd, b1, b0, kp + 9 * N_COLS);
195 round(fwd_lrnd, b0, b1, kp +10 * N_COLS);
204 kp += N_COLS;
205 round(fwd_rnd, b1, b0, kp);
206 kp += N_COLS;
207 round(fwd_rnd, b0, b1, kp);
209 kp += N_COLS;
210 round(fwd_rnd, b1, b0, kp);
214 kp += N_COLS;
215 round(fwd_rnd, b1, b0, kp);
222 kp += N_COLS;
223 round(fwd_lrnd, b0, b1, kp);
295 const aes_32t *kp;
323 kp = kptr;
325 key_in(b0, b1, kp);
332 round(inv_rnd, b1, b0, kp - 1 * N_COLS);
333 round(inv_rnd, b0, b1, kp - 2 * N_COLS);
334 kp -= 2 * N_COLS;
336 round(inv_rnd, b1, b0, kp - 1 * N_COLS);
337 round(inv_rnd, b0, b1, kp - 2 * N_COLS);
338 kp -= 2 * N_COLS;
341 round(inv_rnd, b1, b0, kp - 1 * N_COLS);
342 round(inv_rnd, b0, b1, kp - 2 * N_COLS);
343 round(inv_rnd, b1, b0, kp - 3 * N_COLS);
344 round(inv_rnd, b0, b1, kp - 4 * N_COLS);
345 round(inv_rnd, b1, b0, kp - 5 * N_COLS);
346 round(inv_rnd, b0, b1, kp - 6 * N_COLS);
347 round(inv_rnd, b1, b0, kp - 7 * N_COLS);
348 round(inv_rnd, b0, b1, kp - 8 * N_COLS);
349 round(inv_rnd, b1, b0, kp - 9 * N_COLS);
353 round(inv_lrnd, b0, b1, kp - 10 * N_COLS);
362 kp -= N_COLS;
363 round(inv_rnd, b1, b0, kp);
364 kp -= N_COLS;
365 round(inv_rnd, b0, b1, kp);
367 kp -= N_COLS;
368 round(inv_rnd, b1, b0, kp);
372 kp -= N_COLS;
373 round(inv_rnd, b1, b0, kp);
380 kp -= N_COLS;
381 round(inv_lrnd, b0, b1, kp);