/third_party/python/Objects/ |
D | rangeobject.c | 233 if ((result = PyNumber_Add(tmp2, one)) == NULL) in compute_range_length() 264 result = PyNumber_Add(r->start, i); in compute_item() 271 result = PyNumber_Add(r->start, incr); in compute_item() 296 i = PyNumber_Add(r->length, arg); in compute_range_item() 954 stop = PyNumber_Add(r->start, product); in longrangeiter_reduce() 1026 new_index = PyNumber_Add(r->index, _PyLong_GetOne()); in longrangeiter_next() 1036 result = PyNumber_Add(r->start, product); in longrangeiter_next() 1230 sum = PyNumber_Add(range->start, product); in range_reverse()
|
D | sliceobject.c | 415 upper = PyNumber_Add(length, lower); in _PySlice_GetLongIndices() 438 PyObject *tmp = PyNumber_Add(start, length); in _PySlice_GetLongIndices() 477 PyObject *tmp = PyNumber_Add(stop, length); in _PySlice_GetLongIndices()
|
D | enumobject.c | 120 stepped_up = PyNumber_Add(next_index, _PyLong_GetOne()); in enum_next_long()
|
D | weakrefobject.c | 532 WRAP_BINARY(proxy_add, PyNumber_Add) in WRAP_BINARY() argument
|
D | abstract.c | 1069 PyNumber_Add(PyObject *v, PyObject *w) in PyNumber_Add() function
|
/third_party/python/Include/ |
D | abstract.h | 422 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2);
|
/third_party/python/Python/ |
D | bltinmodule.c | 2489 temp = PyNumber_Add(result, item); in builtin_sum_impl() 2533 temp = PyNumber_Add(result, item); in builtin_sum_impl() 2568 temp = PyNumber_Add(result, item); in builtin_sum_impl()
|
D | ast_opt.c | 243 newval = PyNumber_Add(lv, rv); in fold_binop()
|
D | ceval.c | 2084 sum = PyNumber_Add(left, right); in _PyEval_EvalFrameDefault()
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 1770 x3 = PyNumber_Add(x1, x2); /* days and seconds in seconds */ in delta_to_microseconds() 1788 result = PyNumber_Add(x1, x2); in delta_to_microseconds() 2344 sum = PyNumber_Add(sofar, prod); in accum() 2377 sum = PyNumber_Add(sofar, prod); in accum() 2399 y = PyNumber_Add(sum, x); in accum() 2511 y = PyNumber_Add(x, temp); in delta_new()
|
D | _collectionsmodule.c | 2372 newval = PyNumber_Add(oldval, one); in _collections__count_elements_impl() 2395 newval = PyNumber_Add(oldval, one); in _collections__count_elements_impl()
|
D | _testcapimodule.c | 581 temp = PyNumber_Add(num, one); in test_long_and_overflow() 745 temp = PyNumber_Add(num, one); in test_long_long_and_overflow() 3325 result = PyNumber_Add(op1, op1); in profile_int() 3338 result = PyNumber_Add(op1, op1); in profile_int()
|
D | _operator.c | 64 return PyNumber_Add(a, b); in _operator_add_impl()
|
D | itertoolsmodule.c | 3699 newtotal = PyNumber_Add(lz->total, val); in accumulate_next() 4278 stepped_up = PyNumber_Add(long_cnt, lz->long_step); in count_nextlong()
|
D | mathmodule.c | 1827 Py_SETREF(a, PyNumber_Add(a, q)); in math_isqrt()
|
D | _zoneinfo.c | 568 PyObject *tmp = PyNumber_Add(dt, tti->utcoff); in zoneinfo_fromutc()
|
D | _elementtree.c | 2593 PyObject *tmp = PyNumber_Add(previous, joined); in treebuilder_extend_element_text_or_tail()
|
D | posixmodule.c | 2366 ns_total = PyNumber_Add(s_in_ns, ns_fractional); in fill_time()
|
/third_party/python/Doc/c-api/ |
D | number.rst | 18 .. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2)
|
D | intro.rst | 616 incremented_item = PyNumber_Add(item, const_one);
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 408 function,PyNumber_Add,3.2,
|
D | refcounts.dat | 1418 PyNumber_Add:PyObject*::+1: 1419 PyNumber_Add:PyObject*:o1:0: 1420 PyNumber_Add:PyObject*:o2:0:
|
/third_party/python/PC/ |
D | python3dll.c | 384 EXPORT_FUNC(PyNumber_Add)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 936 function PyNumber_Add
|