Searched refs:Neg (Results 1 - 25 of 106) sorted by relevance

12345

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DNeg.java19 * $Id: Neg.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Neg extends UnaryOperation class in inherits:UnaryOperation
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h467 void makeLargest(bool Neg = false);
468 void makeSmallest(bool Neg = false);
469 void makeNaN(bool SNaN = false, bool Neg = false,
471 void makeInf(bool Neg = false);
472 void makeZero(bool Neg = false);
645 void makeInf(bool Neg);
646 void makeNaN(bool SNaN, bool Neg, const APInt *fill);
773 void makeZero(bool Neg) { getIEEE().makeZero(Neg); } argument
775 void makeInf(bool Neg) { argument
783 makeNaN(bool SNaN, bool Neg, const APInt *fill) argument
787 makeLargest(bool Neg) argument
789 makeSmallest(bool Neg) argument
791 makeSmallestNormalized(bool Neg) argument
[all...]
/external/tensorflow/tensorflow/compiler/jit/
H A Dgraph_to_functiondef_test.cc52 auto f = ops::Neg(root.WithOpName("h"), e);
75 {{"h"}, "Neg", {"b_0:z:0"}, {{"T", DT_FLOAT}}},
89 auto b = ops::Neg(root.WithOpName("b").WithControlDependencies(a), a);
109 {{"b"}, "Neg", {"a", "^a"}, {{"T", DT_FLOAT}}},
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dcompilation_cache_test.cc79 builder.Neg(builder.ConstantR0<float>(42.0));
99 builder.Neg(builder.Parameter(0, ShapeUtil::MakeShape(F32, {}), "param"));
114 builder_neg.Neg(builder_neg.ConstantR0<float>(42.0));
178 auto neg = builder.Neg(builder.ConstantR0<float>(42.0));
H A Dreduce_precision_test.cc293 auto neg = builder.Neg(abs);
319 auto neg = builder.Neg(abs);
343 auto neg = builder.Neg(abs);
368 auto neg = builder.Neg(abs);
H A Dvector_ops_simple_test.cc112 builder.Neg(x);
122 builder.Neg(x);
132 builder.Neg(x);
H A Dbfloat16_test.cc75 builder.Neg(builder.ConstantR0<bfloat16>(static_cast<bfloat16>(2.1f)));
/external/llvm/include/llvm/ADT/
H A DAPFloat.h569 void makeLargest(bool Neg = false);
570 void makeSmallest(bool Neg = false);
571 void makeNaN(bool SNaN = false, bool Neg = false,
575 void makeInf(bool Neg = false);
576 void makeZero(bool Neg = false);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dunary_ops.cc96 b->Mul(b->Add(b->Exp(x), b->Exp(b->Neg(x))),
121 XLAJIT_MAKE_UNARY(Neg, b->Neg(x));
160 b->Mul(b->Sub(b->Exp(x), b->Exp(b->Neg(x))),
171 xla::ComputationDataHandle too_large = b->Gt(features, b->Neg(threshold));
H A Dcategorical_op.cc77 builder->Sub(logits, builder->Log(builder->Neg(builder->Log(uniforms))),
H A Dbinary_ops.cc77 auto t = b->Neg(b->Sub(b->Add(abs_x, abs_y), one));
119 XLA_MAKE_BINARY(ReciprocalGrad, b->Neg(b->Mul(rhs, b->Mul(lhs, lhs))));
155 b->Div(lhs, b->Add(b->Exp(b->Neg(rhs)),
H A Dmatrix_band_part_op.cc80 auto indicator = builder->And(builder->Le(builder->Neg(num_lower), offset),
/external/tensorflow/tensorflow/go/
H A Dgraph_test.go65 if _, err := Neg(g, "neg", input); err != nil {
H A Dutil_test.go49 func Neg(g *Graph, name string, port Output) (Output, error) {
51 Type: "Neg",
/external/protobuf/csharp/src/Google.Protobuf.Test/
H A DSampleMessages.cs85 RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg },
/external/tensorflow/tensorflow/core/grappler/
H A Dutils_test.cc200 Output neg0 = ops::Neg(s.WithOpName("neg0"), c1);
203 ops::Neg(s.WithControlDependencies(neg0).WithOpName("neg1"), c0);
204 Output neg2 = ops::Neg(s.WithOpName("neg2"), neg1);
222 auto is_neg = [&](const NodeDef& node) { return node.op() == "Neg"; };
231 return node.op() == "Neg" && NumNonControlOutputs(node, node_map) == 1;
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h172 /// \param Neg -- The name of the negative capability to be printed in the
175 virtual void handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg, argument
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DReassociate.cpp212 static Instruction *LowerNegateToMultiply(Instruction *Neg, argument
214 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
216 Instruction *Res = BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
217 ValueRankMap.erase(Neg);
218 Res->takeName(Neg);
219 Neg->replaceAllUsesWith(Res);
220 Res->setDebugLoc(Neg->getDebugLoc());
221 Neg->eraseFromParent();
/external/perfetto/src/tracing/core/
H A Dtrace_buffer_unittest.cc1074 auto Neg = [](int x) -> ChunkID { local
1078 {ProducerID(1), WriterID(1), ChunkID(Neg(-4))},
1079 {ProducerID(1), WriterID(1), ChunkID(Neg(-3))},
1080 {ProducerID(1), WriterID(2), ChunkID(Neg(-2))},
1081 {ProducerID(3), WriterID(1), ChunkID(Neg(-1))},
1088 ASSERT_TRUE(IteratorSeqEq(ProducerID(1), WriterID(1), {Neg(-4), Neg(-3), 3}));
1089 ASSERT_TRUE(IteratorSeqEq(ProducerID(1), WriterID(2), {Neg(-2), 0, 1}));
1090 ASSERT_TRUE(IteratorSeqEq(ProducerID(3), WriterID(1), {Neg(-1), 2, 4}));
/external/tensorflow/tensorflow/cc/gradients/
H A Dmath_grad.cc68 grad_outputs->push_back(Neg(scope, grad_inputs[0]));
71 REGISTER_GRADIENT_OP("Neg", NegGrad);
296 auto dydx = Neg(scope, Sin(scope, op.input(0)));
327 auto dydx = Neg(scope, Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2))));
394 auto gx_2 = Neg(scope, grad_inputs[0]);
423 Div(scope, Div(scope, Neg(scope, x_1), x_2), x_2));
438 RealDiv(scope, RealDiv(scope, Neg(scope, x_1), x_2), x_2));
453 auto gx_2 = Neg(scope, gx_1);
586 auto dx = Neg(scope, Mul(scope, grad, z_inv));
748 Exp(grad_scope, Neg(grad_scop
[all...]
/external/llvm/lib/Option/
H A DArgList.cpp221 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { argument
222 if (Arg *A = getLastArg(Pos, Neg))
227 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg, argument
229 if (Arg *A = getLastArg(Pos, PosAlias, Neg))
/external/llvm/lib/Support/
H A Draw_ostream.cpp440 bool Neg = (FN.DecValue < 0); local
441 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue;
448 if (Neg)
452 if (Neg)
/external/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.h95 SDValue &Neg, SDValue &Abs, SDValue &Sel, SDValue &Imm,
/external/tensorflow/tensorflow/c/
H A Dc_test_util.h80 TF_Operation* Neg(TF_Operation* n, TF_Graph* graph, TF_Status* s,
/external/gemmlowp/fixedpoint/
H A Dfixedpoint_msa.h106 inline v4i32 Neg(v4i32 a) { function in namespace:gemmlowp
112 inline v8i16 Neg(v8i16 a) { function in namespace:gemmlowp

Completed in 1662 milliseconds

12345