Symbol: negate
bin/pax/pat_rep.c
541
int negate;
bin/pax/pat_rep.c
544
if ((negate = (*pattern == '!')) != 0)
bin/pax/pat_rep.c
562
return (ok == negate ? NULL : pattern);
bin/sh/parser.c
368
int negate, t;
bin/sh/parser.c
370
negate = 0;
bin/sh/parser.c
374
negate = !negate;
bin/sh/parser.c
400
if (negate) {
crypto/heimdal/lib/roken/fnmatch.c
144
int negate, ok;
crypto/heimdal/lib/roken/fnmatch.c
154
if (negate = (*pattern == '!' || *pattern == '^'))
crypto/heimdal/lib/roken/fnmatch.c
174
return (ok == negate ? NULL : pattern);
crypto/heimdal/lib/roken/getarg.c
353
int negate = 0;
crypto/heimdal/lib/roken/getarg.c
371
negate = 0;
crypto/heimdal/lib/roken/getarg.c
383
negate = !negate;
crypto/heimdal/lib/roken/getarg.c
431
*flag = !negate;
crypto/heimdal/lib/roken/getarg.c
436
*flag = negate;
crypto/krb5/src/util/support/fnmatch.c
103
return ok == negate ? NULL : pattern;
crypto/krb5/src/util/support/fnmatch.c
70
int negate, ok;
crypto/krb5/src/util/support/fnmatch.c
82
if ((negate = (*pattern == '!' || *pattern == '^')) != 0)
crypto/openssh/misc.c
2684
int negate = 0;
crypto/openssh/misc.c
2688
negate = 1;
crypto/openssh/misc.c
2692
return negate ? 0 : 1;
crypto/openssh/openbsd-compat/fnmatch.c
157
int negate;
crypto/openssh/openbsd-compat/fnmatch.c
163
negate = (**pattern == '!') || (**pattern == '^');
crypto/openssh/openbsd-compat/fnmatch.c
164
if (negate)
crypto/openssh/openbsd-compat/fnmatch.c
176
return (result ^ negate);
crypto/openssh/readconf.c
707
int r, this_result, result = 1, attributes = 0, negate;
crypto/openssh/readconf.c
735
if ((negate = (attrib[0] == '!')))
crypto/openssh/readconf.c
751
result = negate ? 0 : 1;
crypto/openssh/readconf.c
765
*want_final_pass |= !negate;
crypto/openssh/readconf.c
767
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
811
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
816
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
821
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
826
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
835
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
840
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
848
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
856
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
869
if (r == (negate ? 1 : 0))
crypto/openssh/readconf.c
895
if (r == (negate ? 1 : 0))
lib/libc/gen/fnmatch.c
239
int negate, ok;
lib/libc/gen/fnmatch.c
258
if ((negate = (*pattern == '!' || *pattern == '^')))
lib/libc/gen/fnmatch.c
490
return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
stand/ficl/words.c
4966
dictAppendWord(dp, "negate", negate, FW_DEFAULT);
sys/dev/sfxge/common/efx.h
1912
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
210
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
216
_NOTE(ARGUNUSED(negate))
sys/dev/sfxge/common/efx_sram.c
225
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
230
if (negate)
sys/dev/sfxge/common/efx_sram.c
239
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
245
EFX_DWORD_0, (negate) ? 0x55555555 : 0xaaaaaaaa,
sys/dev/sfxge/common/efx_sram.c
246
EFX_DWORD_1, (negate) ? 0x55555555 : 0xaaaaaaaa);
sys/dev/sfxge/common/efx_sram.c
252
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
258
EFX_DWORD_0, (negate) ? 0x00ff00ff : 0xff00ff00,
sys/dev/sfxge/common/efx_sram.c
259
EFX_DWORD_1, (negate) ? 0x00ff00ff : 0xff00ff00);
sys/dev/sfxge/common/efx_sram.c
265
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
279
eqp->eq_u8[index] = (negate) ? ~byte : byte;
sys/dev/sfxge/common/efx_sram.c
286
__in boolean_t negate,
sys/dev/sfxge/common/efx_sram.c
291
if (negate) {
sys/libkern/fnmatch.c
159
int negate, ok;
sys/libkern/fnmatch.c
169
if ( (negate = (*pattern == '!' || *pattern == '^')) )
sys/libkern/fnmatch.c
212
return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
usr.bin/dtc/input_buffer.cc
975
lhs.reset(new unary_operator<'-', std::negate<valty>>(l, std::move(subexpr)));
usr.bin/top/commands.c
467
char negate;
usr.bin/top/commands.c
474
if ((negate = (*str == '-')) != 0)
usr.bin/top/commands.c
484
if (negate)
usr.sbin/config/mkmakefile.cc
391
int compile, match, nreqs, std, filetype, negate,
usr.sbin/config/mkmakefile.cc
463
negate = 0;
usr.sbin/config/mkmakefile.cc
475
negate = 1;
usr.sbin/config/mkmakefile.cc
566
if (negate)
usr.sbin/config/mkmakefile.cc
575
if (negate)
usr.sbin/config/mkmakefile.cc
579
match &= negate;
usr.sbin/config/mkmakefile.cc
581
negate = 0;