Searched refs:dpts (Results 1 – 9 of 9) sorted by relevance
/third_party/iptables/extensions/ |
D | libxt_udp.c | 32 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)}, 34 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)}, 43 udpinfo->spts[1] = udpinfo->dpts[1] = 0xFFFF; in udp_init() 114 print_ports("dpt", udp->dpts[0], udp->dpts[1], in udp_print() 140 if (udpinfo->dpts[0] != 0 in udp_save() 141 || udpinfo->dpts[1] != 0xFFFF) { in udp_save() 144 if (udpinfo->dpts[0] in udp_save() 145 != udpinfo->dpts[1]) in udp_save() 147 udpinfo->dpts[0], in udp_save() 148 udpinfo->dpts[1]); in udp_save() [all …]
|
D | libxt_tcp.c | 132 tcpinfo->spts[1] = tcpinfo->dpts[1] = 0xFFFF; in tcp_init() 161 parse_tcp_ports(optarg, tcpinfo->dpts); in tcp_parse() 301 print_ports("dpt", tcp->dpts[0], tcp->dpts[1], in tcp_print() 333 if (tcpinfo->dpts[0] != 0 in tcp_save() 334 || tcpinfo->dpts[1] != 0xFFFF) { in tcp_save() 337 if (tcpinfo->dpts[0] in tcp_save() 338 != tcpinfo->dpts[1]) in tcp_save() 340 tcpinfo->dpts[0], in tcp_save() 341 tcpinfo->dpts[1]); in tcp_save() 344 tcpinfo->dpts[0]); in tcp_save() [all …]
|
D | libxt_dccp.c | 53 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)}, 55 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)}, 235 print_ports("dpt", einfo->dpts[0], einfo->dpts[1], in dccp_print() 270 if (einfo->dpts[0] != einfo->dpts[1]) in dccp_save() 272 einfo->dpts[0], einfo->dpts[1]); in dccp_save() 274 printf(" --dport %u", einfo->dpts[0]); in dccp_save() 363 einfo->dpts[0]); in dccp_xlate() 365 if (einfo->dpts[0] != einfo->dpts[1]) in dccp_xlate() 366 xt_xlate_add(xl, "-%u", einfo->dpts[1]); in dccp_xlate()
|
D | libxt_sctp.c | 271 parse_sctp_ports(optarg, einfo->dpts); in sctp_parse() 439 print_ports("dpt", einfo->dpts[0], einfo->dpts[1], in sctp_print() 472 if (einfo->dpts[0] != einfo->dpts[1]) in sctp_save() 474 einfo->dpts[0], einfo->dpts[1]); in sctp_save() 476 printf(" --dport %u", einfo->dpts[0]); in sctp_save() 513 if (einfo->dpts[0] != einfo->dpts[1]) in sctp_xlate() 516 einfo->dpts[0], einfo->dpts[1]); in sctp_xlate() 520 einfo->dpts[0]); in sctp_xlate()
|
/third_party/iptables/include/linux/netfilter/ |
D | xt_tcpudp.h | 9 __u16 dpts[2]; /* Destination port range. */ member 26 __u16 dpts[2]; /* Destination port range. */ member
|
D | xt_dccp.h | 14 __u16 dpts[2]; /* Min, Max */ member
|
D | xt_sctp.h | 21 __u16 dpts[2]; /* Min, Max */ member
|
/third_party/ffmpeg/libavfilter/ |
D | vf_untile.c | 35 int64_t dpts, pts; member 101 s->dpts = av_rescale_q(1, dt, outlink->time_base); in config_output() 103 s->dpts, dt.num, dt.den); in config_output() 152 s->pts += s->dpts; in activate()
|
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 1783 double dpts = NAN; in get_video_frame() local 1786 dpts = av_q2d(is->video_st->time_base) * frame->pts; in get_video_frame() 1792 double diff = dpts - get_master_clock(is); in get_video_frame()
|