HomeSort by relevance Sort by last modified time
    Searched defs:negate (Results 26 - 50 of 494) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir_opt_peephole_ffma.c 72 uint8_t swizzle[4], bool *negate, bool *abs)
75 assert(src->src.is_ssa && !src->abs && !src->negate);
96 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
100 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
101 *negate = !*negate;
105 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
106 *negate = false;
193 bool negate, abs; local
198 negate = false
    [all...]
  /external/pdfium/third_party/bigint/
BigInteger.cc 366 void BigInteger::negate(const BigInteger &a) { function in class:BigInteger
367 DTRT_ALIASED(this == &a, negate(a));
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
FloatValue.java 46 public abstract FloatValue negate(); method in class:FloatValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
ParticularDoubleValue.java 52 public DoubleValue negate() method in class:ParticularDoubleValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
ParticularFloatValue.java 52 public FloatValue negate() method in class:ParticularFloatValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
SpecificDoubleValue.java 32 public DoubleValue negate() method in class:SpecificDoubleValue
SpecificFloatValue.java 32 public FloatValue negate() method in class:SpecificFloatValue
SpecificLongValue.java 32 public LongValue negate() method in class:SpecificLongValue
UnknownDoubleValue.java 32 public DoubleValue negate() method in class:UnknownDoubleValue
UnknownFloatValue.java 32 public FloatValue negate() method in class:UnknownFloatValue
UnknownLongValue.java 32 public LongValue negate() method in class:UnknownLongValue
  /external/tensorflow/tensorflow/compiler/xla/service/
defuser_test.cc 98 EXPECT_THAT(computation->root_instruction(), op::Negate(op::Fusion()));
105 op::Negate(op::Add(op::Parameter(), op::Parameter())));
118 auto negate = builder.AddInstruction( local
121 HloInstruction::CreateBinary(shape_, HloOpcode::kSubtract, add, negate));
133 {add2, constant, div, mul, sub, negate, add},
156 auto negate = builder.AddInstruction( local
159 HloInstruction::CreateBinary(shape_, HloOpcode::kSubtract, add, negate));
172 computation->CreateFusionInstruction({sub, negate, add},
193 auto negate = builder.AddInstruction( local
198 {negate, add}, HloInstruction::FusionKind::kLoop)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Point.java 54 * Negate the point's coordinates
56 public final void negate() { method in class:Point
  /frameworks/base/rs/java/android/renderscript/
Byte2.java 252 * set vector negate
254 public void negate() { method in class:Byte2
Byte3.java 271 * set vector negate
273 public void negate() { method in class:Byte3
Byte4.java 289 * set vector negate
291 public void negate() { method in class:Byte4
Double2.java 284 * Set vector negate
286 public void negate() { method in class:Double2
Double3.java 304 * Set vector negate
306 public void negate() { method in class:Double3
Double4.java 325 * Set vector negate
327 public void negate() { method in class:Double4
Float2.java 283 * set vector negate
285 public void negate() { method in class:Float2
Float3.java 304 * set vector negate
306 public void negate() { method in class:Float3
Float4.java 325 * set vector negate
327 public void negate() { method in class:Float4
Int2.java 306 * set vector negate
308 public void negate() { method in class:Int2
Int3.java 329 * set vector negate
331 public void negate() { method in class:Int3

Completed in 1191 milliseconds

12 3 4 5 6 7 8 91011>>