Home
last modified time | relevance | path

Searched refs:sizes (Results 1 – 25 of 141) sorted by relevance

123456

/openbmc/openbmc/poky/scripts/tiny/
H A Dksize.py33 sizes = output[-1].split()[0:4]
34 self.text = int(sizes[0])
35 self.data = int(sizes[1])
36 self.bss = int(sizes[2])
37 self.total = int(sizes[3])
55 oreport.sizes.title = str(path) + "/*.o"
66 r.totals["total"] += b.sizes.total
67 r.totals["text"] += b.sizes.text
68 r.totals["data"] += b.sizes.data
69 r.totals["bss"] += b.sizes.bss
[all …]
H A Dksum.py79 sizes = output[-1].split()[0:4]
82 (int(sizes[0]), int(sizes[1]), int(sizes[2]), int(sizes[3])), end=' ')
85 ko_text += int(sizes[0])
86 ko_data += int(sizes[1])
87 ko_bss += int(sizes[2])
88 ko_total += int(sizes[3])
95 sizes = output[-1].split()[0:4]
98 (int(sizes[0]), int(sizes[1]), int(sizes[2]), int(sizes[3])), end=' ')
101 vmlinux_text += int(sizes[0])
102 vmlinux_data += int(sizes[1])
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D04958 sizes="1024 1024b 1k 1K 1M 1G 1T "
59 sizes+="1024.0 1024.0b 1.5k 1.5K 1.5M 1.5G 1.5T"
63 for s in $sizes; do
69 for s in $sizes; do
75 sizes="-1024 -1k 1kilobyte foobar"
77 for s in $sizes; do
89 sizes="1024 1024b 1k 1K 1M "
90 sizes+="1024.0 1024.0b 0.5k 0.5K 0.5M"
92 for s in $sizes; do
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0004-run_test.py-not-use-hard-coded-path-.-obj-hugeadm.patch27 Use libhugetlbfs' hugeadm utility to get a list of page sizes that have
32 sizes = set()
34 - (rc, out) = bash("../obj/hugeadm --page-sizes")
36 + p = subprocess.Popen("hugeadm --page-sizes", shell=True, env=local_env, stdout=subprocess.…
39 + return sizes
41 + return sizes
45 return sizes
/openbmc/qemu/scripts/tracetool/format/
H A Dsimpletrace_stap.py37 sizes = ['24'] # sizeof(TraceRecord)
46 sizes.append('4 + arg%s_len' % name)
48 sizes.append('8')
49 sizestr = ' + '.join(sizes)
/openbmc/u-boot/tools/binman/etype/
H A Dgbb.py80 sizes = [0x100, 0x1000, bmpfv_size, 0x1000]
81 sizes = ['%#x' % size for size in sizes]
92 tools.Run('futility', 'gbb_utility', '-c', ','.join(sizes), fname)
/openbmc/qemu/scripts/tracetool/backend/
H A Dsimple.py67 sizes = []
73 sizes.append(strsizeinfo)
75 sizes.append("8")
76 sizestr = " + ".join(sizes)
/openbmc/qemu/tests/bench/
H A Dqtree-bench.c220 size_t sizes[] = { in main() local
228 double res[ARRAY_SIZE(benchmarks)][ARRAY_SIZE(impls)][ARRAY_SIZE(sizes)]; in main()
229 for (int i = 0; i < ARRAY_SIZE(sizes); i++) { in main()
230 size_t size = sizes[i]; in main()
255 for (int i = 0; i < ARRAY_SIZE(sizes); i++) { in main()
256 printf("%7zu ", sizes[i]); in main()
268 for (int k = 0; k < ARRAY_SIZE(sizes); k++) { in main()
/openbmc/qemu/tests/tcg/plugins/
H A Dinsn.c24 static GArray *sizes; variable
159 if (sz > sizes->len) { in vcpu_tb_trans()
160 g_array_set_size(sizes, sz); in vcpu_tb_trans()
162 unsigned long *cnt = &g_array_index(sizes, unsigned long, sz); in vcpu_tb_trans()
199 for (i = 0; i <= sizes->len; i++) { in plugin_exit()
200 unsigned long *cnt = &g_array_index(sizes, unsigned long, i); in plugin_exit()
248 g_array_free(sizes, TRUE); in plugin_exit()
267 sizes = g_array_new(true, true, sizeof(unsigned long)); in qemu_plugin_install()
/openbmc/u-boot/test/py/tests/
H A Dtest_dfu.py294 sizes = env__dfu_config.get('test_sizes', test_sizes_default)
296 sizes = []
312 for size in sizes:
/openbmc/phosphor-logging/test/openpower-pels/
H A Drepository_test.cpp643 const auto& sizes = repo.getSizeStats(); in TEST_F() local
644 EXPECT_EQ(sizes.total, 4096 * 40); in TEST_F()
658 EXPECT_EQ(sizes.total, 4096 * 18); // 90% of 20 PELs in TEST_F()
659 EXPECT_EQ(sizes.bmcInfo, 4096 * 3); // 15% of 20 PELs in TEST_F()
660 EXPECT_EQ(sizes.bmcServiceable, 4096 * 6); // 30% of 20 PELs in TEST_F()
661 EXPECT_EQ(sizes.nonBMCInfo, 4096 * 3); // 15% of 20 PELs in TEST_F()
662 EXPECT_EQ(sizes.nonBMCServiceable, 4096 * 6); // 30% of 20 PELs in TEST_F()
692 const auto& sizes = repo.getSizeStats(); in TEST_F() local
693 EXPECT_EQ(sizes.total, 4096 * 23); in TEST_F()
708 EXPECT_EQ(sizes.total, 4096 * 3); in TEST_F()
[all …]
/openbmc/qemu/docs/
H A Dqcow2-cache.txt12 performance significantly. However, setting the right cache sizes is
28 clusters, and it does not support sizes larger than 2MB.
77 Choosing the right cache sizes
79 In order to choose the cache sizes we need to know how they relate to
112 How to configure the cache sizes
114 Cache sizes can be configured using the -drive option in the
126 (or the cache entry size: see "Using smaller cache sizes" below).
166 This can be inefficient with large cluster sizes since it results in
183 - Smaller entry sizes generally improve the cache efficiency and make
189 - Try different entry sizes to see which one gives faster performance
[all …]
/openbmc/libpldm/include/libpldm/
H A Dmeson.build62 input: 'sizes.h.in',
63 output: 'sizes.h',
/openbmc/qemu/docs/devel/
H A Dloads-stores.rst32 - (empty) : for 32 or 64 bit sizes
119 - (empty) : for target endian, or 8 bit sizes
142 - (empty) : for 32 or 64 bit sizes
153 - (empty) : for target endian, or 8 bit sizes
180 - (empty) : for 32 or 64 bit sizes
191 - (empty) : for target endian, or 8 bit sizes
219 - (empty) : for 32 or 64 bit sizes
230 - (empty) : for target endian, or 8 bit sizes
258 - (empty) : for 32 or 64 bit sizes
289 - (empty) : for 32 or 64 bit sizes
[all …]
/openbmc/u-boot/tools/buildman/
H A Dbuilder.py214 def __init__(self, rc, err_lines, sizes, func_sizes, config, argument
218 self.sizes = sizes
670 sizes = {}
707 sizes[values[5]] = size_dict
728 return Builder.Outcome(rc, err_lines, sizes, func_sizes, config,
1001 base_sizes = self._base_board_dict[target].sizes
1003 sizes = outcome.sizes
1011 for image in sizes:
1015 for part in sorted(sizes[image]):
1016 diff = sizes[image][part] - base_image[part]
[all …]
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/
H A D0001-workaround-for-overlapping-sections-in-binary.patch22 [klibc] Detect the sizes of various types, and make available to sysstub.ph.
24 This additional code effectively queries the C compiler for the sizes of
/openbmc/qemu/util/
H A Dhbitmap.c101 uint64_t sizes[HBITMAP_LEVELS]; member
592 memset(hb->levels[i], 0, hb->sizes[i] * sizeof(unsigned long)); in hbitmap_reset_all()
810 hb->sizes[i] = size; in hbitmap_alloc()
860 if (hb->sizes[i] == size) { in hbitmap_truncate()
863 old = hb->sizes[i]; in hbitmap_truncate()
864 hb->sizes[i] = size; in hbitmap_truncate()
938 for (j = 0; j < a->sizes[i]; j++) { in hbitmap_merge()
949 size_t size = bitmap->sizes[HBITMAP_LEVELS - 1] * sizeof(unsigned long); in hbitmap_sha256()
/openbmc/qemu/target/microblaze/
H A Dmmu.c31 static const unsigned int sizes[] = { in tlb_decode_size() local
35 assert(f < ARRAY_SIZE(sizes)); in tlb_decode_size()
36 return sizes[f]; in tlb_decode_size()
/openbmc/openbmc/meta-nuvoton/conf/machine/include/
H A Dnpcm7xx.inc21 # UBI volume sizes in KB unless otherwise noted.
/openbmc/qemu/hw/remote/
H A Dmemory.c47 name, sysmem_info->sizes[region], in remote_sysmem_reconfig()
/openbmc/qemu/include/hw/remote/
H A Dmpqemu-link.h49 uint64_t sizes[REMOTE_MAX_FDS]; member
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dx32-psabi.rst11 the sizes are for various C data types.
18 psABI. This ABI is newer and uses 64-bits for data sizes and program
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dlibxcursor_1.2.3.bb6 can exist in several sizes and the library automatically picks the best \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libbytesize/
H A Dlibbytesize_2.11.bb2 facilitate the common operations with sizes in bytes."
/openbmc/openbmc/meta-openembedded/meta-oe/classes/
H A Dimage_types_sparse.bbclass3 # This sets the granularity of the sparse image conversion. Chunk sizes will be

123456