fp_maskr          183 ext/standard/crypt_freesec.c static uint32_t fp_maskl[8][256], fp_maskr[8][256];
fp_maskr          282 ext/standard/crypt_freesec.c 			*(fr = &fp_maskr[k][i]) = 0;
fp_maskr          568 ext/standard/crypt_freesec.c 	*r_out	= fp_maskr[0][l >> 24]
fp_maskr          569 ext/standard/crypt_freesec.c 		| fp_maskr[1][(l >> 16) & 0xff]
fp_maskr          570 ext/standard/crypt_freesec.c 		| fp_maskr[2][(l >> 8) & 0xff]
fp_maskr          571 ext/standard/crypt_freesec.c 		| fp_maskr[3][l & 0xff]
fp_maskr          572 ext/standard/crypt_freesec.c 		| fp_maskr[4][r >> 24]
fp_maskr          573 ext/standard/crypt_freesec.c 		| fp_maskr[5][(r >> 16) & 0xff]
fp_maskr          574 ext/standard/crypt_freesec.c 		| fp_maskr[6][(r >> 8) & 0xff]
fp_maskr          575 ext/standard/crypt_freesec.c 		| fp_maskr[7][r & 0xff];