Searched refs:opt_len (Results 1 - 11 of 11) sorted by relevance

/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-pgm.c174 u_int8_t opt_type, opt_len, flags1, flags2; local
497 opt_len = *bp++;
498 if (opt_len != 4) {
499 (void)printf("[Bad OPT_LENGTH option, length %u != 4]", opt_len);
517 opt_len = *bp++;
518 if (opt_len < PGM_MIN_OPT_LEN) {
519 (void)printf("[Bad option, length %u < %u]", opt_len,
523 if (opts_len < opt_len) {
527 if (!TTEST2(*bp, opt_len - 2)) {
534 if (opt_len !
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dopts-common.c54 size_t mn, mx, md, opt_len; local
66 opt_len = cl_options[md].opt_len;
67 comp = strncmp (input, cl_options[md].opt_text + 1, opt_len);
88 if (!strncmp (input, opt->opt_text + 1, opt->opt_len)
89 && (input[opt->opt_len] == '\0' || (opt->flags & CL_JOINED)))
H A Dopts.h48 unsigned char opt_len; member in struct:cl_option
H A Dopts.c517 arg = argv[0] + cl_options[opt_index].opt_len + 1;
/freebsd-9.3-release/lib/libc/net/
H A Dsctp_sys_calls.c372 socklen_t opt_len; local
380 opt_len = (socklen_t) sizeof(sctp_assoc_t);
382 &asoc, &opt_len) != 0) {
386 opt_len = (socklen_t) ((size_t)asoc + sizeof(struct sctp_getaddresses));
387 addrs = calloc(1, (size_t)opt_len);
395 addrs, &opt_len) != 0) {
402 lim = (caddr_t)addrs + opt_len;
428 socklen_t opt_len; local
436 opt_len = (socklen_t) sizeof(int);
438 &size_of_addresses, &opt_len) !
[all...]
/freebsd-9.3-release/lib/libz/
H A Dtrees.c420 s->opt_len = s->static_len = 0L;
485 * The length opt_len is updated; static_len is also updated if stree is
525 s->opt_len += (ulg)f * (bits + xbits);
558 s->opt_len += ((long)bits - (long)tree[m].Len)
614 * and corresponding code. The length opt_len is updated; static_len is
652 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
812 /* opt_len now includes the length of the tree representations, except
823 /* Update opt_len to include the bit length tree and counts */
824 s->opt_len += 3*(max_blindex+1) + 5+5+4;
826 s->opt_len,
[all...]
H A Ddeflate.h247 ulg opt_len; /* bit length of current block with optimal trees */ member in struct:internal_state
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dtrees.c422 s->opt_len = s->static_len = 0L;
487 * The length opt_len is updated; static_len is also updated if stree is
527 s->opt_len += (ulg)f * (bits + xbits);
560 s->opt_len += ((long)bits - (long)tree[m].Len)
616 * and corresponding code. The length opt_len is updated; static_len is
654 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
814 /* opt_len now includes the length of the tree representations, except
825 /* Update opt_len to include the bit length tree and counts */
826 s->opt_len += 3*(max_blindex+1) + 5+5+4;
828 s->opt_len,
[all...]
H A Ddeflate.h244 ulg opt_len; /* bit length of current block with optimal trees */ member in struct:internal_state
/freebsd-9.3-release/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c96 int error, opt_len; local
98 error = vfs_getopt(opts, name, (void **)&opt_value, &opt_len);
101 if (opt_len == 0 || opt_value == NULL)
103 if (opt_value[0] == '\0' || opt_value[opt_len - 1] != '\0')
/freebsd-9.3-release/sys/net/
H A Dzlib.c494 ulg opt_len; /* bit length of current block with optimal trees */ member in struct:deflate_state
2180 s->opt_len = s->static_len = 0L;
2245 * The length opt_len is updated; static_len is also updated if stree is
2285 s->opt_len += (ulg)f * (bits + xbits);
2318 s->opt_len += ((long)bits - (long)tree[m].Len)
2374 * and corresponding code. The length opt_len is updated; static_len is
2412 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
2571 /* opt_len now includes the length of the tree representations, except
2582 /* Update opt_len to include the bit length tree and counts */
2583 s->opt_len
[all...]

Completed in 111 milliseconds