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/python/cpython3/Modules/
Ditertoolsmodule.c3467 PyObject *val, *newtotal; in accumulate_next() local
3480 newtotal = PyNumber_Add(lz->total, val); in accumulate_next()
3482 newtotal = PyObject_CallFunctionObjArgs(lz->binop, lz->total, val, NULL); in accumulate_next()
3484 if (newtotal == NULL) in accumulate_next()
3487 Py_INCREF(newtotal); in accumulate_next()
3488 Py_SETREF(lz->total, newtotal); in accumulate_next()
3489 return newtotal; in accumulate_next()
/external/libvpx/libvpx/vp8/encoder/
Dbitstream.c843 int new_intra, new_last, new_garf, oldtotal, newtotal; in vp8_estimate_entropy_savings() local
860 newtotal = rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings()
874 savings += (oldtotal - newtotal) / 256; in vp8_estimate_entropy_savings()