HomeSort by relevance Sort by last modified time
    Searched refs:Subtract (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/v8/src/
diy-fp.h 31 void Subtract(const DiyFp& other) {
42 result.Subtract(b);
  /hardware/qcom/display/msm8996/sdm/include/utils/
rect.h 46 LayerRect Subtract(const LayerRect &rect1, const LayerRect &rect2);
  /external/libchrome/base/metrics/
histogram_snapshot_manager.cc 86 snapshot->Subtract(*already_logged);
106 logged_samples->Subtract(*logged_samples);
histogram_samples.h 66 virtual void Subtract(const HistogramSamples& other);
79 // Based on |op| type, add or subtract sample counts data from the iterator.
80 enum Operator { ADD, SUBTRACT };
sample_vector_unittest.cc 81 samples1.Subtract(samples2);
158 EXPECT_DEATH(samples1.Subtract(samples2), "");
164 EXPECT_DEATH(samples1.Subtract(samples2), "");
170 EXPECT_DEATH(samples1.Subtract(samples2), "");
sample_map_unittest.cc 48 samples1.Subtract(samples2);
106 samples.Subtract(samples2);
histogram_samples.cc 120 void HistogramSamples::Subtract(const HistogramSamples& other) {
127 bool success = AddSubtractImpl(other.Iterator().get(), SUBTRACT);
  /external/v8/test/cctest/
test-diy-fp.cc 40 TEST(Subtract) {
47 diy_fp1.Subtract(diy_fp2);
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.h 124 void Subtract(const DesktopRegion& region);
127 void Subtract(const DesktopRect& rect);
desktop_region.cc 275 void DesktopRegion::Subtract(const DesktopRegion& region) {
304 // subtract spans from.
325 // the two, ready to subtract spans from.
335 // range covered by |row_b|. Subtract |row_b| spans from |row_a|.
364 void DesktopRegion::Subtract(const DesktopRect& rect) {
367 Subtract(region);
  /external/libchrome/crypto/
p224.cc 90 // subtract smaller amounts without underflow. See the section "Subtraction" in
97 // Subtract computes *out = a-b
101 void Subtract(FieldElement* out, const FieldElement& a, const FieldElement& b) {
355 // unique, minimal value we see if the value is >= p and, if so, subtract p.
462 Subtract(&h, u2, u1);
476 Subtract(&r, s2, s1);
500 Subtract(&out->z, z2z2, z1z1);
511 Subtract(&out->x, out->x, z1z1);
519 Subtract(&z1z1, v, out->x);
522 Subtract(&out->y, z1z1, s1)
    [all...]
  /external/libweave/third_party/chromium/crypto/
p224.cc 104 // subtract smaller amounts without underflow. See the section "Subtraction" in
111 // Subtract computes *out = a-b
115 void Subtract(FieldElement* out, const FieldElement& a, const FieldElement& b) {
384 // unique, minimal value we see if the value is >= p and, if so, subtract p.
491 Subtract(&h, u2, u1);
505 Subtract(&r, s2, s1);
529 Subtract(&out->z, z2z2, z1z1);
540 Subtract(&out->x, out->x, z1z1);
548 Subtract(&z1z1, v, out->x);
551 Subtract(&out->y, z1z1, s1)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 178 Matrix& Subtract(const Matrix& operand) {
189 Matrix& Subtract(const Matrix& lhs, const Matrix& rhs) {
191 return Subtract(rhs);
matrix_unittest.cc 145 actual_result.Subtract(lh_mat, rh_mat);
149 lh_mat.Subtract(rh_mat);
  /external/pdfium/xfa/src/fdp/src/css/
fde_csssyntax.h 34 void Subtract(int32_t iStart, int32_t iLength);
fde_csssyntax.cpp 285 m_TextData.Subtract(iURIStart, iURILength);
473 void CFDE_CSSTextBuf::Subtract(int32_t iStart, int32_t iLength) {
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe.cc 144 loss_account_.Subtract(LinkedSetPacketLossRatio());
267 void LossAccount::Subtract(LossAccount rhs) {
bwe.h 42 void Subtract(LossAccount rhs);
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 54 extractTerms(E.RHS, E.Kind == CounterExpression::Subtract ? -Sign : Sign,
108 C = get(CounterExpression(CounterExpression::Subtract, C,
118 Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) { function in class:CounterExpressionBuilder
120 get(CounterExpression(CounterExpression::Subtract, LHS, RHS)));
138 OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
170 return E.Kind == CounterExpression::Subtract ? *LHS - *RHS : *LHS + *RHS;
  /external/llvm/unittests/Support/
BlockFrequencyTest.cpp 91 TEST(BlockFrequencyTest, Subtract) {
  /external/opencv3/modules/imgproc/perf/opencl/
perf_3vs4.cpp 81 OCL_PERF_TEST_P(_3vs4_Fixture, Subtract,
97 OCL_TEST_CYCLE() subtract(src, s, dst);
114 subtract(srcs[i], s, dsts[i]);
127 subtract(src4, s, dst4);
  /external/v8/src/runtime/
runtime-operators.cc 115 Object::Subtract(isolate, lhs, rhs));
127 isolate, result, Object::Subtract(isolate, lhs, rhs, Strength::STRONG));
  /external/v8/test/unittests/compiler/
typer-unittest.cc 251 TestBinaryArithOp(javascript_.Subtract(LanguageMode::SLOPPY, hints_),
253 TestBinaryArithOp(javascript_.Subtract(LanguageMode::STRONG, hints_),
413 TEST_BINARY_MONOTONICITY(Subtract)
  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 98 enum ExprKind { Subtract, Add };
143 Counter subtract(Counter LHS, Counter RHS);
463 return CounterExpression(CounterExpression::ExprKind::Subtract,
  /art/runtime/base/
bit_vector.h 194 void Subtract(const BitVector* src);

Completed in 515 milliseconds

1 2 3