Home
last modified time | relevance | path

Searched refs:pbar (Results 1 – 15 of 15) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/progressbar/
H A Dwidgets.py58 def update(self, pbar): argument
98 def update(self, pbar): argument
109 def update(self, pbar): argument
118 eta = elapsed * pbar.maxval / pbar.currval - elapsed
157 eta = self._eta(pbar.maxval, pbar.currval, elapsed)
162 weight = (pbar.currval / float(pbar.maxval)) ** 0.5
180 if pbar.seconds_elapsed < 2e-6 or pbar.currval < 2e-6: # =~ 0
183 speed = pbar.currval / pbar.seconds_elapsed
274 return '%d%s%d' % (pbar.currval, self.sep, pbar.maxval)
307 if pbar.maxval:
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bar/
H A Dgk20a.c36 struct nvkm_bar **pbar) in gk20a_bar_new() argument
38 int ret = gf100_bar_new_(&gk20a_bar_func, device, type, inst, pbar); in gk20a_bar_new()
40 (*pbar)->iomap_uncached = true; in gk20a_bar_new()
H A Dgm20b.c36 struct nvkm_bar **pbar) in gm20b_bar_new() argument
38 int ret = gf100_bar_new_(&gm20b_bar_func, device, type, inst, pbar); in gm20b_bar_new()
40 (*pbar)->iomap_uncached = true; in gm20b_bar_new()
H A Dgf100.c165 enum nvkm_subdev_type type, int inst, struct nvkm_bar **pbar) in gf100_bar_new_() argument
172 *pbar = &bar->base; in gf100_bar_new_()
193 struct nvkm_bar **pbar) in gf100_bar_new() argument
195 return gf100_bar_new_(&gf100_bar_func, device, type, inst, pbar); in gf100_bar_new()
H A Dg84.c60 struct nvkm_bar **pbar) in g84_bar_new() argument
62 return nv50_bar_new_(&g84_bar_func, device, type, inst, 0x200, pbar); in g84_bar_new()
H A Dgm107.c63 struct nvkm_bar **pbar) in gm107_bar_new() argument
65 return gf100_bar_new_(&gm107_bar_func, device, type, inst, pbar); in gm107_bar_new()
H A Dtu102.c96 struct nvkm_bar **pbar) in tu102_bar_new() argument
98 return gf100_bar_new_(&tu102_bar, device, type, inst, pbar); in tu102_bar_new()
H A Dnv50.c223 enum nvkm_subdev_type type, int inst, u32 pgd_addr, struct nvkm_bar **pbar) in nv50_bar_new_() argument
230 *pbar = &bar->base; in nv50_bar_new_()
252 struct nvkm_bar **pbar) in nv50_bar_new() argument
254 return nv50_bar_new_(&nv50_bar_func, device, type, inst, 0x1400, pbar); in nv50_bar_new()
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dknotty.py262 pbar = activetasks[t].get("progressbar", None)
264 if not pbar or pbar.bouncing != (progress < 0):
267 pbar.bouncing = True
270 pbar.bouncing = False
271 activetasks[t]["progressbar"] = pbar
312 if not pbar.start_time:
313 pbar.start(False)
315 pbar.start_time = start_time
317 pbar.setextra(rate)
319 content = pbar.update(progress)
[all …]
H A Dtaskexp.py236 pbar = Gtk.ProgressBar()
237 box.pack_start(pbar, True, True, 0)
259 pbar.set_fraction(0.0)
265 pbar.set_fraction(x * 1.0 / progress_total)
277 pbar.set_fraction(0.0)
284 pbar.set_fraction(x * 1.0 / progress_total)
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-hashclient80 def thread_main(pbar, lock): argument
102 pbar.update()
110 with ProgressBar(total=total_requests) as pbar:
111 …threads = [threading.Thread(target=thread_main, args=(pbar, lock), daemon=False) for _ in range(ar…
126 with ProgressBar(total=args.requests) as pbar:
139 pbar.update()
/openbmc/linux/arch/m68k/include/asm/
H A Dbvme6000hw.h26 pad_l[3], pbar, member
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dupgrade.py247 pbar = bb.ui.knotty.BBProgress('Adding changed files', len(filelist))
248 pbar.start()
253 pbar.update(i)
254 pbar.finish()
/openbmc/linux/drivers/rapidio/devices/
H A Dtsi721.c856 tsi721_obw_alloc(struct tsi721_device *priv, struct tsi721_obw_bar *pbar, in tsi721_obw_alloc() argument
868 bar_base = pbar->base; in tsi721_obw_alloc()
869 bar_end = bar_base + pbar->size; in tsi721_obw_alloc()
912 new_win->pbar = pbar; in tsi721_obw_alloc()
914 pbar->free -= size; in tsi721_obw_alloc()
924 struct tsi721_obw_bar *pbar; in tsi721_map_outb_win() local
943 pbar = &priv->p2r_bar[i]; in tsi721_map_outb_win()
944 ret = tsi721_obw_alloc(priv, pbar, size, &obw); in tsi721_map_outb_win()
1020 ob_win->pbar->free += ob_win->size; in tsi721_unmap_outb_win()
H A Dtsi721.h864 struct tsi721_obw_bar *pbar; member