Home
last modified time | relevance | path

Searched refs:negate (Results 1 – 25 of 84) 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()
246 EFX_DWORD_1, (negate) ? 0x55555555 : 0xaaaaaaaa); in efx_sram_bit_alternate_set()
252 __in boolean_t negate, in efx_sram_byte_alternate_set() argument
258 EFX_DWORD_0, (negate) ? 0x00ff00ff : 0xff00ff00, in efx_sram_byte_alternate_set()
259 EFX_DWORD_1, (negate) ? 0x00ff00ff : 0xff00ff00); in efx_sram_byte_alternate_set()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp306 Value *NegOp = negate(I->getOperand(0), IsNSW, Depth + 1); in visitImpl()
317 negate(std::get<0>(I), IsNSW, Depth + 1))) // Early return. in visitImpl()
352 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1); in visitImpl()
355 Value *NegOp2 = negate(I->getOperand(2), IsNSW, Depth + 1); in visitImpl()
365 Value *NegOp0 = negate(I->getOperand(0), IsNSW, Depth + 1); in visitImpl()
368 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1); in visitImpl()
377 Value *NegVector = negate(EEI->getVectorOperand(), IsNSW, Depth + 1); in visitImpl()
387 Value *NegVector = negate(IEI->getOperand(0), IsNSW, Depth + 1); in visitImpl()
390 Value *NegNewElt = negate(IEI->getOperand(1), IsNSW, Depth + 1); in visitImpl()
398 Value *NegOp = negate(I->getOperand(0), /* 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.cc391 int compile, match, nreqs, std, filetype, negate, in read_file() local
463 negate = 0; in read_file()
475 negate = 1; in read_file()
566 if (negate) in read_file()
575 if (negate) in read_file()
579 match &= negate; in read_file()
581 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.c917 bool (*evalBare)(const char *), bool negate, in CondEvalExpression() argument
928 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/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/bc/vs/tests/
H A Dtests_dc.bat26 negate
/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 addVariableRowFill()
121 static SmallVector<int64_t, 8> negate(SmallVector<int64_t, 8> R) { negate() function
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Doperations.h170 struct _LIBCPP_TEMPLATE_VIS negate : __unary_function<_Tp, _Tp> {
174 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(negate);
178 struct _LIBCPP_TEMPLATE_VIS negate<void> {
/freebsd/crypto/openssh/
H A Dreadconf.c715 int r, this_result, result = 1, attributes = 0, negate; in match_cfg_line() local
743 if ((negate = (attrib[0] == '!'))) in match_cfg_line()
759 result = negate ? 0 : 1; in match_cfg_line()
774 if (r == (negate ? 1 : 0)) in match_cfg_line()
805 if (r == (negate ? 1 : 0)) in match_cfg_line()
810 if (r == (negate ? 1 : 0)) in match_cfg_line()
815 if (r == (negate ? 1 : 0)) in match_cfg_line()
820 if (r == (negate ? 1 : 0)) in match_cfg_line()
829 if (r == (negate ? 1 : 0)) in match_cfg_line()
835 if (r == (negate ? 1 : 0)) in match_cfg_line()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1867 Quotient.negate(); in sdivrem()
1869 Remainder.negate(); in sdivrem()
1872 Quotient.negate(); in sdivrem()
1886 Quotient.negate(); in sdivrem()
1891 Quotient.negate(); in sdivrem()
2131 this->negate(); in fromString()
2219 Tmp.negate(); in toString()
2820 A.negate(); in SolveQuadraticEquationWrap()
2821 B.negate(); in SolveQuadraticEquationWrap()
2822 C.negate(); in SolveQuadraticEquationWrap()
H A DDivisionByConstantInfo.cpp62 Retval.Magic.negate(); // resulting magic number in get()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfunctional.cppm
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.h1430 void negate() { in negate() function
2138 v.negate();
2168 b.negate();
2179 b.negate();

1234