Searched refs:pc1_table (Results 1 – 1 of 1) sorted by relevance
29 static uint64_t pc1_table[2][128]= variable258 c = pc1_table[0][key >> 57] | in des_ks()259 ((pc1_table[0][(key >> 49) & 127ULL]) << 1) | in des_ks()260 ((pc1_table[0][(key >> 41) & 127ULL]) << 2) | in des_ks()261 ((pc1_table[0][(key >> 33) & 127ULL]) << 3) | in des_ks()262 pc1_table[1][(key >> 25) & 127ULL] | in des_ks()263 ((pc1_table[1][(key >> 17) & 127ULL]) << 1) | in des_ks()264 ((pc1_table[1][(key >> 9) & 127ULL]) << 2) | in des_ks()265 ((pc1_table[1][(key >> 1) & 127ULL]) << 3); in des_ks()