/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
DC_2I_D16_TRC_WRA_01.c | 36 /* Subtract DC an saturate */ 49 /* Subtract DC an saturate */
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_host_metrics_unittest.cc | 57 samples->Subtract(*baseline); 69 samples->Subtract(*baseline); 97 samples->Subtract(*baseline); 136 samples[i]->Subtract(*baselines[i]); 156 samples->Subtract(*baseline); 168 samples->Subtract(*baseline);
|
/external/chromium_org/net/quic/ |
quic_time_test.cc | 45 TEST(QuicTimeDeltaTest, Subtract) { 47 QuicTime::Delta::FromMilliseconds(2).Subtract( 75 QuicTime::Delta diff = time_2.Subtract(time_1); 82 TEST_F(QuicTimeTest, Subtract) { 88 EXPECT_EQ(QuicTime::Delta::FromMilliseconds(1), time_2.Subtract(time_1)); 95 time.Subtract(QuicTime::Delta::FromMilliseconds(1)));
|
quic_time.h | 59 Delta Subtract(const Delta& delta) const; 88 QuicTime Subtract(const Delta& delta) const; 90 Delta Subtract(const QuicTime& other) const; 133 // Subtract returns a new QuicWallTime that represents the time of |this| 135 QuicWallTime Subtract(QuicTime::Delta delta) const;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECPoint.java | 119 public abstract ECPoint subtract(ECPoint b); method in class:ECPoint 271 ECFieldElement gamma = b.y.subtract(this.y).divide(b.x.subtract(this.x)); 273 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x); 274 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y); 299 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO)); 300 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y) 306 public ECPoint subtract(ECPoint b) method in class:ECPoint.Fp 511 public ECPoint subtract(ECPoint b) method in class:ECPoint.F2m [all...] |
Tnaf.java | 101 norm = s1.subtract(s2).add(s3); 143 norm = s1.subtract(s2).add(s3); 184 SimpleBigDecimal eta0 = lambda0.subtract(f0); 185 SimpleBigDecimal eta1 = lambda1.subtract(f1); 196 eta = eta.subtract(eta1); 207 check1 = eta0.subtract(threeEta1); 214 check2 = eta0.subtract(fourEta1); 344 u[i] = (byte) ECConstants.TWO.subtract((r0.subtract(r1.shiftLeft(1))).mod(ECConstants.FOUR)).intValue(); 372 r0 = r1.subtract(s) [all...] |
SimpleBigDecimal.java | 104 public SimpleBigDecimal subtract(SimpleBigDecimal b) method in class:SimpleBigDecimal 109 public SimpleBigDecimal subtract(BigInteger b) method in class:SimpleBigDecimal 111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)), 199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale)); 202 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
LzmaCon.dsp | 336 # SUBTRACT CPP /YX /Yc /Yu
345 # SUBTRACT CPP /YX /Yc /Yu
350 # SUBTRACT CPP /YX /Yc /Yu
359 # SUBTRACT CPP /YX /Yc /Yu
368 # SUBTRACT CPP /YX /Yc /Yu
373 # SUBTRACT CPP /YX /Yc /Yu
378 # SUBTRACT CPP /YX /Yc /Yu
387 # SUBTRACT CPP /YX /Yc /Yu
396 # SUBTRACT CPP /YX /Yc /Yu
413 # SUBTRACT CPP /YX /Yc /Yu [all...] |
/external/proguard/src/proguard/evaluation/value/ |
SpecificIntegerValue.java | 80 public IntegerValue subtract(IntegerValue other) method in class:SpecificIntegerValue 87 return other.subtract(this); 208 public IntegerValue subtract(SpecificIntegerValue other) method in class:SpecificIntegerValue 212 new CompositeIntegerValue(this, CompositeIntegerValue.SUBTRACT, other); 219 new CompositeIntegerValue(other, CompositeIntegerValue.SUBTRACT, this);
|
SpecificLongValue.java | 65 public LongValue subtract(LongValue other) method in class:SpecificLongValue 72 return other.subtract(this); 153 public LongValue subtract(SpecificLongValue other) method in class:SpecificLongValue 157 new CompositeLongValue(this, CompositeLongValue.SUBTRACT, other); 164 new CompositeLongValue(other, CompositeLongValue.SUBTRACT, this);
|
ParticularDoubleValue.java | 85 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue 92 return value == 0.0 ? other : other.subtract(this); 139 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
|
ParticularFloatValue.java | 85 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue 92 return value == 0.0 ? other : other.subtract(this); 139 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
LookaheadSet.java | 68 public LookaheadSet subtract(LookaheadSet other) { method in class:LookaheadSet 69 return new LookaheadSet(this.tokenTypeSet.subtract(other.tokenTypeSet)); 87 tokenTypeSet = (IntervalSet)tokenTypeSet.subtract(IntervalSet.of(a));
|
/external/chromium_org/net/quic/congestion_control/ |
channel_estimator.cc | 43 QuicTime::Delta sent_delta = send_time.Subtract(last_send_time_); 44 QuicTime::Delta received_delta = receive_time.Subtract(last_receive_time_); 95 if (bitrate_75th_percentile.Subtract(bitrate_25th_percentile) >
|
pacing_sender.cc | 105 next_packet_send_time_ = now.Subtract(alarm_granularity_); 112 << next_packet_send_time_.Subtract(now).ToMicroseconds(); 113 return next_packet_send_time_.Subtract(now);
|
/external/chromium_org/ui/gfx/ |
vector2d_f.h | 35 // Subtract the components of the |other| vector from the current vector. 36 void Subtract(const Vector2dF& other); 39 void operator-=(const Vector2dF& other) { Subtract(other); }
|
vector3d_f.h | 41 // Subtract the components of the |other| vector from the current vector. 42 void Subtract(const Vector3dF& other); 45 void operator-=(const Vector3dF& other) { Subtract(other); }
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
ConstraintDistLimit.java | 60 Vector3f v = translations[frame].subtract(targetLocation);
89 Vector3f v = currentLocation.subtract(targetLocation);
112 v = targetLocation.subtract(currentLocation).normalizeLocal().multLocal(dist * influence);
|
/external/replicaisland/src/com/replica/replicaisland/ |
OrbitalMagnetComponent.java | 72 mDelta.subtract(mCenter); 89 targetVelocity.subtract(mVelocity); 99 mDelta.subtract(mRim);
|
/cts/tests/tests/util/src/android/util/cts/ |
EventLogTest.java | 76 // subtract: log header, type byte, final newline 79 // subtract: string header (type + length) 83 // subtract: array header, "hi" header, "hi", string header 89 // subtract: array header, int (type + value), string header 95 // subtract: array header, long, string header 101 // subtract: array header, string header (second string is dropped entirely)
|
/external/kernel-headers/original/asm-x86/ |
atomic_32.h | 55 * atomic_sub - subtract integer from atomic variable 56 * @i: integer value to subtract 70 * atomic_sub_and_test - subtract value from variable and test result 71 * @i: integer value to subtract 207 * atomic_sub_return - subtract integer and return 209 * @i: integer value to subtract
|
/frameworks/rs/scriptc/ |
rs_atomic.rsh | 50 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1) 59 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1) 90 * Atomic Subtract a value from the value at addr. addr[0] -= value 93 * @param value Amount to subtract from the value at addr 100 * Atomic Subtract a value from the value at addr. addr[0] -= value 103 * @param value Amount to subtract from the value at addr
|
/prebuilts/sdk/renderscript/include/ |
rs_atomic.rsh | 50 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1) 59 * Atomic subtract one from the value at addr. Equal to rsAtomicSub(addr, 1) 90 * Atomic Subtract a value from the value at addr. addr[0] -= value 93 * @param value Amount to subtract from the value at addr 100 * Atomic Subtract a value from the value at addr. addr[0] -= value 103 * @param value Amount to subtract from the value at addr
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
BigIntegers.java | 108 return createRandomInRange(ZERO, max.subtract(min), random).add(min); 121 return new BigInteger(max.subtract(min).bitLength() - 1, random).add(min);
|
/external/chromium_org/base/metrics/ |
histogram_samples.cc | 85 void HistogramSamples::Subtract(const HistogramSamples& other) { 88 bool success = AddSubtractImpl(other.Iterator().get(), SUBTRACT);
|