OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minuend
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/common/extensions/docs/server2/
api_schema_graph.py
96
def _Subtract(
minuend
, subtrahend):
98
which contains key-value pairs found in |
minuend
| but not in
102
for key in
minuend
:
105
difference[key] = _Subtract(
minuend
[key], {})
107
# Note that |
minuend
| and |subtrahend| are assumed to be graphs, and
109
rest = _Subtract(
minuend
[key], subtrahend[key])
/bionic/libc/upstream-netbsd/libc/isc/
ev_timers.c
96
evSubTime(struct timespec
minuend
, struct timespec subtrahend) {
99
x.tv_sec =
minuend
.tv_sec - subtrahend.tv_sec;
100
if (
minuend
.tv_nsec >= subtrahend.tv_nsec)
101
x.tv_nsec =
minuend
.tv_nsec - subtrahend.tv_nsec;
103
x.tv_nsec = BILLION - subtrahend.tv_nsec +
minuend
.tv_nsec;
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp
230
// inside
minuend
outside
minuend
258
const SkPath*
minuend
= &one;
local
261
minuend
= &two;
271
SkOpEdgeBuilder builder(*
minuend
, contours);
/external/skia/src/pathops/
SkPathOpsOp.cpp
230
// inside
minuend
outside
minuend
258
const SkPath*
minuend
= &one;
local
261
minuend
= &two;
271
SkOpEdgeBuilder builder(*
minuend
, contours);
/external/chromium_org/v8/src/arm/
lithium-arm.h
717
// Instruction for computing
minuend
- multiplier * multiplicand.
720
LMultiplySubD(LOperand*
minuend
, LOperand* multiplier,
722
inputs_[0] =
minuend
;
727
LOperand*
minuend
() { return inputs_[0]; }
function in class:v8::internal::V8_FINAL
[
all
...]
lithium-codegen-arm.cc
1473
DwVfpRegister
minuend
= ToDoubleRegister(instr->
minuend
());
local
[
all
...]
lithium-arm.cc
[
all
...]
Completed in 1384 milliseconds