Home
last modified time | relevance | path

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

/external/chromium_org/chrome/common/extensions/docs/server2/
Dapi_schema_graph.py96 def _Subtract(minuend, subtrahend): argument
102 for key in minuend:
105 difference[key] = _Subtract(minuend[key], {})
109 rest = _Subtract(minuend[key], subtrahend[key])
/external/skia/src/pathops/
DSkPathOpsOp.cpp258 const SkPath* minuend = &one; in Op() local
261 minuend = &two; in Op()
271 SkOpEdgeBuilder builder(*minuend, contours); in Op()
/external/chromium_org/third_party/skia/src/pathops/
DSkPathOpsOp.cpp258 const SkPath* minuend = &one; in Op() local
261 minuend = &two; in Op()
271 SkOpEdgeBuilder builder(*minuend, contours); in Op()
/external/chromium_org/v8/src/arm/
Dlithium-arm.h720 LMultiplySubD(LOperand* minuend, LOperand* multiplier, in LMultiplySubD() argument
722 inputs_[0] = minuend; in LMultiplySubD()
727 LOperand* minuend() { return inputs_[0]; } in minuend() function
2771 LInstruction* DoMultiplySub(HValue* minuend, HMul* mul);
Dlithium-arm.cc1644 LInstruction* LChunkBuilder::DoMultiplySub(HValue* minuend, HMul* mul) { in DoMultiplySub() argument
1645 LOperand* minuend_op = UseRegisterAtStart(minuend); in DoMultiplySub()
Dlithium-codegen-arm.cc1473 DwVfpRegister minuend = ToDoubleRegister(instr->minuend()); in DoMultiplySubD() local
1478 ASSERT(minuend.is(ToDoubleRegister(instr->result()))); in DoMultiplySubD()
1480 __ vmls(minuend, multiplier, multiplicand); in DoMultiplySubD()