| /openbmc/openbmc/poky/scripts/tiny/ |
| H A D | ksize.py | 33 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 D | ksum.py | 79 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 D | 049 | 58 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 D | 0004-run_test.py-not-use-hard-coded-path-.-obj-hugeadm.patch | 27 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 D | simpletrace_stap.py | 37 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 D | gbb.py | 80 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 D | simple.py | 67 sizes = [] 73 sizes.append(strsizeinfo) 75 sizes.append("8") 76 sizestr = " + ".join(sizes)
|
| /openbmc/qemu/tests/bench/ |
| H A D | qtree-bench.c | 220 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 D | insn.c | 24 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 D | test_dfu.py | 294 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 D | repository_test.cpp | 643 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 D | qcow2-cache.txt | 12 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 D | meson.build | 62 input: 'sizes.h.in', 63 output: 'sizes.h',
|
| /openbmc/qemu/docs/devel/ |
| H A D | loads-stores.rst | 32 - (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 D | builder.py | 214 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 D | 0001-workaround-for-overlapping-sections-in-binary.patch | 22 [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 D | hbitmap.c | 101 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 D | mmu.c | 31 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 D | npcm7xx.inc | 21 # UBI volume sizes in KB unless otherwise noted.
|
| /openbmc/qemu/hw/remote/ |
| H A D | memory.c | 47 name, sysmem_info->sizes[region], in remote_sysmem_reconfig()
|
| /openbmc/qemu/include/hw/remote/ |
| H A D | mpqemu-link.h | 49 uint64_t sizes[REMOTE_MAX_FDS]; member
|
| /openbmc/openbmc/poky/documentation/dev-manual/ |
| H A D | x32-psabi.rst | 11 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 D | libxcursor_1.2.3.bb | 6 can exist in several sizes and the library automatically picks the best \
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libbytesize/ |
| H A D | libbytesize_2.11.bb | 2 facilitate the common operations with sizes in bytes."
|
| /openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
| H A D | image_types_sparse.bbclass | 3 # This sets the granularity of the sparse image conversion. Chunk sizes will be
|