Home | History | Annotate | Download | only in racoon

Lines Matching full:sizeof

111 	    (sizeof(*hdr) + sizeof(*fraghdr) + sizeof(trailer));
124 fraglen = sizeof(*hdr)
125 + sizeof(*fraghdr)
140 fraghdr->len = htons(fraglen - sizeof(*hdr));
173 return ntohl(hp[MD5_DIGEST_LENGTH / sizeof(*hp)]);
190 if (msg->l < sizeof(*isakmp) + sizeof(*frag)) {
200 * whose size is sizeof(*frag)
202 if (msg->l < sizeof(*isakmp) + ntohs(frag->len) ||
203 ntohs(frag->len) < sizeof(*frag) + 1) {
208 if ((buf = vmalloc(ntohs(frag->len) - sizeof(*frag))) == NULL) {
213 if ((item = racoon_malloc(sizeof(*item))) == NULL) {
342 if ((buf = vrealloc(buf, len + sizeof(cap))) == NULL) {