Home
last modified time | relevance | path

Searched refs:neg_x (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/llvm/test/Transforms/InstCombine/
Dcmp-x-vs-neg-x.ll12 %neg_x = sub nsw i8 0, %x
13 %cmp = icmp sgt i8 %neg_x, %x
24 %neg_x = sub nsw i8 0, %x
25 %cmp = icmp slt i8 %x, %neg_x
36 %neg_x = sub nsw i8 0, %x
37 call void @use8(i8 %neg_x)
38 %cmp = icmp sgt i8 %neg_x, %x
47 %neg_x = sub nsw i8 0, %x
48 %cmp = icmp sge i8 %neg_x, %x
57 %neg_x = sub nsw i8 0, %x
[all …]
/external/webrtc/logging/rtc_event_log/encoder/
Drtc_event_log_encoder_common.h84 const uint64_t neg_x = x - static_cast<uint64_t>(MAX_T) - 1; in ToSigned() local
85 *y = static_cast<T>(neg_x) + MIN_T; in ToSigned()
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dchlo_legalize_to_hlo.cc525 Value neg_x = rewriter.create<mhlo::NegOp>(loc, x); in MaterializeLgamma() local
529 rewriter.create<mhlo::SelectOp>(loc, need_to_reflect, neg_x, x_sub_one); in MaterializeLgamma()
670 Value neg_x = rewriter.create<mhlo::NegOp>(loc, x); in MaterializeDigamma() local
674 rewriter.create<mhlo::SelectOp>(loc, need_to_reflect, neg_x, x_sub_one); in MaterializeDigamma()
789 Value neg_x = rewriter.create<mhlo::NegOp>(loc, x); in MaterializeZeta() local
790 Value initial_sum = rewriter.create<mhlo::PowOp>(loc, q, neg_x); in MaterializeZeta()
794 neg_power = rewriter.create<mhlo::PowOp>(loc, a, neg_x); in MaterializeZeta()
798 neg_power = rewriter.create<mhlo::PowOp>(loc, a, neg_x); in MaterializeZeta()
/external/mesa3d/src/panfrost/midgard/
Ddisassemble.c1527 bool neg_x = offset_x < 0; in print_texture_word() local
1530 bool any_neg = neg_x || neg_y || neg_z; in print_texture_word()
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/transforms/
Dmap_lmhlo_to_scalar_op.h499 Value neg_x = b->create<NegFOp>(loc, x);
500 Value exp_neg_x = b->create<::mlir::math::ExpOp>(loc, neg_x);
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding.cc3426 bool neg_x = is_leaf_negated(ctx.left_leaf_is_const); in ConstantPushDown() local
3429 node->set_op((neg_x || (neg_c && neg_y)) ? nonsymmetric_op : symmetric_op); in ConstantPushDown()
3430 node->set_input(0, neg_x ? input_op : input_x); in ConstantPushDown()
3431 node->set_input(1, neg_x ? input_x : input_op); in ConstantPushDown()
Darithmetic_optimizer_test.cc2356 Output neg_x = ops::Neg(s.WithOpName("Neg_x"), x); in TEST_F() local
2359 Output add_negx_y = ops::Add(s.WithOpName("Add_negx_y"), neg_x, y); in TEST_F()
2361 Output add_negx_negy = ops::Add(s.WithOpName("Add_negx_negy"), neg_x, neg_y); in TEST_F()
2363 Output sub_negx_y = ops::Sub(s.WithOpName("Sub_negx_y"), neg_x, y); in TEST_F()
2365 Output sub_negx_negy = ops::Sub(s.WithOpName("Sub_negx_negy"), neg_x, neg_y); in TEST_F()