Home
last modified time | relevance | path

Searched refs:negate (Results 1 – 25 of 563) sorted by relevance

12345678910>>...23

/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_saturate_propagation.cpp89 if (inst->src[0].negate) { in opt_saturate_propagation_local()
91 scan_inst->src[0].negate = !scan_inst->src[0].negate; in opt_saturate_propagation_local()
92 inst->src[0].negate = false; in opt_saturate_propagation_local()
99 scan_inst->src[i].negate = !scan_inst->src[i].negate; in opt_saturate_propagation_local()
102 inst->src[0].negate = false; in opt_saturate_propagation_local()
110 scan_inst->src[1].negate = !scan_inst->src[1].negate; in opt_saturate_propagation_local()
112 scan_inst->src[0].negate = !scan_inst->src[0].negate; in opt_saturate_propagation_local()
113 inst->src[0].negate = false; in opt_saturate_propagation_local()
134 scan_inst->src[0].negate || in opt_saturate_propagation_local()
136 scan_inst->src[0].negate != inst->src[0].negate) { in opt_saturate_propagation_local()
Dbrw_fs_cse.cpp117 operands_match(const fs_inst *a, const fs_inst *b, bool *negate) in operands_match() argument
127 bool xs0_negate = xs[0].negate; in operands_match()
129 : xs[1].negate; in operands_match()
130 bool ys0_negate = ys[0].negate; in operands_match()
132 : ys[1].negate; in operands_match()
136 xs[0].negate = false; in operands_match()
137 xs[1].negate = false; in operands_match()
138 ys[0].negate = false; in operands_match()
139 ys[1].negate = false; in operands_match()
146 xs[0].negate = xs0_negate; in operands_match()
[all …]
Dbrw_nir_opt_peephole_ffma.c71 uint8_t swizzle[4], bool *negate, bool *abs) in get_mul_for_src() argument
74 assert(src->src.is_ssa && !src->abs && !src->negate); in get_mul_for_src()
95 swizzle, negate, abs); in get_mul_for_src()
100 swizzle, negate, abs); in get_mul_for_src()
101 *negate = !*negate; in get_mul_for_src()
106 swizzle, negate, abs); in get_mul_for_src()
107 *negate = false; in get_mul_for_src()
193 bool negate, abs; in brw_nir_opt_peephole_ffma_instr() local
198 negate = false; in brw_nir_opt_peephole_ffma_instr()
203 swizzle, &negate, &abs); in brw_nir_opt_peephole_ffma_instr()
[all …]
Dtest_fs_saturate_propagation.cpp228 dst0.negate = true; in TEST_F()
263 dst0.negate = true; in TEST_F()
287 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
288 EXPECT_TRUE(instruction(block0, 0)->src[1].negate); in TEST_F()
301 dst0.negate = true; in TEST_F()
325 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
339 dst0.negate = true; in TEST_F()
363 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
366 EXPECT_FALSE(instruction(block0, 1)->src[0].negate); in TEST_F()
378 dst0.negate = true; in TEST_F()
[all …]
Dbrw_vec4_cmod_propagation.cpp77 !inst->src[0].negate)) in opt_cmod_propagation_local()
91 bool negate; in opt_cmod_propagation_local() local
108 negate = false; in opt_cmod_propagation_local()
113 negate = true; in opt_cmod_propagation_local()
132 negate ? brw_swap_cmod(inst->conditional_mod) in opt_cmod_propagation_local()
280 !inst->src[0].negate && in opt_cmod_propagation_local()
326 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod) in opt_cmod_propagation_local()
/third_party/boost/libs/hof/test/
Dmatch.cpp168 const auto negate = (!boost::hof::_); in BOOST_HOF_TEST_CASE() local
170 BOOST_HOF_TEST_CHECK(boost::hof::match(negate, sub)(0) == negate(0)); in BOOST_HOF_TEST_CASE()
171 BOOST_HOF_TEST_CHECK(boost::hof::match(negate, sub)(0, 1) == sub(0, 1)); in BOOST_HOF_TEST_CASE()
176 const auto negate = (!boost::hof::_1); in BOOST_HOF_TEST_CASE() local
178 BOOST_HOF_TEST_CHECK(boost::hof::match(negate, sub)(0) == negate(0)); in BOOST_HOF_TEST_CASE()
187 const auto negate = boost::hof::limit_c<1>(!boost::hof::_1); in BOOST_HOF_TEST_CASE() local
189 BOOST_HOF_TEST_CHECK(boost::hof::match(negate, sub)(0) == negate(0)); in BOOST_HOF_TEST_CASE()
191 BOOST_HOF_TEST_CHECK(boost::hof::match(negate, sub)(0, 1) == sub(0, 1)); in BOOST_HOF_TEST_CASE()
/third_party/boost/libs/hana/test/_include/laws/
Dgroup.hpp40 hana::plus(x, hana::negate(x)), in TestGroup()
46 hana::plus(hana::negate(x), x), in TestGroup()
53 hana::plus(x, hana::negate(y)) in TestGroup()
58 hana::plus(y, hana::negate(x)) in TestGroup()
63 hana::negate(hana::negate(x)), in TestGroup()
79 hana::negate(hana::value(x)), in __anon2fd71fc20302()
80 hana::value(hana::negate(x)) in __anon2fd71fc20302()
/third_party/boost/libs/mpl/doc/src/refmanual/
Dnegate.rst1 .. Metafunctions/Arithmetic Operations//negate |60
3 negate title
14 struct negate
32 #include <boost/mpl/negate.hpp>
61 typedef negate<c>::type r;
77 typedef negate<c> r;
87 struct r : negate<c>::type {};
101 typedef negate< int_<-10> >::type r;
/third_party/boost/boost/geometry/util/
Drational.hpp37 T& before, T& after, bool& negate, std::string::size_type& len) in split_parts()
42 negate = false; in split_parts()
46 negate = true; in split_parts()
58 bool negate; in apply() local
71 split_parts(source, p, before, after, negate, len); in apply()
73 return negate in apply()
80 split_parts(source, p, before, after, negate, len); in apply()
88 return negate in apply()
/third_party/boost/status/
Dboost_check_library.py74 negate = True,
231 def assert_dir_exists(self, dir, message, key, negate = False): argument
232 self.info("check directory '%s', negate = %s"%(dir,negate))
234 if negate:
238 if not negate:
243 def warn_dir_exists(self, dir, message, key, negate = False): argument
244 self.info("check directory '%s', negate = %s"%(dir,negate))
246 if negate:
250 if not negate:
255 …def assert_file_exists(self, dir, globs_to_include, message, key, negate = False, globs_to_exclude… argument
[all …]
/third_party/boost/boost/multiprecision/detail/functions/
Dtrig.hpp44 tol.negate(); in hyp0F1()
64 term.negate(); in hyp0F1()
117 xx.negate(); in eval_sin()
227 result.negate(); in eval_sin()
274 xx.negate(); in eval_cos()
351 result.negate(); in eval_cos()
397 lim.negate(); in hyp2F1()
425 term.negate(); in hyp2F1()
469 xx.negate(); in eval_asin()
488 result.negate(); in eval_asin()
[all …]
Dpow.hpp116 lim.negate(); in hyp0F0()
132 x_pow_n_div_n_fact.negate(); in hyp0F0()
136 x_pow_n_div_n_fact.negate(); in hyp0F0()
164 lim.negate(); in hyp1F0()
183 term.negate(); in hyp1F0()
234 xx.negate(); in eval_exp()
324 exp_series.negate(); in eval_exp()
366 result.negate(); in eval_log()
393 t.negate(); /* 0 <= t <= 0.33333 */ in eval_log()
408 lim.negate(); in eval_log()
[all …]
/third_party/boost/libs/ratio/test/ratio_extensions/
Dmpl_negate_pass.cpp28 typedef boost::mpl::negate<R1> R; in test()
33 typedef boost::mpl::negate<R1> R; in test()
38 typedef boost::mpl::negate<R1> R; in test()
43 typedef boost::mpl::negate<R1> R; in test()
48 typedef boost::mpl::negate<R1> R; in test()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/tools/
Dutils.py20 def GetFontList(path, exts, negate=False): argument
36 if negate != result:
41 def GetLevelList(path, max_level=1, negate=False): argument
52 if (not negate and level <= max_level) or (negate and level > max_level):
/third_party/skia/third_party/externals/sfntly/cpp/tools/
Dutils.py20 def GetFontList(path, exts, negate=False): argument
36 if negate != result:
41 def GetLevelList(path, max_level=1, negate=False): argument
52 if (not negate and level <= max_level) or (negate and level > max_level):
/third_party/boost/boost/multiprecision/detail/
Det_ops.hpp28 inline BOOST_MP_CXX14_CONSTEXPR detail::expression<detail::negate, number<B, et_on> > operator-(con… in operator -()
31 return detail::expression<detail::negate, number<B, et_on> >(v); in operator -()
38 return detail::expression<detail::negate, number<B, et_on> >(v); in operator -()
42 inline BOOST_MP_CXX14_CONSTEXPR detail::expression<detail::negate, detail::expression<tag, Arg1, Ar… in operator -()
45 return detail::expression<detail::negate, detail::expression<tag, Arg1, Arg2, Arg3, Arg4> >(v); in operator -()
214 …detail::expression<detail::negate, detail::expression<detail::multiply_subtract, typename detail::…
217 …return detail::expression<detail::negate, detail::expression<detail::multiply_subtract, typename d… in operator -()
227 inline BOOST_MP_CXX14_CONSTEXPR detail::expression<detail::negate, detail::expression<detail::multi…
230 …return detail::expression<detail::negate, detail::expression<detail::multiply_subtract, typename d… in operator -()
234 inline BOOST_MP_CXX14_CONSTEXPR typename detail::expression<detail::negate, detail::expression<deta…
[all …]
/third_party/boost/boost/spirit/home/classic/core/composite/
Depsilon.hpp61 negate() const in negate() function
77 { return p.negate(); } in operator ~()
82 { return p.negate(); } in operator ~()
87 { return p.negate(); } in operator ~()
145 negate() const in negate() function
187 negate() const in negate() function
219 { return p.negate(); } in operator ~()
224 { return p.negate(); } in operator ~()
/third_party/boost/boost/spirit/home/x3/support/numeric_utils/
Dextract_real.hpp90 negate(bool neg, float n) in negate() function
96 negate(bool neg, double n) in negate() function
102 negate(bool neg, long double n) in negate() function
109 negate(bool neg, T const& n) in negate() function
115 negate(bool /*neg*/, unused_type n) in negate() function
153 traits::move_to(extension::negate(neg, n), attr); in parse()
250 traits::move_to(extension::negate(neg, n), attr); in parse()
/third_party/boost/libs/phoenix/test/function/
Dadapt_function.cpp23 negate(int n) in negate() function
49 BOOST_PHOENIX_ADAPT_FUNCTION(int, negate, impl::negate, 1)
63 BOOST_PHOENIX_ADAPT_FUNCTION(int, negate2, impl::negate, 1) in BOOST_PHOENIX_ADAPT_FUNCTION_NULLARY()
77 BOOST_TEST(::negate(arg1)(a) == -a); in BOOST_PHOENIX_ADAPT_FUNCTION_NULLARY()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emitaluinstruction.cpp348 if (instr.src[0].negate || instr.src[0].abs) { in emit_alu_inot()
377 if (instr.src[0].negate ^ flags.test(alu_src0_neg)) in emit_alu_op1()
396 !instr.src[0].abs && !instr.src[0].negate && !instr.dest.saturate) { in emit_mov()
423 if (instr.src[0].negate) ir->set_flag(alu_src0_neg); in emit_alu_trans_op1()
436 if (instr.src[0].negate) ir->set_flag(alu_src0_neg); in emit_alu_trans_op1()
458 if (instr.src[0].negate) ir->set_flag(alu_src0_neg); in emit_alu_cm_trig()
483 if (instr.src[0].negate) ir->set_flag(alu_src0_neg); in emit_alu_f2i32_or_u32()
503 if (instr.src[0].negate) ir->set_flag(alu_src0_neg); in emit_alu_f2i32_or_u32()
603 if (src0.negate) ir->set_flag(alu_src0_neg); in emit_dot()
605 if (src1.negate) ir->set_flag(alu_src1_neg); in emit_dot()
[all …]
/third_party/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_private.cpp71 this->negate = 0; in st_src_reg()
91 this->negate = 0; in st_src_reg()
109 this->negate = 0; in st_src_reg()
126 this->negate = 0; in reset()
153 this->negate = reg.negate; in operator =()
169 this->negate = 0; in st_src_reg()
183 reg.negate = 0; in get_abs()
199 lhs.negate != rhs.negate || in operator ==()
228 if (reg.negate) in operator <<()
/third_party/typescript/tests/baselines/reference/
DjsFunctionWithPrototypeNoErrorTruncationNoCrash.types15negate: function () {return this;}, lighten: function (ratio) {return this;}, darken: function (ra…
16 >Color.prototype : { negate: () => this; lighten: (ratio: any) => this; darken: (ratio: any) => thi…
18 >prototype : { negate: () => this; lighten: (ratio: any) => this; darken: (ratio: any) => this; sat…
19negate: function () {return this;}, lighten: function (ratio) {return this;}, darken: function (ra…
21 negate: function () {return this;},
22 >negate : () => this
/third_party/boost/boost/spirit/home/qi/numeric/detail/
Dreal_impl.hpp122 negate(bool neg, float n) in negate() function
128 negate(bool neg, double n) in negate() function
134 negate(bool neg, long double n) in negate() function
141 negate(bool neg, T const& n) in negate() function
147 negate(bool /*neg*/, unused_type n) in negate() function
223 traits::assign_to(traits::negate(neg, n), attr); in parse()
336 traits::assign_to(traits::negate(neg, n), attr); in parse()
/third_party/boost/boost/mpl/
Dnegate.hpp37 struct negate struct
49 BOOST_MPL_AUX_LAMBDA_SUPPORT(1, negate, (N))
52 BOOST_MPL_AUX_NA_SPEC(1, negate)
/third_party/boost/boost/move/algo/
Dpredicate.hpp56 class negate class
59 negate() in negate() function in boost::movelib::negate
62 explicit negate(Comp comp) in negate() function in boost::movelib::negate

12345678910>>...23