comp_maskr        185 ext/standard/crypt_freesec.c static uint32_t comp_maskl[8][128], comp_maskr[8][128];
comp_maskr        312 ext/standard/crypt_freesec.c 			*(ir = &comp_maskr[k][i]) = 0;
comp_maskr        449 ext/standard/crypt_freesec.c 		data->en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f]
comp_maskr        450 ext/standard/crypt_freesec.c 				| comp_maskr[1][(t0 >> 14) & 0x7f]
comp_maskr        451 ext/standard/crypt_freesec.c 				| comp_maskr[2][(t0 >> 7) & 0x7f]
comp_maskr        452 ext/standard/crypt_freesec.c 				| comp_maskr[3][t0 & 0x7f]
comp_maskr        453 ext/standard/crypt_freesec.c 				| comp_maskr[4][(t1 >> 21) & 0x7f]
comp_maskr        454 ext/standard/crypt_freesec.c 				| comp_maskr[5][(t1 >> 14) & 0x7f]
comp_maskr        455 ext/standard/crypt_freesec.c 				| comp_maskr[6][(t1 >> 7) & 0x7f]
comp_maskr        456 ext/standard/crypt_freesec.c 				| comp_maskr[7][t1 & 0x7f];