ip_maskr          182 ext/standard/crypt_freesec.c static uint32_t ip_maskl[8][256], ip_maskr[8][256];
ip_maskr          280 ext/standard/crypt_freesec.c 			*(ir = &ip_maskr[k][i]) = 0;
ip_maskr          500 ext/standard/crypt_freesec.c 	r = ip_maskr[0][l_in >> 24]
ip_maskr          501 ext/standard/crypt_freesec.c 	  | ip_maskr[1][(l_in >> 16) & 0xff]
ip_maskr          502 ext/standard/crypt_freesec.c 	  | ip_maskr[2][(l_in >> 8) & 0xff]
ip_maskr          503 ext/standard/crypt_freesec.c 	  | ip_maskr[3][l_in & 0xff]
ip_maskr          504 ext/standard/crypt_freesec.c 	  | ip_maskr[4][r_in >> 24]
ip_maskr          505 ext/standard/crypt_freesec.c 	  | ip_maskr[5][(r_in >> 16) & 0xff]
ip_maskr          506 ext/standard/crypt_freesec.c 	  | ip_maskr[6][(r_in >> 8) & 0xff]
ip_maskr          507 ext/standard/crypt_freesec.c 	  | ip_maskr[7][r_in & 0xff];