Home
last modified time | relevance | path

Searched refs:negate (Results 1 – 25 of 86) sorted by relevance

1234

/freebsd/sys/dev/sfxge/common/
H A Defx_sram.c210 __in boolean_t negate, in efx_sram_byte_increment_set() argument
216 _NOTE(ARGUNUSED(negate)) in efx_sram_byte_increment_set()
225 __in boolean_t negate, in efx_sram_all_the_same_set() argument
230 if (negate) in efx_sram_all_the_same_set()
239 __in boolean_t negate, in efx_sram_bit_alternate_set() argument
245 EFX_DWORD_0, (negate) ? 0x55555555 : 0xaaaaaaaa, in efx_sram_bit_alternate_set()
252 __in boolean_t negate, in efx_sram_byte_alternate_set() argument
265 __in boolean_t negate, in efx_sram_byte_changing_set() argument
279 eqp->eq_u8[index] = (negate) ? ~byte : byte; in efx_sram_byte_changing_set()
286 __in boolean_t negate, in efx_sram_bit_sweep_set() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp301 Value *NegOp = negate(I->getOperand(0), IsNSW, Depth + 1); in visitImpl()
335 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1); in visitImpl()
338 Value *NegOp2 = negate(I->getOperand(2), IsNSW, Depth + 1); in visitImpl()
348 Value *NegOp0 = negate(I->getOperand(0), IsNSW, Depth + 1); in visitImpl()
351 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1); in visitImpl()
370 Value *NegVector = negate(IEI->getOperand(0), IsNSW, Depth + 1); in visitImpl()
373 Value *NegNewElt = negate(IEI->getOperand(1), IsNSW, Depth + 1); in visitImpl()
389 if (Value *NegOp0 = negate(I->getOperand(0), IsNSW, Depth + 1)) in visitImpl()
417 if (Value *NegOp = negate(Op, /* IsNSW */ false, Depth + 1)) { in visitImpl()
460 if (Value *NegOp1 = negate(Ops[1], /* IsNSW */ false, Depth + 1)) { in visitImpl()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_div_impl.inc77 fixuint_t a_u = (fixuint_t)(a ^ s_a) + (-s_a); // negate if s_a == -1
78 fixuint_t b_u = (fixuint_t)(b ^ s_b) + (-s_b); // negate if s_b == -1
80 return (COMPUTE_UDIV(a_u, b_u) ^ s_a) + (-s_a); // negate if s_a == -1
88 fixuint_t b_u = (fixuint_t)(b ^ s) + (-s); // negate if s == -1
90 fixuint_t a_u = (fixuint_t)(a ^ s) + (-s); // negate if s == -1
93 return (res ^ s) + (-s); // negate if s == -1
/freebsd/crypto/heimdal/lib/roken/
H A Dfnmatch.c144 int negate, ok; in rangematch() local
154 if (negate = (*pattern == '!' || *pattern == '^')) in rangematch()
174 return (ok == negate ? NULL : pattern); in rangematch()
H A Dgetarg.c353 int negate = 0; in arg_match_long() local
371 negate = 0; in arg_match_long()
383 negate = !negate; in arg_match_long()
431 *flag = !negate; in arg_match_long()
436 *flag = negate; in arg_match_long()
/freebsd/crypto/openssh/openbsd-compat/
H A Dfnmatch.c157 int negate; in fnmatch_ch() local
163 negate = (**pattern == '!') || (**pattern == '^'); in fnmatch_ch()
164 if (negate) in fnmatch_ch()
176 return (result ^ negate); in fnmatch_ch()
/freebsd/sys/libkern/
H A Dfnmatch.c159 int negate, ok; in rangematch() local
169 if ( (negate = (*pattern == '!' || *pattern == '^')) ) in rangematch()
212 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH); in rangematch()
/freebsd/lib/libc/gen/
H A Dfnmatch.c234 int negate, ok; in rangematch() local
248 if ((negate = (*pattern == '!' || *pattern == '^'))) in rangematch()
305 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH); in rangematch()
/freebsd/usr.sbin/config/
H A Dmkmakefile.cc390 int compile, match, nreqs, std, filetype, negate, in read_file() local
451 negate = 0; in read_file()
463 negate = 1; in read_file()
554 if (negate) in read_file()
563 if (negate) in read_file()
567 match &= negate; in read_file()
569 negate = 0; in read_file()
/freebsd/usr.bin/top/
H A Dcommands.c467 char negate; in renice_procs() local
474 if ((negate = (*str == '-')) != 0) in renice_procs()
484 if (negate) in renice_procs()
/freebsd/contrib/bc/tests/dc/
H A Dall.txt15 negate
/freebsd/contrib/bmake/
H A Dcond.c919 bool (*evalBare)(const char *), bool negate, in CondEvalExpression() argument
929 par.negateEvalBare = negate; in CondEvalExpression()
1049 bool negate; in Cond_EvalLine() local
1122 if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate)) in Cond_EvalLine()
1162 res = CondEvalExpression(p, plain, evalBare, negate, true, false); in Cond_EvalLine()
/freebsd/contrib/bc/vs/tests/
H A Dtests_dc.bat26 negate
/freebsd/usr.bin/dc/
H A Dbcode.h93 void negate(struct number *);
/freebsd/bin/pax/
H A Dpat_rep.c541 int negate; in range_match() local
544 if ((negate = (*pattern == '!')) != 0) in range_match()
562 return (ok == negate ? NULL : pattern); in range_match()
/freebsd/contrib/unifdef/tests/
H A Dif7.c77 #error negate FOOB is not -42
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DConstraintSystem.h114 static SmallVector<int64_t, 8> negate(SmallVector<int64_t, 8> R) { in negate() function
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp62 Retval.Magic.negate(); // resulting magic number in get()
H A DAPInt.cpp1903 Quotient.negate(); in sdivrem()
1905 Remainder.negate(); in sdivrem()
1908 Quotient.negate(); in sdivrem()
1922 Quotient.negate(); in sdivrem()
1927 Quotient.negate(); in sdivrem()
2160 this->negate(); in fromString()
2240 Tmp.negate(); in toString()
2828 A.negate(); in SolveQuadraticEquationWrap()
2829 B.negate(); in SolveQuadraticEquationWrap()
2830 C.negate(); in SolveQuadraticEquationWrap()
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Doperations.h171 struct _LIBCPP_TEMPLATE_VIS negate : __unary_function<_Tp, _Tp> {
175 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(negate);
179 struct _LIBCPP_TEMPLATE_VIS negate<void> {
/freebsd/crypto/openssh/
H A Dreadconf.c658 int r, port, this_result, result = 1, attributes = 0, negate; in match_cfg_line() local
688 if ((negate = (attrib[0] == '!'))) in match_cfg_line()
703 result = negate ? 0 : 1; in match_cfg_line()
718 if (r == (negate ? 1 : 0)) in match_cfg_line()
735 if (r == (negate ? 1 : 0)) in match_cfg_line()
740 if (r == (negate ? 1 : 0)) in match_cfg_line()
745 if (r == (negate ? 1 : 0)) in match_cfg_line()
750 if (r == (negate ? 1 : 0)) in match_cfg_line()
759 if (r == (negate ? 1 : 0)) in match_cfg_line()
765 if (r == (negate ? 1 : 0)) in match_cfg_line()
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfunctional.inc28 using std::negate;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstraintSystem.cpp202 R = ConstraintSystem::negate(R); in isConditionImplied()
/freebsd/bin/sh/
H A Dparser.c366 int negate, t; in pipeline() local
368 negate = 0; in pipeline()
372 negate = !negate; in pipeline()
398 if (negate) { in pipeline()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1415 void negate() { in negate() function
2112 v.negate();
2142 b.negate();
2153 b.negate();

1234