HomeSort by: relevance | last modified time | path
    Searched defs:bucketlens (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/ipf/netinet/
ip_state.c 5151 u_int *bucketlens; local in function:ipf_state_rehash
5170 KMALLOCS(bucketlens, u_int *, newsize * sizeof(u_int));
5171 if (bucketlens == NULL) {
5179 KFREES(bucketlens, newsize * sizeof(*bucketlens));
5190 bzero((char *)bucketlens, newsize * sizeof(u_int));
5210 softs->ipf_state_stats.iss_bucketlen = bucketlens;
ip_nat.c 7908 u_int *bucketlens[2]; local in function:ipf_nat_rehash
7924 bucketlens[0] = NULL;
7925 bucketlens[1] = NULL;
7942 KMALLOCS(bucketlens[0], u_int *, newsize * sizeof(u_int));
7943 if (bucketlens[0] == NULL) {
7948 KMALLOCS(bucketlens[1], u_int *, newsize * sizeof(u_int));
7949 if (bucketlens[1] == NULL) {
7963 bzero((char *)bucketlens[0], newsize * sizeof(u_int));
7964 bzero((char *)bucketlens[1], newsize * sizeof(u_int));
7986 softn->ipf_nat_stats.ns_side[0].ns_bucketlen = bucketlens[0]
    [all...]

Completed in 53 milliseconds