Searched refs:minuend (Results 1 - 6 of 6) sorted by relevance
/third_party/decimal.js/test/modules/ |
H A D | minus.js | 5 var t = function (minuend, subtrahend, expected) { 6 T.assertEqual(expected, new Decimal(minuend).minus(subtrahend).valueOf()); 138 t = function (minuend, subtrahend, expected, sd, rm) { 141 T.assertEqual(expected, new Decimal(minuend).minus(subtrahend).valueOf());
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsOp.cpp | 208 // inside minuend outside minuend 295 const SkPath* minuend = &one; in OpDebug() local 299 swap(minuend, subtrahend); in OpDebug() 306 SkOpEdgeBuilder builder(*minuend, contourList, &globalState); in OpDebug()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFDocument.cpp | 57 static size_t difference(size_t minuend, size_t subtrahend) { in difference() argument 58 return SkASSERT(minuend >= subtrahend), minuend - subtrahend; in difference()
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | psintrp.c | 1572 CF2_F16Dot16 minuend; in cf2_interpT2CharString() local 1579 minuend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1582 SUB_INT32( minuend, subtrahend ) ); in cf2_interpT2CharString() 1947 CF2_F16Dot16 minuend; in cf2_interpT2CharString() local 1955 minuend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1958 SUB_INT32( minuend, in cf2_interpT2CharString()
|
/third_party/python/Lib/ |
H A D | zipfile.py | 2231 def _difference(minuend, subtrahend): 2233 Return items in minuend not in subtrahend, retaining order 2236 return itertools.filterfalse(set(subtrahend).__contains__, minuend)
|
/third_party/toybox/toys/pending/ |
H A D | bc.c | 1395 BcNum *minuend, *subtrahend; in bc_num_s() local 1428 minuend = a; in bc_num_s() 1434 minuend = b; in bc_num_s() 1438 bc_num_copy(c, minuend); in bc_num_s()
|
Completed in 18 milliseconds