/freebsd/sys/dev/sfxge/common/ |
H A D | efx_sram.c | 210 __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 D | InstCombineNegator.cpp | 306 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 D | int_div_impl.inc | 77 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 D | fnmatch.c | 144 int negate, ok; in rangematch() local 154 if (negate = (*pattern == '!' || *pattern == '^')) in rangematch() 174 return (ok == negate ? NULL : pattern); in rangematch()
|
H A D | getarg.c | 353 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 D | fnmatch.c | 157 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 D | fnmatch.c | 159 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 D | fnmatch.c | 234 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 D | mkmakefile.cc | 391 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 D | commands.c | 467 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 D | all.txt | 15 negate
|
/freebsd/contrib/bmake/ |
H A D | cond.c | 917 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 D | pat_rep.c | 541 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 D | tests_dc.bat | 26 negate
|
/freebsd/contrib/unifdef/tests/ |
H A D | if7.c | 77 #error negate FOOB is not -42
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ConstraintSystem.h | 114 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 D | operations.h | 170 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 D | readconf.c | 715 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 D | APInt.cpp | 1867 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 D | DivisionByConstantInfo.cpp | 62 Retval.Magic.negate(); // resulting magic number in get()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | functional.cppm |
|
H A D | functional.inc | 28 using std::negate;
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstraintSystem.cpp | 202 R = ConstraintSystem::negate(R); in isConditionImplied()
|
/freebsd/bin/sh/ |
H A D | parser.c | 366 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 D | APInt.h | 1430 void negate() { in negate() function 2138 v.negate(); 2168 b.negate(); 2179 b.negate();
|