Home
last modified time | relevance | path

Searched refs:newtotal (Results 1 – 3 of 3) sorted by relevance

/external/curl/tests/
Dmemanalyze.pl61 sub newtotal { subroutine
133 newtotal($totalmem);
159 newtotal($totalmem);
184 newtotal($totalmem);
205 newtotal($totalmem);
227 newtotal($totalmem);
246 newtotal($totalmem);
/external/libvpx/libvpx/vp8/encoder/
Dbitstream.c803 int new_intra, new_last, new_garf, oldtotal, newtotal; in vp8_estimate_entropy_savings() local
820 newtotal = rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings()
834 savings += (oldtotal - newtotal) / 256; in vp8_estimate_entropy_savings()
/external/python/cpython3/Modules/
Ditertoolsmodule.c3524 PyObject *val, *newtotal; in accumulate_next() local
3544 newtotal = PyNumber_Add(lz->total, val); in accumulate_next()
3546 newtotal = PyObject_CallFunctionObjArgs(lz->binop, lz->total, val, NULL); in accumulate_next()
3548 if (newtotal == NULL) in accumulate_next()
3551 Py_INCREF(newtotal); in accumulate_next()
3552 Py_SETREF(lz->total, newtotal); in accumulate_next()
3553 return newtotal; in accumulate_next()