Searched refs:any (Results 1 - 25 of 385) sorted by relevance

1234567891011>>

/freebsd-current/sbin/natd/samples/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/freebsd-current/libexec/rc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
88 ${fwcmd} add 400 deny all from any to ::1
89 ${fwcmd} add 500 deny all from ::1 to any
108 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 1
111 ${fwcmd} add pass ipv6-icmp from any to any icmp6type
[all...]
/freebsd-current/share/examples/ipfilter/rules/
H A DBASIC_1.FW27 block in log on ed0 from w.x.y.z/24 to any head 200
36 block in log quick from 127.0.0.0/8 to any group 100
37 block in log quick from any to 127.0.0.0/8 group 100
38 block in log quick from 127.0.0.0/8 to any group 200
39 block in log quick from any to 127.0.0.0/8 group 200
49 block in log quick from 10.0.0.0/8 to any group 100
50 block in log quick from 192.168.0.0/16 to any group 100
51 block in log quick from 172.16.0.0/12 to any group 100
55 block in log quick from a.b.c.d/24 to any group 100
60 pass in quick proto udp from any t
[all...]
H A DBASIC_2.FW26 block in log on ed0 from w.x.y.z/24 to any head 200
34 block in log quick from 10.0.0.0/8 to any group 100
35 block in log quick from 192.168.0.0/16 to any group 100
36 block in log quick from 172.16.0.0/12 to any group 100
40 block in log quick from a.b.c.d/24 to any group 100
47 block in log quick from 127.0.0.0/8 to any group 100
48 block in log quick from any to 127.0.0.0/8 group 100
49 block in log quick from 127.0.0.0/8 to any group 200
50 block in log quick from any to 127.0.0.0/8 group 200
55 # Allow any communicatio
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; local
58 * Skip white space and pick up leading +/- sign if any.
98 * Set any if any `digits' consumed; make it negative to indicate
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1;
134 any = -1;
138 any
[all...]
H A Dstrtoull.c55 int neg, any, cutlim; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
92 if (any < 0)
95 any = -1;
99 any = 1;
104 if (neg && any > 0)
107 *endptr = (char *) (any ? s - 1 : nptr);
H A Dstrtoul.c53 int neg, any, cutlim; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
90 if (any < 0)
93 any = -1;
97 any = 1;
102 if (neg && any > 0)
105 *endptr = (char *) (any ? s - 1 : nptr);
/freebsd-current/lib/libc/iconv/
H A D_strtoul.h52 int any, cutlim, i, neg; local
65 * Skip white space and pick up leading +/- sign if any.
105 for (acc = 0, any = 0;; c = *s++) {
114 if (any < 0)
119 any = -1;
122 any = 0;
126 any = 1;
131 if (neg && any > 0)
135 *endptr = __DECONST(void *, any ? s - 1 : nptr);
H A D_strtol.h53 int any, cutlim, i, neg; local
69 * Skip white space and pick up leading +/- sign if any.
118 * Set any if any `digits' consumed; make it negative to indicate
131 for (acc = 0, any = 0;; c = *s++) {
140 if (any < 0)
146 any = -1;
149 any = 0;
153 any = 1;
161 any
[all...]
/freebsd-current/sys/libkern/
H A Dstrtol.c53 int neg = 0, any, cutlim; local
56 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
97 for (acc = 0, any = 0;; c = *s++) {
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
109 any = -1;
111 any = 1;
116 if (any < 0) {
121 *endptr = __DECONST(char *, any
[all...]
H A Dstrtoq.c53 int neg, any, cutlim; local
56 * Skip white space and pick up leading +/- sign if any.
96 * Set any if any `digits' consumed; make it negative to indicate
103 for (acc = 0, any = 0;; c = *s++) {
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
115 any = -1;
117 any = 1;
122 if (any < 0) {
127 *endptr = __DECONST(char *, any
[all...]
H A Dstrtoul.c53 int neg = 0, any, cutlim; local
76 for (acc = 0, any = 0;; c = *s++) {
87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
88 any = -1;
90 any = 1;
95 if (any < 0) {
100 *endptr = __DECONST(char *, any ? s - 1 : nptr);
H A Dstrtouq.c53 int neg, any, cutlim; local
80 for (acc = 0, any = 0;; c = *s++) {
91 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
92 any = -1;
94 any = 1;
99 if (any < 0) {
104 *endptr = __DECONST(char *, any ? s - 1 : nptr);
/freebsd-current/usr.sbin/ifmcstat/
H A Dprintb.c42 int i, any = 0; local
55 if (any)
57 any = 1;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/linux_dos_attributes/
H A Dread_dos_attributes.c48 bool any = false; local
51 if (any)
54 any = true;
56 if (any)
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dany.cpp9 #include <any>
12 const char* bad_any_cast::what() const noexcept { return "bad any cast"; }
26 const char* bad_any_cast::what() const noexcept { return "bad any cast"; }
/freebsd-current/lib/libc/stdlib/
H A Dstrtoll.c57 int neg, any, cutlim; local
61 * Skip white space and pick up leading +/- sign if any.
96 acc = any = 0;
115 * Set 'any' if any `digits' consumed; make it negative to indicate
133 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
134 any = -1;
136 any = 1;
141 if (any < 0) {
144 } else if (!any) {
[all...]
H A Dstrtol.c57 int neg, any, cutlim; local
61 * Skip white space and pick up leading +/- sign if any.
95 acc = any = 0;
113 * Set 'any' if any `digits' consumed; make it negative to indicate
131 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
132 any = -1;
134 any = 1;
139 if (any < 0) {
142 } else if (!any) {
[all...]
H A Dstrtoull.c57 int neg, any, cutlim; local
93 acc = any = 0;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 any = -1;
113 any = 1;
118 if (any < 0) {
121 } else if (!any) {
127 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c56 int neg, any, cutlim; local
92 acc = any = 0;
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
110 any = -1;
112 any = 1;
117 if (any < 0) {
120 } else if (!any) {
126 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoumax.c57 int neg, any, cutlim; local
93 acc = any = 0;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 any = -1;
113 any = 1;
118 if (any < 0) {
121 } else if (!any) {
127 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoimax.c57 int neg, any, cutlim; local
61 * Skip white space and pick up leading +/- sign if any.
95 acc = any = 0;
114 * Set 'any' if any `digits' consumed; make it negative to indicate
132 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
133 any = -1;
135 any = 1;
140 if (any < 0) {
143 } else if (!any) {
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dstrto.c53 register int any, cutlim; local
56 ** Skip white space and pick up leading +/- sign if any.
102 ** Set any if any `digits' consumed; make it negative to indicate
118 for (acc = 0, any = 0;; c = (unsigned char) *s++)
128 if (any < 0)
134 any = -1;
140 any = 1;
149 any = -1;
155 any
194 register int any, cutlim; local
[all...]
/freebsd-current/lib/libc/locale/
H A Dwcstol.c55 int neg, any, cutlim; local
91 acc = any = 0;
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
116 any = -1;
118 any = 1;
123 if (any < 0) {
126 } else if (!any) {
132 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoul.c55 int neg, any, cutlim; local
91 acc = any = 0;
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
114 any = -1;
116 any = 1;
121 if (any < 0) {
124 } else if (!any) {
130 *endptr = (wchar_t *)(any ? s - 1 : nptr);

Completed in 265 milliseconds

1234567891011>>