fp_maskl          183 ext/standard/crypt_freesec.c static uint32_t fp_maskl[8][256], fp_maskr[8][256];
fp_maskl          281 ext/standard/crypt_freesec.c 			*(fl = &fp_maskl[k][i]) = 0;
fp_maskl          560 ext/standard/crypt_freesec.c 	*l_out	= fp_maskl[0][l >> 24]
fp_maskl          561 ext/standard/crypt_freesec.c 		| fp_maskl[1][(l >> 16) & 0xff]
fp_maskl          562 ext/standard/crypt_freesec.c 		| fp_maskl[2][(l >> 8) & 0xff]
fp_maskl          563 ext/standard/crypt_freesec.c 		| fp_maskl[3][l & 0xff]
fp_maskl          564 ext/standard/crypt_freesec.c 		| fp_maskl[4][r >> 24]
fp_maskl          565 ext/standard/crypt_freesec.c 		| fp_maskl[5][(r >> 16) & 0xff]
fp_maskl          566 ext/standard/crypt_freesec.c 		| fp_maskl[6][(r >> 8) & 0xff]
fp_maskl          567 ext/standard/crypt_freesec.c 		| fp_maskl[7][r & 0xff];