Lines Matching refs:to_permute
500 ufc_long to_permute, inx; in __init_des_r() local
503 to_permute = (((ufc_long)s1 << 4) | in __init_des_r()
508 sb[sg][inx ] = eperm32tab[0][(to_permute >> 24) & 0xff][0]; in __init_des_r()
509 sb[sg][inx+1] = eperm32tab[0][(to_permute >> 24) & 0xff][1]; in __init_des_r()
510 sb[sg][inx ] |= eperm32tab[1][(to_permute >> 16) & 0xff][0]; in __init_des_r()
511 sb[sg][inx+1] |= eperm32tab[1][(to_permute >> 16) & 0xff][1]; in __init_des_r()
512 sb[sg][inx ] |= eperm32tab[2][(to_permute >> 8) & 0xff][0]; in __init_des_r()
513 sb[sg][inx+1] |= eperm32tab[2][(to_permute >> 8) & 0xff][1]; in __init_des_r()
514 sb[sg][inx ] |= eperm32tab[3][(to_permute) & 0xff][0]; in __init_des_r()
515 sb[sg][inx+1] |= eperm32tab[3][(to_permute) & 0xff][1]; in __init_des_r()
520 ((long64)eperm32tab[0][(to_permute >> 24) & 0xff][0] << 32) | in __init_des_r()
521 (long64)eperm32tab[0][(to_permute >> 24) & 0xff][1]; in __init_des_r()
523 ((long64)eperm32tab[1][(to_permute >> 16) & 0xff][0] << 32) | in __init_des_r()
524 (long64)eperm32tab[1][(to_permute >> 16) & 0xff][1]; in __init_des_r()
526 ((long64)eperm32tab[2][(to_permute >> 8) & 0xff][0] << 32) | in __init_des_r()
527 (long64)eperm32tab[2][(to_permute >> 8) & 0xff][1]; in __init_des_r()
529 ((long64)eperm32tab[3][(to_permute) & 0xff][0] << 32) | in __init_des_r()
530 (long64)eperm32tab[3][(to_permute) & 0xff][1]; in __init_des_r()