/third_party/gstreamer/gstreamer/gst/ |
D | gstvalue.c | 91 const GValue * minuend, const GValue * subtrahend); 125 GType subtrahend; member 5302 const GValue * subtrahend) in gst_value_subtract_int_int_range() argument 5304 gint min = gst_value_get_int_range_min (subtrahend); in gst_value_subtract_int_int_range() 5305 gint max = gst_value_get_int_range_max (subtrahend); in gst_value_subtract_int_int_range() 5306 gint step = gst_value_get_int_range_step (subtrahend); in gst_value_subtract_int_int_range() 5378 const GValue * subtrahend) in gst_value_subtract_int_range_int() argument 5383 gint val = g_value_get_int (subtrahend); in gst_value_subtract_int_range_int() 5414 const GValue * subtrahend) in gst_value_subtract_int_range_int_range() argument 5419 gint min2 = gst_value_get_int_range_min (subtrahend); in gst_value_subtract_int_range_int_range() [all …]
|
D | gstvalue.h | 722 const GValue * subtrahend); 798 const GValue *subtrahend); 801 const GValue *subtrahend);
|
D | gstcaps.c | 1833 const GstStructure * subtrahend) in gst_caps_structure_subtract() argument 1840 ret = gst_structure_foreach ((GstStructure *) subtrahend, in gst_caps_structure_subtract() 1869 gst_caps_subtract (GstCaps * minuend, GstCaps * subtrahend) in gst_caps_subtract() argument 1878 g_return_val_if_fail (subtrahend != NULL, NULL); in gst_caps_subtract() 1880 if (CAPS_IS_EMPTY (minuend) || CAPS_IS_ANY (subtrahend)) { in gst_caps_subtract() 1884 if (CAPS_IS_EMPTY_SIMPLE (subtrahend)) in gst_caps_subtract() 1894 sublen = GST_CAPS_LEN (subtrahend); in gst_caps_subtract() 1901 sub = gst_caps_get_structure_unchecked (subtrahend, i); in gst_caps_subtract() 1902 sub_f = gst_caps_get_features_unchecked (subtrahend, i); in gst_caps_subtract()
|
D | gstcaps.h | 519 GstCaps *subtrahend) G_GNUC_WARN_UNUSED_RESULT;
|
/third_party/skia/src/pathops/ |
D | SkPathOpsOp.cpp | 296 const SkPath* subtrahend = &two; in OpDebug() local 299 swap(minuend, subtrahend); in OpDebug() 311 builder.addOperand(*subtrahend); in OpDebug()
|
/third_party/flutter/skia/src/pathops/ |
D | SkPathOpsOp.cpp | 296 const SkPath* subtrahend = &two; in OpDebug() local 299 swap(minuend, subtrahend); in OpDebug() 311 builder.addOperand(*subtrahend); in OpDebug()
|
/third_party/flutter/skia/src/pdf/ |
D | SkPDFDocument.cpp | 35 static size_t difference(size_t minuend, size_t subtrahend) { in difference() argument 36 return SkASSERT(minuend >= subtrahend), minuend - subtrahend; in difference()
|
/third_party/skia/src/pdf/ |
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/freetype/src/psaux/ |
D | psintrp.c | 1573 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1578 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1582 SUB_INT32( minuend, subtrahend ) ); in cf2_interpT2CharString() 1950 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1956 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1961 subtrahend ) ); in cf2_interpT2CharString()
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | psintrp.c | 1573 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1578 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1582 SUB_INT32( minuend, subtrahend ) ); in cf2_interpT2CharString() 1948 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1954 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1959 subtrahend ) ); in cf2_interpT2CharString()
|
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/ |
D | psintrp.c | 1573 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1578 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1582 SUB_INT32( minuend, subtrahend ) ); in cf2_interpT2CharString() 1943 CF2_F16Dot16 subtrahend; in cf2_interpT2CharString() local 1949 subtrahend = cf2_stack_popFixed( opStack ); in cf2_interpT2CharString() 1954 subtrahend ) ); in cf2_interpT2CharString()
|
/third_party/toybox/toys/pending/ |
D | bc.c | 1395 BcNum *minuend, *subtrahend; in bc_num_s() local 1429 subtrahend = b; in bc_num_s() 1435 subtrahend = a; in bc_num_s() 1441 if (c->rdx < subtrahend->rdx) { in bc_num_s() 1442 bc_num_extend(c, subtrahend->rdx - c->rdx); in bc_num_s() 1445 else start = c->rdx - subtrahend->rdx; in bc_num_s() 1447 s = bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len); in bc_num_s()
|
/third_party/python/Lib/ |
D | zipfile.py | 2164 def _difference(minuend, subtrahend): argument 2169 return itertools.filterfalse(set(subtrahend).__contains__, minuend)
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 40574 fn wrap_sub(&self, idx: usize, subtrahend: usize) -> usize { 40575 wrap_index(idx.wrapping_sub(subtrahend), self.cap())
|
/third_party/gstreamer/gstplugins_base/ |
D | ChangeLog | 144521 …gst/subparse/gstsubparse.*: Remove spurious 1000 subtrahend when calculating the timestamp from th… 144525 Remove spurious 1000 subtrahend when calculating the timestamp from
|