Home
last modified time | relevance | path

Searched refs:_total (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Doptpmap.py6 _total = None variable
11 global _total
13 _total = total
22 sys.stdout.write('\r\t{} of {}'.format(_current.value, _total.value))
39 global _total
41 _total = multiprocessing.Value('i', len(iterable))
48 initargs=(_current, _total,),
/external/lzma/CPP/7zip/UI/FileManager/
DProgressDialog.h19 UInt64 _total; variable
22 CProgressSync(): _stopped(false), _paused(false), _total(1), _completed(0) {} in CProgressSync()
48 _total = total; in SetProgress()
59 total = _total; in GetProgress()
/external/v8/tools/testrunner/testproc/
Dprogress.py64 self._total = 0
67 self._total += 1
168 self._total = 0
173 self._total += 1
208 if not self._total:
211 progress = (self._passed + self._failed) * 100 // self._total
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_rast_debug.c350 static uint64_t _total = 0; in lp_debug_draw_bins_by_coverage() local
396 _total += total; in lp_debug_draw_bins_by_coverage()
402 _total, in lp_debug_draw_bins_by_coverage()
404 (double) _total * 100.0 / (double)_possible); in lp_debug_draw_bins_by_coverage()
/external/tensorflow/tensorflow/python/keras/
Dmetrics.py2357 self._total = None
2364 self._total = self.add_weight(
2375 return self._total if self._built else None
2420 update_total_op = self._total.assign_add(values)