HomeSort by relevance Sort by last modified time
    Searched refs:Neg (Results 101 - 125 of 222) sorted by null

1 2 3 45 6 7 8 9

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APFloat.h 392 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
  /external/tensorflow/tensorflow/cc/framework/
while_gradients_test.cc 182 outputs_[0] = ops::Neg(scope_, outputs_[0]);
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
softmax_op.cc 114 b->Mul(b->Neg(labels), b->Sub(shifted_logits, log_sum_exp, {kBatchDim})),
stateless_random_ops.cc 195 auto w = b->Neg(b->Log(b->Mul(b->Sub(one, x), b->Add(one, x))));
  /external/tensorflow/tensorflow/compiler/xla/tests/
bfloat16_test.cc 75 builder.Neg(builder.ConstantR0<bfloat16>(static_cast<bfloat16>(2.1f)));
half_test.cc 97 &ComputationBuilder::Neg},
local_client_execute_test.cc 355 auto negate_array = builder.Neg(inner_array);
391 builder.Tuple({builder.Neg(element_0), builder.Add(element_1, element_1)});
592 builder.Neg(x);
609 builder.Neg(x);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 264 func (a *Mpint) Neg() {
265 a.Val.Neg(&a.Val)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 264 func (a *Mpint) Neg() {
265 a.Val.Neg(&a.Val)
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 166 bool Neg = false;
169 Neg = true;
175 Neg = true;
190 return CapabilityExpr(CE->expr(), Neg);
192 return CapabilityExpr(E, Neg);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 189 // If this is a not or neg instruction, do not count it for rank. This
253 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) {
254 Type *Ty = Neg->getType();
258 BinaryOperator *Res = CreateMul(Neg->getOperand(1), NegOne, "", Neg, Neg);
259 Neg->setOperand(1, Constant::getNullValue(Ty)); // Drop use of op.
260 Res->takeName(Neg);
261 Neg->replaceAllUsesWith(Res);
262 Res->setDebugLoc(Neg->getDebugLoc())
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
rat_test.go 135 z := new(Rat).Neg(x)
137 t.Errorf("got Neg(%v) = %v; want %v", x, z, e)
334 x.Denom().Set(new(Int).Neg(b))
  /prebuilts/go/linux-x86/src/math/big/
rat_test.go 135 z := new(Rat).Neg(x)
137 t.Errorf("got Neg(%v) = %v; want %v", x, z, e)
334 x.Denom().Set(new(Int).Neg(b))
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 53 import org.apache.xpath.operations.Neg;
154 expr = neg(opPos); break;
443 * @return reference to {@link org.apache.xpath.operations.Neg} instance.
447 protected Expression neg(int opPos) throws TransformerException method in class:Compiler
449 return compileUnary(new Neg(), opPos);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
magic.go 126 // This will require an additional Neg op for c<0.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
magic.go 126 // This will require an additional Neg op for c<0.
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.h 319 _FORWARD_UNOP(Neg)
  /external/tensorflow/tensorflow/go/
session_test.go 31 out, err := Neg(g, "neg1", inp)
33 t.Fatalf("Neg() for %v: %v", dt, err)
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 314 // Neg sets z = -x and returns z.
315 func (z *Int) Neg(x *Int) *Int {
  /prebuilts/go/darwin-x86/src/strconv/
atoi_test.go 487 b.Run("Neg", func(b *testing.B) {
497 func benchmarkParseInt(b *testing.B, neg int) {
507 s := fmt.Sprintf("%d", cs.num*int64(neg))
520 b.Run("Neg", func(b *testing.B) {
525 func benchmarkAtoi(b *testing.B, neg int) {
539 s := fmt.Sprintf("%d", cs.num*int64(neg))
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 314 // Neg sets z = -x and returns z.
315 func (z *Int) Neg(x *Int) *Int {
  /prebuilts/go/linux-x86/src/strconv/
atoi_test.go 487 b.Run("Neg", func(b *testing.B) {
497 func benchmarkParseInt(b *testing.B, neg int) {
507 s := fmt.Sprintf("%d", cs.num*int64(neg))
520 b.Run("Neg", func(b *testing.B) {
525 func benchmarkAtoi(b *testing.B, neg int) {
539 s := fmt.Sprintf("%d", cs.num*int64(neg))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 315 Value *Neg = dyn_castNegVal(Op1C);
317 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
684 Value *Neg = Builder->CreateFNeg(T);
685 Neg->takeName(&I);
686 return replaceInstUsesWith(I, Neg);
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 67 bool Neg;
70 bool hasFPModifiers() const { return Abs || Neg; }
77 Operand |= Neg ? SISrcMods::NEG : 0;
375 bool Negate = Imm.Mods.Neg; // Only negate can get here
536 OS << "abs:" << Mods.Abs << " neg: " << Mods.Neg << " sext:" << Mods.Sext;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelDAGToDAG.cpp 885 // transformation incurs an extra mov, due to the neg instruction
    [all...]

Completed in 777 milliseconds

1 2 3 45 6 7 8 9