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

1234567891011>>

/netbsd-6-1-5-RELEASE/dist/ipf/rules/
H A Dserver8 pass in quick on le0 from 128.1.40.0/24 to any
9 block in log quick on le0 from any to any
10 block in log quick on le1 from 128.1.1.0/24 to any
11 pass in quick on le1 from any to any
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 Dtcpstate5 pass out quick on le0 proto tcp from any to any flags S/SAFR keep state
11 pass out quick on le0 proto udp from any to any port = 53 keep state
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/setkey/
H A Dsetkey.conf8 spdadd 127.0.0.0/8 127.0.0.0/8 any -P out none;
9 spdadd 127.0.0.0/8 127.0.0.0/8 any -P in none;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/expr/
H A Dstatic_cast3.C4 struct any struct
9 struct range : public any<range>
22 const any<range>& r = *new range();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dstatic19.C7 struct any { struct in namespace:is_inc_
8 template <class T> any(T const&);
10 int operator++(any const&);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/expr/
H A Dstatic_cast3.C4 struct any struct
9 struct range : public any<range>
22 const any<range>& r = *new range();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/template/
H A Dstatic19.C7 struct any { struct in namespace:is_inc_
8 template <class T> any(T const&);
10 int operator++(any const&);
/netbsd-6-1-5-RELEASE/common/lib/libc/stdlib/
H A D_strtoul.h50 int i, neg, any, cutlim; local
66 * Skip white space and pick up leading +/- sign if any.
96 for (acc = 0, any = 0;; c = *s++) {
105 if (any < 0)
110 any = -1;
113 any = 0;
117 any = 1;
122 if (neg && any > 0)
126 *endptr = __UNCONST(any ? s - 1 : nptr);
H A D_strtol.h51 int i, neg, any, cutlim; local
70 * Skip white space and pick up leading +/- sign if any.
109 * Set any if any `digits' consumed; make it negative to indicate
122 for (acc = 0, any = 0;; c = *s++) {
131 if (any < 0)
137 any = -1;
140 any = 0;
144 any = 1;
152 any
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/autosign/ns2/
H A Dnamed.conf4 * Permission to use, copy, modify, and/or distribute this software for any
44 inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; };
55 allow-query { any; };
56 allow-transfer { any; };
57 allow-update { any; };
64 allow-query { any; };
65 allow-transfer { any; };
66 allow-update { any; };
74 allow-query { any; };
75 allow-transfer { any; };
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/autosign/ns3/
H A Dnamed.conf4 * Permission to use, copy, modify, and/or distribute this software for any
46 inet 10.53.0.3 port 9953 allow { any; } keys { rndc_key; };
69 allow-update { any; };
81 allow-update { any; };
88 allow-update { any; };
95 allow-update { any; };
102 allow-update { any; };
109 allow-update { any; };
116 allow-update { any; };
123 allow-update { any; };
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/clib/
H A Dstrtol.c64 register int neg = 0, any, cutlim; local
67 * Skip white space and pick up leading +/- sign if any.
102 * Set any if any `digits' consumed; make it negative to indicate
108 for (acc = 0, any = 0;; c = *s++) {
117 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
118 any = -1;
120 any = 1;
125 if (any < 0) {
131 *endptr = (char *)(any
[all...]
H A Dstrtoul.c64 register int neg = 0, any, cutlim; local
87 for (acc = 0, any = 0;; c = *s++) {
96 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
97 any = -1;
99 any = 1;
104 if (any < 0) {
110 *endptr = (char *)(any ? s - 1 : nptr);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dstrtoul.c7 * Permission to use, copy, modify, and/or distribute this software for any
81 int neg = 0, any, cutlim; local
104 for (acc = 0, any = 0;; c = *s++) {
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
116 any = -1;
118 any = 1;
123 if (any < 0) {
129 DE_CONST(any ? s - 1 : nptr, *endptr);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/
H A Dstrtoul.c7 * Permission to use, copy, modify, and/or distribute this software for any
87 int neg = 0, any, cutlim; local
110 for (acc = 0, any = 0;; c = *s++) {
121 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
122 any = -1;
124 any = 1;
129 if (any < 0) {
135 DE_CONST(any ? s - 1 : nptr, *endptr);
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/bsd/
H A Dstrtoul.c67 int neg, c, any, cutlim; local
92 for (acc = 0, any = 0;; c = *(const unsigned char*)s++) {
101 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
102 any = -1;
104 any = 1;
109 if (any < 0) {
115 DE_CONST((any ? s - 1 : nptr), *endptr);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dstrtoul.c7 * Permission to use, copy, modify, and/or distribute this software for any
81 int neg = 0, any, cutlim; local
104 for (acc = 0, any = 0;; c = *s++) {
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
116 any = -1;
118 any = 1;
123 if (any < 0) {
129 DE_CONST(any ? s - 1 : nptr, *endptr);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/netbsd-6-1-5-RELEASE/sys/arch/ia64/stand/common/
H A Dstrtol.c63 int neg = 0, any, cutlim; local
71 * Skip white space and pick up leading +/- sign if any.
106 * Set any if any `digits' consumed; make it negative to indicate
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
124 any = -1;
126 any = 1;
131 if (any < 0) {
137 *endptr = (char *)(any
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/locale/
H A D_wcstoul.h56 int neg, any, cutlim; variable
67 * Skip white space and pick up leading +/- sign if any.
97 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
103 if (any < 0)
106 any = -1;
110 any = 1;
115 if (neg && any > 0)
118 *endptr = __UNCONST(any ? s - 1 : nptr);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dstrtol.c96 register int neg = 0, any, cutlim; local
99 * Skip white space and pick up leading +/- sign if any.
134 * Set any if any `digits' consumed; make it negative to indicate
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
150 any = -1;
152 any = 1;
157 if (any < 0) {
163 *endptr = (char *) (any
[all...]

Completed in 378 milliseconds

1234567891011>>