Symbol: negate
bin/pax/pat_rep.c
573
int negate;
bin/pax/pat_rep.c
576
if ((negate = (*pattern == '!')) != 0)
bin/pax/pat_rep.c
594
return (ok == negate ? NULL : pattern);
lib/libc/gen/fnmatch.c
152
int negate;
lib/libc/gen/fnmatch.c
158
negate = (**pattern == '!') || (**pattern == '^');
lib/libc/gen/fnmatch.c
159
if (negate)
lib/libc/gen/fnmatch.c
171
return (result ^ negate);
lib/libtls/tls_config.c
230
int negate;
lib/libtls/tls_config.c
245
negate = 0;
lib/libtls/tls_config.c
247
negate = 1;
lib/libtls/tls_config.c
251
if (negate && protos == 0)
lib/libtls/tls_config.c
277
if (negate)
usr.bin/dc/bcode.c
1189
negate(p);
usr.bin/dc/bcode.h
94
void negate(struct number *);
usr.bin/dc/inout.c
225
negate(n);
usr.bin/rsync/rmatch.c
100
int negate, ok;
usr.bin/rsync/rmatch.c
110
if ((negate = (*pattern == '!' || *pattern == '^')))
usr.bin/rsync/rmatch.c
154
return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
usr.bin/ssh/misc.c
2584
int negate = 0;
usr.bin/ssh/misc.c
2588
negate = 1;
usr.bin/ssh/misc.c
2592
return negate ? 0 : 1;
usr.bin/ssh/readconf.c
695
int r, this_result, result = 1, attributes = 0, negate;
usr.bin/ssh/readconf.c
723
if ((negate = (attrib[0] == '!')))
usr.bin/ssh/readconf.c
739
result = negate ? 0 : 1;
usr.bin/ssh/readconf.c
753
*want_final_pass |= !negate;
usr.bin/ssh/readconf.c
755
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
799
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
804
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
809
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
814
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
823
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
828
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
836
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
844
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
857
if (r == (negate ? 1 : 0))
usr.bin/ssh/readconf.c
883
if (r == (negate ? 1 : 0))
usr.bin/top/commands.c
346
char negate;
usr.bin/top/commands.c
359
if ((negate = (*str == '-')) != 0) {
usr.bin/top/commands.c
369
if (negate)
usr.sbin/nsd/simdzone/src/generic/apl.h
15
uint8_t negate = text[0] == '!';
usr.sbin/nsd/simdzone/src/generic/apl.h
22
if (text[negate + 1] != ':')
usr.sbin/nsd/simdzone/src/generic/apl.h
25
switch (text[negate]) {
usr.sbin/nsd/simdzone/src/generic/apl.h
30
if (!(count = scan_ip4(&text[negate+2], &octets[4])))
usr.sbin/nsd/simdzone/src/generic/apl.h
32
count += negate + 2;
usr.sbin/nsd/simdzone/src/generic/apl.h
44
octets[3] = (uint8_t)((negate << 7) | 4);
usr.sbin/nsd/simdzone/src/generic/apl.h
50
if (!(count = scan_ip6(&text[negate+2], &octets[4])))
usr.sbin/nsd/simdzone/src/generic/apl.h
52
count += negate + 2;
usr.sbin/nsd/simdzone/src/generic/apl.h
67
octets[3] = (uint8_t)((negate << 7) | 16);