/openbmc/linux/tools/testing/selftests/arm64/mte/ |
H A D | check_buffer_fill.c | 16 static int sizes[] = { variable 35 item = ARRAY_SIZE(sizes); in check_buffer_by_byte() 38 ptr = (char *)mte_allocate_memory(sizes[i], mem_type, 0, true); in check_buffer_by_byte() 39 if (check_allocated_memory(ptr, sizes[i], mem_type, true) != KSFT_PASS) in check_buffer_by_byte() 41 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[i]); in check_buffer_by_byte() 43 for (j = 0; j < sizes[i]; j++) in check_buffer_by_byte() 48 for (j = 0; j < sizes[i] && !err; j++) { in check_buffer_by_byte() 52 mte_free_memory((void *)ptr, sizes[i], mem_type, true); in check_buffer_by_byte() 72 item = ARRAY_SIZE(sizes); in check_buffer_underflow_by_byte() 74 ptr = (char *)mte_allocate_memory_tag_range(sizes[i], mem_type, 0, in check_buffer_underflow_by_byte() [all …]
|
H A D | check_mmap_options.c | 28 static int sizes[] = { variable 64 int item = ARRAY_SIZE(sizes); in check_anonymous_memory_mapping() 68 map_size = sizes[run] + OVERFLOW + UNDERFLOW; in check_anonymous_memory_mapping() 74 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_anonymous_memory_mapping() 76 ptr = mte_insert_tags((void *)ptr, sizes[run]); in check_anonymous_memory_mapping() 82 result = check_mte_memory(ptr, sizes[run], mode, tag_check); in check_anonymous_memory_mapping() 83 mte_clear_tags((void *)ptr, sizes[run]); in check_anonymous_memory_mapping() 95 int total = ARRAY_SIZE(sizes); in check_file_memory_mapping() 104 map_size = sizes[run] + UNDERFLOW + OVERFLOW; in check_file_memory_mapping() 111 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_file_memory_mapping() [all …]
|
H A D | check_child_memory.c | 24 static int sizes[] = { variable 88 int item = ARRAY_SIZE(sizes); in check_child_memory_mapping() 90 item = ARRAY_SIZE(sizes); in check_child_memory_mapping() 93 ptr = (char *)mte_allocate_memory_tag_range(sizes[run], mem_type, mapping, in check_child_memory_mapping() 95 if (check_allocated_memory_range(ptr, sizes[run], mem_type, in check_child_memory_mapping() 98 result = check_child_tag_inheritance(ptr, sizes[run], mode); in check_child_memory_mapping() 99 mte_free_memory_tag_range((void *)ptr, sizes[run], mem_type, UNDERFLOW, OVERFLOW); in check_child_memory_mapping() 110 int total = ARRAY_SIZE(sizes); in check_child_file_mapping() 118 map_size = sizes[run] + OVERFLOW + UNDERFLOW; in check_child_file_mapping() 125 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_child_file_mapping() [all …]
|
/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/linux/drivers/android/ |
H A D | binder_alloc_selftest.c | 78 static void pr_err_size_seq(size_t *sizes, int *seq) in pr_err_size_seq() argument 84 pr_cont("[%zu]", sizes[i]); in pr_err_size_seq() 117 size_t *sizes, int *seq) in binder_selftest_alloc_buf() argument 122 buffers[i] = binder_alloc_new_buf(alloc, sizes[i], 0, 0, 0, 0); in binder_selftest_alloc_buf() 125 sizes[i])) { in binder_selftest_alloc_buf() 126 pr_err_size_seq(sizes, seq); in binder_selftest_alloc_buf() 134 size_t *sizes, int *seq, size_t end) in binder_selftest_free_buf() argument 148 pr_err_size_seq(sizes, seq); in binder_selftest_free_buf() 177 size_t *sizes, int *seq, size_t end) in binder_selftest_alloc_free() argument 181 binder_selftest_alloc_buf(alloc, buffers, sizes, seq); in binder_selftest_alloc_free() [all …]
|
/openbmc/linux/drivers/gpu/drm/exynos/ |
H A D | exynos_drm_fbdev.c | 60 struct drm_fb_helper_surface_size *sizes, in exynos_drm_fbdev_update() argument 77 drm_fb_helper_fill_info(fbi, helper, sizes); in exynos_drm_fbdev_update() 91 struct drm_fb_helper_surface_size *sizes) in exynos_drm_fbdev_create() argument 101 sizes->surface_width, sizes->surface_height, in exynos_drm_fbdev_create() 102 sizes->surface_bpp); in exynos_drm_fbdev_create() 104 mode_cmd.width = sizes->surface_width; in exynos_drm_fbdev_create() 105 mode_cmd.height = sizes->surface_height; in exynos_drm_fbdev_create() 106 mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3); in exynos_drm_fbdev_create() 107 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in exynos_drm_fbdev_create() 108 sizes->surface_depth); in exynos_drm_fbdev_create() [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/linux/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_guc_log.c | 66 log->sizes[i].bytes = sections[i].default_val; in _guc_log_init_sizes() 69 if (log->sizes[GUC_LOG_SECTIONS_DEBUG].bytes >= SZ_1M && in _guc_log_init_sizes() 71 log->sizes[GUC_LOG_SECTIONS_CRASH].bytes = SZ_1M; in _guc_log_init_sizes() 76 if ((log->sizes[i].bytes % SZ_1M) == 0) { in _guc_log_init_sizes() 77 log->sizes[i].units = SZ_1M; in _guc_log_init_sizes() 78 log->sizes[i].flag = sections[i].flag; in _guc_log_init_sizes() 80 log->sizes[i].units = SZ_4K; in _guc_log_init_sizes() 81 log->sizes[i].flag = 0; in _guc_log_init_sizes() 84 if (!IS_ALIGNED(log->sizes[i].bytes, log->sizes[i].units)) in _guc_log_init_sizes() 86 sections[i].name, log->sizes[i].bytes, log->sizes[i].units); in _guc_log_init_sizes() [all …]
|
/openbmc/linux/drivers/gpu/drm/msm/ |
H A D | msm_fbdev.c | 69 struct drm_fb_helper_surface_size *sizes) in msm_fbdev_create() argument 80 format = drm_mode_legacy_fb_format(sizes->surface_bpp, sizes->surface_depth); in msm_fbdev_create() 82 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in msm_fbdev_create() 83 sizes->surface_height, sizes->surface_bpp, in msm_fbdev_create() 84 sizes->fb_width, sizes->fb_height); in msm_fbdev_create() 86 pitch = align_pitch(sizes->surface_width, sizes->surface_bpp); in msm_fbdev_create() 87 fb = msm_alloc_stolen_fb(dev, sizes->surface_width, in msm_fbdev_create() 88 sizes->surface_height, pitch, format); in msm_fbdev_create() 121 drm_fb_helper_fill_info(fbi, helper, sizes); in msm_fbdev_create()
|
/openbmc/linux/drivers/gpu/drm/gma500/ |
H A D | fbdev.c | 151 struct drm_fb_helper_surface_size *sizes) in psb_fbdev_fb_probe() argument 166 if (sizes->surface_bpp == 24) { in psb_fbdev_fb_probe() 167 sizes->surface_bpp = 32; in psb_fbdev_fb_probe() 168 sizes->surface_depth = 24; in psb_fbdev_fb_probe() 170 bpp = sizes->surface_bpp; in psb_fbdev_fb_probe() 171 depth = sizes->surface_depth; in psb_fbdev_fb_probe() 178 size = ALIGN(sizes->surface_width * DIV_ROUND_UP(bpp, 8), 64) * in psb_fbdev_fb_probe() 179 sizes->surface_height; in psb_fbdev_fb_probe() 183 sizes->surface_bpp = 16; in psb_fbdev_fb_probe() 184 sizes->surface_depth = 16; in psb_fbdev_fb_probe() [all …]
|
/openbmc/linux/drivers/gpu/drm/omapdrm/ |
H A D | omap_fbdev.c | 129 struct drm_fb_helper_surface_size *sizes) in omap_fbdev_create() argument 142 sizes->surface_bpp = 32; in omap_fbdev_create() 143 sizes->surface_depth = 24; in omap_fbdev_create() 145 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in omap_fbdev_create() 146 sizes->surface_height, sizes->surface_bpp, in omap_fbdev_create() 147 sizes->fb_width, sizes->fb_height); in omap_fbdev_create() 149 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in omap_fbdev_create() 150 sizes->surface_depth); in omap_fbdev_create() 152 mode_cmd.width = sizes->surface_width; in omap_fbdev_create() 153 mode_cmd.height = sizes->surface_height; in omap_fbdev_create() [all …]
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_fbdev_dma.c | 77 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_dma_helper_fb_probe() argument 90 sizes->surface_width, sizes->surface_height, in drm_fbdev_dma_helper_fb_probe() 91 sizes->surface_bpp); in drm_fbdev_dma_helper_fb_probe() 93 format = drm_mode_legacy_fb_format(sizes->surface_bpp, sizes->surface_depth); in drm_fbdev_dma_helper_fb_probe() 94 buffer = drm_client_framebuffer_create(client, sizes->surface_width, in drm_fbdev_dma_helper_fb_probe() 95 sizes->surface_height, format); in drm_fbdev_dma_helper_fb_probe() 123 drm_fb_helper_fill_info(info, fb_helper, sizes); in drm_fbdev_dma_helper_fb_probe() 131 info->screen_size = sizes->surface_height * fb->pitches[0]; in drm_fbdev_dma_helper_fb_probe()
|
H A D | drm_fbdev_generic.c | 72 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_generic_helper_fb_probe() argument 84 sizes->surface_width, sizes->surface_height, in drm_fbdev_generic_helper_fb_probe() 85 sizes->surface_bpp); in drm_fbdev_generic_helper_fb_probe() 87 format = drm_mode_legacy_fb_format(sizes->surface_bpp, sizes->surface_depth); in drm_fbdev_generic_helper_fb_probe() 88 buffer = drm_client_framebuffer_create(client, sizes->surface_width, in drm_fbdev_generic_helper_fb_probe() 89 sizes->surface_height, format); in drm_fbdev_generic_helper_fb_probe() 109 drm_fb_helper_fill_info(info, fb_helper, sizes); in drm_fbdev_generic_helper_fb_probe()
|
/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/linux/drivers/gpu/drm/armada/ |
H A D | armada_fbdev.c | 43 struct drm_fb_helper_surface_size *sizes) in armada_fbdev_create() argument 54 mode.width = sizes->surface_width; in armada_fbdev_create() 55 mode.height = sizes->surface_height; in armada_fbdev_create() 56 mode.pitches[0] = armada_pitch(mode.width, sizes->surface_bpp); in armada_fbdev_create() 57 mode.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in armada_fbdev_create() 58 sizes->surface_depth); in armada_fbdev_create() 103 drm_fb_helper_fill_info(info, fbh, sizes); in armada_fbdev_create() 117 struct drm_fb_helper_surface_size *sizes) in armada_fb_probe() argument 122 ret = armada_fbdev_create(fbh, sizes); in armada_fb_probe()
|
/openbmc/linux/arch/parisc/boot/compressed/ |
H A D | Makefile | 15 targets += $(OBJECTS) sizes.h 30 sed-sizes := -e 's/^\([0-9a-fA-F]*\) . \(__bss_start\|_end\|parisc_kernel_start\)$$/\#define SZ\2 0… 33 cmd_sizes = $(NM) $< | sed -n $(sed-sizes) > $@ 35 $(obj)/sizes.h: vmlinux FORCE 36 $(call if_changed,sizes) 39 $(obj)/head.o: $(obj)/sizes.h 42 $(obj)/misc.o: $(obj)/sizes.h 47 $(obj)/vmlinux.lds: $(obj)/sizes.h
|
/openbmc/linux/drivers/gpu/drm/tegra/ |
H A D | fbdev.c | 70 struct drm_fb_helper_surface_size *sizes) in tegra_fbdev_probe() argument 83 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in tegra_fbdev_probe() 85 cmd.width = sizes->surface_width; in tegra_fbdev_probe() 86 cmd.height = sizes->surface_height; in tegra_fbdev_probe() 87 cmd.pitches[0] = round_up(sizes->surface_width * bytes_per_pixel, in tegra_fbdev_probe() 90 cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in tegra_fbdev_probe() 91 sizes->surface_depth); in tegra_fbdev_probe() 120 drm_fb_helper_fill_info(info, helper, sizes); in tegra_fbdev_probe()
|
/openbmc/linux/drivers/gpu/drm/i915/display/ |
H A D | intel_fbdev.c | 150 struct drm_fb_helper_surface_size *sizes) in intelfb_alloc() argument 161 if (sizes->surface_bpp == 24) in intelfb_alloc() 162 sizes->surface_bpp = 32; in intelfb_alloc() 164 mode_cmd.width = sizes->surface_width; in intelfb_alloc() 165 mode_cmd.height = sizes->surface_height; in intelfb_alloc() 168 DIV_ROUND_UP(sizes->surface_bpp, 8), 64); in intelfb_alloc() 169 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in intelfb_alloc() 170 sizes->surface_depth); in intelfb_alloc() 209 struct drm_fb_helper_surface_size *sizes) in intelfb_create() argument 237 (sizes->fb_width > intel_fb->base.width || in intelfb_create() [all …]
|
/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/linux/Documentation/userspace-api/media/v4l/ |
H A D | vidioc-subdev-enum-frame-size.rst | 13 VIDIOC_SUBDEV_ENUM_FRAME_SIZE - Enumerate media bus frame sizes 34 This ioctl allows applications to access the enumeration of frame sizes 47 Therefore, to enumerate frame sizes allowed on the specified pad 54 A successful call will return with minimum and maximum frame sizes filled in. 59 Sub-devices that only support discrete frame sizes (such as most 60 sensors) will return one or more frame sizes with identical minimum and 63 Not all possible sizes in given [minimum, maximum] ranges need to be 70 Available frame sizes may depend on the current 'try' formats at other 111 - Frame sizes to be enumerated, from enum
|
/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 161 if (sz > sizes->len) { in vcpu_tb_trans() 162 g_array_set_size(sizes, sz); in vcpu_tb_trans() 164 unsigned long *cnt = &g_array_index(sizes, unsigned long, sz); in vcpu_tb_trans() 201 for (i = 0; i <= sizes->len; i++) { in plugin_exit() 202 unsigned long *cnt = &g_array_index(sizes, unsigned long, i); in plugin_exit() 250 g_array_free(sizes, TRUE); in plugin_exit() 269 sizes = g_array_new(true, true, sizeof(unsigned long)); in qemu_plugin_install()
|
/openbmc/linux/drivers/media/usb/em28xx/ |
H A D | em28xx-vbi.c | 23 unsigned int sizes[], struct device *alloc_devs[]) in vbi_queue_setup() argument 33 if (sizes[0] < size) in vbi_queue_setup() 35 size = sizes[0]; in vbi_queue_setup() 39 sizes[0] = size; in vbi_queue_setup()
|