ip_maskl          182 ext/standard/crypt_freesec.c static uint32_t ip_maskl[8][256], ip_maskr[8][256];
ip_maskl          279 ext/standard/crypt_freesec.c 			*(il = &ip_maskl[k][i]) = 0;
ip_maskl          492 ext/standard/crypt_freesec.c 	l = ip_maskl[0][l_in >> 24]
ip_maskl          493 ext/standard/crypt_freesec.c 	  | ip_maskl[1][(l_in >> 16) & 0xff]
ip_maskl          494 ext/standard/crypt_freesec.c 	  | ip_maskl[2][(l_in >> 8) & 0xff]
ip_maskl          495 ext/standard/crypt_freesec.c 	  | ip_maskl[3][l_in & 0xff]
ip_maskl          496 ext/standard/crypt_freesec.c 	  | ip_maskl[4][r_in >> 24]
ip_maskl          497 ext/standard/crypt_freesec.c 	  | ip_maskl[5][(r_in >> 16) & 0xff]
ip_maskl          498 ext/standard/crypt_freesec.c 	  | ip_maskl[6][(r_in >> 8) & 0xff]
ip_maskl          499 ext/standard/crypt_freesec.c 	  | ip_maskl[7][r_in & 0xff];