Lines Matching refs:eperm32tab
237 static ufc_long eperm32tab[4][256][2]; variable
401 _ufc_clearmem((char*)eperm32tab, (int)sizeof(eperm32tab)); in __init_des_r()
408 eperm32tab[comes_from / 8][j][bit / 24] |= BITMASK[bit % 24]; 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()