Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/support/scripts/
H A Dsize-stats98 pkgsize = collections.defaultdict(int)
121 pkgsize[pkg] += st.st_size
123 return pkgsize
135 def draw_graph(pkgsize, outputf): argument
151 total = sum(pkgsize.values())
156 for (p, sz) in sorted(pkgsize.items(), key=lambda x: x[1],
215 pkgsize = pkgsizes[pkgname]
217 if pkgsize == 0:
220 percent_pkg = float(filesize) / pkgsize * 100
224 wr.writerow([f, pkgname, filesize, pkgsize,
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py46 pkgsize = int(result.output.strip())
47 self.assertGreater(pkgsize, 1, "Size should be greater than 1. %s" % result.output)
/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-pkgdata-util193 pkgsize = (int(value) + 1024 // 2) // 1024
194 value = "%d" % pkgsize