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

123

/haiku-buildtools/gcc/gmp/mpz/
H A Dbin_ui.c47 mp_size_t negate; local
55 negate = (k & 1); /* (-1)^k */
70 negate = 0;
73 /* Now wanting bin(ni+k,k), with ni positive, and "negate" is the sign (0
129 SIZ(r) = (SIZ(r) ^ -negate) + negate;
H A Dcfdiv_r_2exp.c86 /* if u!=0 and smaller than divisor, then must negate */
88 goto negate;
90 /* if non-zero low limb, then must negate */
93 goto negate;
95 /* if non-zero partial limb, then must negate */
97 goto negate;
103 negate:
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dvariadic-mem_fn.C34 int negate(int x) { return -x; } function in class:X
43 assert(mem_fn(&X::negate)(x, 17) == -17);
44 assert(mem_fn(&X::negate)(xp, 17) == -17);
/haiku-buildtools/binutils/libiberty/
H A Dfnmatch.c127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
/haiku-buildtools/gcc/libiberty/
H A Dfnmatch.c127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
/haiku-buildtools/legacy/binutils/libiberty/
H A Dfnmatch.c127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
/haiku-buildtools/gcc/libquadmath/math/
H A Dcsinhq.c31 int negate = signbitq (__real__ x); local
90 if (negate)
98 __real__ retval = copysignq (0.0Q, negate ? -1.0Q : 1.0Q);
138 if (negate)
144 __real__ retval = negate ? -HUGE_VALQ : HUGE_VALQ;
H A Dcsinq.c31 int negate = signbitq (__real__ x); local
90 if (negate)
123 __real__ retval = copysignq (0.0Q, negate ? -1.0Q : 1.0Q);
144 if (negate)
164 __real__ retval = copysignq (0.0Q, negate ? -1.0Q : 1.0Q);
/haiku-buildtools/gcc/gmp/mpf/
H A Dui_sub.c33 int negate; local
70 negate = 1;
82 negate = 0;
174 negate ^= 1;
217 negate ^= 1;
247 negate ^= 1;
265 negate ^= 1;
323 r->_mp_size = negate ? -rsize : rsize;
H A Dsub.c33 int negate; local
66 negate = usize < 0;
73 negate ^= 1;
107 negate ^= 1;
141 negate ^= 1;
309 negate ^= 1;
404 r->_mp_size = negate ? -rsize : rsize;
H A Dadd.c33 int negate; local
67 negate = usize < 0;
170 r->_mp_size = negate ? -rsize : rsize;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/function_objects/
H A Dcomparisons_void.cc79 auto negate = test1( std::negate<>() ); variable
H A Dconstexpr.cc30 static_assert(std::negate<int>()(-5)==5, "");
37 static_assert(std::negate<void>()(-5)==5, "");
/haiku-buildtools/gcc/gmp/mpn/generic/
H A Dgcdext_lehmer.c157 int negate; local
182 negate = 0;
188 negate = 1;
206 *usize = negate ? -un : un;
H A Dgcdext.c448 int negate; local
475 negate = 0;
479 negate = 1;
493 *usizep = negate ? lehmer_vn : - lehmer_vn;
542 *usizep = negate ? -un : un;
/haiku-buildtools/legacy/gcc/gcc/config/rs6000/
H A Dntstack.asm26 neg 3,3 # negate so we can use stwux
/haiku-buildtools/gcc/libgcc/
H A Dfp-bit.h245 # define negate __negtf2 macro
265 # define negate __negsf2 macro
285 # define negate __negdf2 macro
459 extern FLO_type negate (FLO_type);
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dfunction.h62 using __STD::negate;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/headers/functional/
H A Dsynopsis.cc33 template <class T> struct negate;
/haiku-buildtools/gcc/gmp/mpn/sparc32/v8/
H A Dsubmul_1.asm32 sub %g0,%o2,%o2 C negate ...
/haiku-buildtools/gcc/libgcc/config/nds32/
H A Dlib1asmsrc-newlib.S65 subri $r5, $r5, 0 ! negate if $r4 < 0
116 subri $r0, $r0, 0 ! negate if $r4 < 0
/haiku-buildtools/gcc/libcpp/
H A Dexpr.c1937 bool overflow, negate = false;
1944 negate = !negate, lhs = num_negate (lhs, precision);
1946 negate = !negate, rhs = num_negate (rhs, precision);
1967 if (negate)
1973 result.overflow = overflow || (num_positive (result, precision) ^ !negate
1991 bool negate = false, lhs_neg = false;
1998 negate = !negate, lhs_ne
1936 bool overflow, negate = false; local
1990 bool negate = false, lhs_neg = false; local
[all...]
/haiku-buildtools/gcc/gcc/
H A Dwide-int.cc756 wi::mask (HOST_WIDE_INT *val, unsigned int width, bool negate, argument
761 val[0] = negate ? 0 : -1;
766 val[0] = negate ? -1 : 0;
772 val[i++] = negate ? 0 : -1;
778 val[i++] = negate ? ~last : last;
781 val[i++] = negate ? -1 : 0;
791 bool negate, unsigned int prec)
795 val[0] = negate ? -1 : 0;
805 val[i++] = negate ? -1 : 0;
816 val[i++] = negate
790 shifted_mask(HOST_WIDE_INT *val, unsigned int start, unsigned int width, bool negate, unsigned int prec) argument
[all...]
/haiku-buildtools/gcc/gmp/mpn/m88k/mc88110/
H A Dmul_1.s33 ; and negate SIZE.
/haiku-buildtools/gcc/libgomp/
H A Denv.c623 bool negate; local
626 if (!parse_one_place (&end, &negate, &len, &stride))
628 if (negate)
656 bool negate; local
660 if (!parse_one_place (&env, &negate, &len, &stride))
662 if (negate)

Completed in 130 milliseconds

123