HomeSort by: relevance | last modified time | path
    Searched refs:negate (Results 1 - 25 of 386) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/nsd/dist/simdzone/src/generic/
apl.h 15 uint8_t negate = text[0] == '!'; local
22 if (text[negate + 1] != ':')
25 switch (text[negate]) {
30 if (!(count = scan_ip4(&text[negate+2], &octets[4])))
32 count += negate + 2;
44 octets[3] = (uint8_t)((negate << 7) | 4);
50 if (!(count = scan_ip6(&text[negate+2], &octets[4])))
52 count += negate + 2;
67 octets[3] = (uint8_t)((negate << 7) | 16);
  /src/external/bsd/elftosb/dist/common/
GlobMatcher.cpp 10 #ifndef NEGATE
11 #define NEGATE '^' // std cset negation char
31 int negate; local
68 if (*p != NEGATE)
69 negate = false;
71 negate = true;
106 if (negate == match)
  /src/external/lgpl3/gmp/dist/mpf/
ui_sub.c 59 int negate;
92 negate = 1 < v->_mp_exp;
93 prec = r->_mp_prec + negate;
95 if (negate)
184 negate ^= 1;
224 negate = 1;
232 negate = ulimb < vp[0];
233 tp[0] = negate ? vp[0] - ulimb: ulimb - vp[0];
278 r->_mp_size = negate ? -rsize : rsize;
sub.c 42 int negate; local
75 negate = usize < 0;
82 negate ^= 1;
114 negate ^= 1;
146 negate ^= 1;
297 negate ^= 1;
392 SIZ (r) = negate ? -rsize : rsize;
add.c 43 int negate; local
77 negate = usize < 0;
180 r->_mp_size = negate ? -rsize : rsize;
  /src/external/gpl3/binutils/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/gpl3/binutils.old/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/gpl3/gcc/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/gpl3/gcc/dist/libquadmath/math/
csinhq.c 26 int negate = signbitq (__real__ x); local
51 if (negate)
95 __real__ retval = copysignq (0, negate ? -1 : 1);
128 if (negate)
134 __real__ retval = negate ? -HUGE_VALQ : HUGE_VALQ;
csinq.c 26 int negate = signbitq (__real__ x); local
51 if (negate)
113 __real__ retval = copysignq (0, negate ? -1 : 1);
134 if (negate)
148 __real__ retval = copysignq (0, negate ? -1 : 1);
  /src/external/gpl3/gcc.old/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
csinhq.c 26 int negate = signbitq (__real__ x); local
51 if (negate)
95 __real__ retval = copysignq (0, negate ? -1 : 1);
128 if (negate)
134 __real__ retval = negate ? -HUGE_VALQ : HUGE_VALQ;
csinq.c 26 int negate = signbitq (__real__ x); local
51 if (negate)
113 __real__ retval = copysignq (0, negate ? -1 : 1);
134 if (negate)
148 __real__ retval = copysignq (0, negate ? -1 : 1);
  /src/external/gpl3/gdb.old/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/gpl3/gdb/dist/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
ShCommands.py 62 def __init__(self, commands, negate=False, pipe_err=False):
64 self.negate = negate
68 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
75 return ((self.commands, self.negate, self.pipe_err) ==
76 (other.commands, other.negate, self.pipe_err))
81 if self.negate:
  /src/sys/dev/raidframe/
rf_utils.c 114 int val = 0, negate = 0; local
117 negate = 1;
122 return ((negate) ? -val : val);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
fnmatch.c 146 int negate, ok; local
156 if (negate = (*pattern == '!' || *pattern == '^'))
176 return (ok == negate ? NULL : pattern);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineNegator.cpp 159 // negate it even if it has other uses, without increasing instruction count.
169 // And since we are trying to negate instruction I, that tells us about the
202 // While we could negate exact arithmetic shift:
266 Value *NegOp = negate(I->getOperand(0), Depth + 1);
277 negate(std::get<0>(I), Depth + 1))) // Early return.
300 Value *NegOp1 = negate(I->getOperand(1), Depth + 1);
303 Value *NegOp2 = negate(I->getOperand(2), Depth + 1);
313 Value *NegOp0 = negate(I->getOperand(0), Depth + 1);
316 Value *NegOp1 = negate(I->getOperand(1), Depth + 1);
325 Value *NegVector = negate(EEI->getVectorOperand(), Depth + 1)
440 LLVM_NODISCARD Value *Negator::negate(Value *V, unsigned Depth) { function in class:Negator
    [all...]
  /src/external/lgpl3/gmp/dist/mpz/
cfdiv_r_2exp.c 95 /* if u!=0 and smaller than divisor, then must negate */
97 goto negate;
99 /* if non-zero low limb, then must negate */
102 goto negate;
104 /* if non-zero partial limb, then must negate */
106 goto negate;
112 negate:
  /src/usr.bin/sort/
fields.c 260 u_char negate; local
263 negate = 0xff;
265 negate = 0;
276 negate ^= 0xff;
313 *pos++ = negate ^ exponent;
329 *pos++ = negate ^ (t + 0xc0);
332 *pos++ = negate ^ (exponent >> (c * 8));
360 *pos++ = negate ^ (val + 0x40);
366 *last_nz_pos++ = negate;
  /src/lib/libc/arch/mips/gen/
modf.S 65 bc1f 2f # No -> will have to negate result
69 sub.d $f0,$f2,$f4 # Remove fudge factor and negate
  /src/external/gpl3/gdb.old/dist/gdb/
parse.c 173 int negate = 0;
175 /* Double dollar means negate the number and add -1 as well.
179 negate = 1;
185 i = -negate;
195 i = atoi (str.ptr + 1 + negate);
196 if (negate)
172 int negate = 0; local
  /src/external/gpl3/gdb/dist/gdb/
parse.c 173 int negate = 0;
175 /* Double dollar means negate the number and add -1 as well.
179 negate = 1;
185 i = -negate;
195 i = atoi (str.ptr + 1 + negate);
196 if (negate)
172 int negate = 0; local
  /src/lib/libc/gen/
fnmatch.c 76 int negate, ok, need; local
88 if ((negate = (*pattern == '!' || *pattern == '^')) != 0)
113 return ok == negate ? NULL : pattern;

Completed in 32 milliseconds

1 2 3 4 5 6 7 8 91011>>