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

/freebsd-10.1-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-10.1-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-10.1-release/lib/libc/net/
H A Dsctp_sys_calls.c399 socklen_t opt_len; local
407 opt_len = (socklen_t) sizeof(sctp_assoc_t);
409 &asoc, &opt_len) != 0) {
413 opt_len = (socklen_t) ((size_t)asoc + sizeof(struct sctp_getaddresses));
414 addrs = calloc(1, (size_t)opt_len);
422 addrs, &opt_len) != 0) {
429 lim = (caddr_t)addrs + opt_len;
455 socklen_t opt_len; local
463 opt_len = (socklen_t) sizeof(int);
465 &size_of_addresses, &opt_len) !
[all...]
/freebsd-10.1-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-10.1-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-10.1-release/sys/net/
H A Dzlib.c501 ulg opt_len; /* bit length of current block with optimal trees */ member in struct:deflate_state
2187 s->opt_len = s->static_len = 0L;
2252 * The length opt_len is updated; static_len is also updated if stree is
2292 s->opt_len += (ulg)f * (bits + xbits);
2325 s->opt_len += ((long)bits - (long)tree[m].Len)
2381 * and corresponding code. The length opt_len is updated; static_len is
2419 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
2578 /* opt_len now includes the length of the tree representations, except
2589 /* Update opt_len to include the bit length tree and counts */
2590 s->opt_len
[all...]
/freebsd-10.1-release/sys/kern/
H A Dvfs_mount.c1511 int error, opt_len; local
1513 error = vfs_getopt(opts, name, (void **)&opt_value, &opt_len);
1516 if (opt_len == 0 || opt_value == NULL)
1518 if (opt_value[0] == '\0' || opt_value[opt_len - 1] != '\0')

Completed in 195 milliseconds