Searched refs:negate (Results 1 - 25 of 57) sorted by relevance

123

/freebsd-current/sys/dev/sfxge/common/
H A Defx_sram.c210 __in boolean_t negate,
216 _NOTE(ARGUNUSED(negate))
225 __in boolean_t negate,
230 if (negate)
239 __in boolean_t negate,
245 EFX_DWORD_0, (negate) ? 0x55555555 : 0xaaaaaaaa,
246 EFX_DWORD_1, (negate) ? 0x55555555 : 0xaaaaaaaa);
252 __in boolean_t negate,
258 EFX_DWORD_0, (negate) ? 0x00ff00ff : 0xff00ff00,
259 EFX_DWORD_1, (negate)
208 efx_sram_byte_increment_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
223 efx_sram_all_the_same_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
237 efx_sram_bit_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
250 efx_sram_byte_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
263 efx_sram_byte_changing_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
284 efx_sram_bit_sweep_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
[all...]
/freebsd-current/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-current/crypto/heimdal/lib/roken/
H A Dfnmatch.c144 int negate, ok; local
154 if (negate = (*pattern == '!' || *pattern == '^'))
174 return (ok == negate ? NULL : pattern);
H A Dgetarg.c353 int negate = 0; local
371 negate = 0;
383 negate = !negate;
431 *flag = !negate;
436 *flag = negate;
/freebsd-current/sys/libkern/
H A Dfnmatch.c159 int negate, ok; local
169 if ( (negate = (*pattern == '!' || *pattern == '^')) )
212 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp152 // negate it even if it has other uses, without increasing instruction count.
162 // And since we are trying to negate instruction I, that tells us about the
195 // While we could negate exact arithmetic shift:
301 Value *NegOp = negate(I->getOperand(0), IsNSW, Depth + 1);
312 negate(std::get<0>(I), IsNSW, Depth + 1))) // Early return.
335 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1);
338 Value *NegOp2 = negate(I->getOperand(2), IsNSW, Depth + 1);
348 Value *NegOp0 = negate(I->getOperand(0), IsNSW, Depth + 1);
351 Value *NegOp1 = negate(I->getOperand(1), IsNSW, Depth + 1);
360 Value *NegVector = negate(EE
479 [[nodiscard]] Value *Negator::negate(Value *V, bool IsNSW, unsigned Depth) { function in class:Negator
[all...]
/freebsd-current/contrib/bc/vs/tests/
H A Dtests_dc.bat26 negate
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dfnmatch.c157 int negate; local
163 negate = (**pattern == '!') || (**pattern == '^');
164 if (negate)
176 return (result ^ negate);
/freebsd-current/usr.bin/dc/
H A Dbcode.h93 void negate(struct number *);
/freebsd-current/contrib/unifdef/tests/
H A Dif7.c77 #error negate FOOB is not -42
/freebsd-current/usr.bin/top/
H A Dcommands.c467 char negate; local
474 if ((negate = (*str == '-')) != 0)
483 /* negate if necessary */
484 if (negate)
/freebsd-current/lib/libc/gen/
H A Dfnmatch.c234 int negate, ok; local
248 if ((negate = (*pattern == '!' || *pattern == '^')))
305 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
/freebsd-current/usr.sbin/config/
H A Dmkmakefile.cc390 int compile, match, nreqs, std, filetype, negate, local
451 negate = 0;
463 negate = 1;
554 if (negate)
563 if (negate)
567 match &= negate;
569 negate = 0;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DConstraintSystem.h114 static SmallVector<int64_t, 8> negate(SmallVector<int64_t, 8> R) { function in class:llvm::ConstraintSystem
/freebsd-current/bin/pax/
H A Dpat_rep.c541 int negate; local
544 if ((negate = (*pattern == '!')) != 0)
562 return (ok == negate ? NULL : pattern);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp62 Retval.Magic.negate(); // resulting magic number
H A DAPInt.cpp1903 Quotient.negate();
1905 Remainder.negate();
1908 Quotient.negate();
1922 Quotient.negate();
1927 Quotient.negate();
2160 this->negate();
2240 Tmp.negate();
2828 A.negate();
2829 B.negate();
2830 C.negate();
[all...]
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dfunctional.inc28 using std::negate;
/freebsd-current/contrib/bmake/
H A Dcond.c919 bool (*evalBare)(const char *), bool negate,
929 par.negateEvalBare = negate;
1049 bool negate; local
1122 if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate))
1162 res = CondEvalExpression(p, plain, evalBare, negate, true, false);
918 CondEvalExpression(const char *cond, bool plain, bool (*evalBare)(const char *), bool negate, bool eprint, bool leftUnquotedOK) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFixedPoint.h208 APFixedPoint negate(bool *Overflow = nullptr) const;
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DConstraintSystem.cpp202 R = ConstraintSystem::negate(R);
/freebsd-current/bin/sh/
H A Dparser.c366 int negate, t; local
368 negate = 0;
372 negate = !negate;
398 if (negate) {
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h235 /// Negate is a self-inverse function, i.e. negate(negate(R)) == R.
239 RangeSet negate(RangeSet What);
/freebsd-current/lib/libc/amd64/string/
H A Dstrchrnul.S67 neg %r8 # negate 01..01 so we can use lea
H A Dmemchr.S62 neg %r8 # negate 01..01 so we can use lea

Completed in 224 milliseconds

123