Home
last modified time | relevance | path

Searched refs:subtrahend (Results 1 – 6 of 6) sorted by relevance

/external/jemalloc/src/
Dnstime.c64 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) in nstime_subtract() argument
67 assert(nstime_compare(time, subtrahend) >= 0); in nstime_subtract()
69 time->ns -= subtrahend->ns; in nstime_subtract()
/external/caliper/caliper/src/main/java/com/google/caliper/util/
DShortDuration.java127 public abstract ShortDuration minus(ShortDuration subtrahend); in minus() argument
171 @Override public ShortDuration minus(ShortDuration subtrahend) {
172 checkArgument(this == subtrahend);
223 @Override public ShortDuration minus(ShortDuration subtrahend) { in minus() argument
224 return ofPicos(picos - subtrahend.picos); in minus()
/external/google-breakpad/src/common/
Dtest_assembler.h130 Label operator-(uint64_t subtrahend) const;
131 uint64_t operator-(const Label &subtrahend) const;
Dtest_assembler.cc73 Label Label::operator-(uint64_t subtrahend) const { in operator -()
75 l.value_->Set(this->value_, -subtrahend); in operator -()
/external/jemalloc/include/jemalloc/internal/
Dnstime.h32 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);
/external/skia/src/pathops/
DSkPathOpsOp.cpp269 const SkPath* subtrahend = &two; in OpDebug() local
272 subtrahend = &one; in OpDebug()
284 builder.addOperand(*subtrahend); in OpDebug()