Searched refs:MIN (Results 1 – 19 of 19) sorted by relevance
| /xen/tools/include/xen-tools/ |
| A D | libs.h | 20 #ifndef MIN 21 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
| /xen/xen/lib/x86/ |
| A D | cpuid.c | 74 for ( i = 1; i <= MIN(p->basic.max_leaf, in x86_cpuid_policy_fill_native() 119 for ( i = 1; i <= MIN(p->feat.max_subleaf, in x86_cpuid_policy_fill_native() 175 for ( i = 1; i <= MIN(p->extd.max_leaf & 0xffffU, in x86_cpuid_policy_fill_native() 310 for ( leaf = 0; leaf <= MIN(p->basic.max_leaf, in x86_cpuid_copy_to_buffer() 327 subleaf <= MIN(p->feat.max_subleaf, in x86_cpuid_copy_to_buffer() 369 for ( leaf = 0; leaf <= MIN(p->extd.max_leaf & 0xfffful, in x86_cpuid_copy_to_buffer()
|
| /xen/tools/libfsimage/zfs/ |
| A D | fsi_zfs.h | 49 #define MIN(x, y) ((x) < (y) ? (x) : (y)) macro
|
| A D | fsys_zfs.c | 535 int toread = MIN(array_len - bseen, ZAP_LEAF_ARRAY_BYTES); in zap_leaf_array_equal() 1523 movesize = MIN(length, file_end - filepos); in zfs_read()
|
| /xen/tools/console/testsuite/ |
| A D | console-dom0.c | 10 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
|
| /xen/xen/include/xen/ |
| A D | kernel.h | 42 #define MIN(x,y) ((x) < (y) ? (x) : (y)) macro
|
| /xen/xen/tools/kconfig/lxdialog/ |
| A D | checklist.c | 127 max_choice = MIN(list_height, item_count()); in dialog_checklist() 170 check_x = MIN(check_x, list_width); in dialog_checklist()
|
| A D | textbox.c | 333 line += MIN(strlen(line), hscroll); /* Scroll horizontally */ in print_line() 336 waddnstr(win, line, MIN(strlen(line), width - 2)); in print_line()
|
| A D | menubox.c | 190 max_choice = MIN(menu_height, item_count()); in dialog_menu() 321 choice = MIN(choice + 1, max_choice - 1); in dialog_menu()
|
| A D | dialog.h | 43 #define MIN(x,y) (x < y ? x : y) macro
|
| A D | util.c | 355 int tlen = MIN(width - 2, strlen(title)); in print_title()
|
| /xen/tools/xenstore/ |
| A D | xenstored_domain.c | 971 wrl_creditt xfer = MIN( *debit - debit_floor, in wrl_xfer_credit() 1016 seconds = MIN(seconds, 1000*1000); /* arbitrary, prevents overflow */ in wrl_credit_update() 1030 domain->wrl_credit = MIN( (int64_t)domain->wrl_credit + denom / num, in wrl_credit_update() 1081 wakeup = MIN( num / denom /* uint64_t */, INT_MAX ); in wrl_check_timeout()
|
| A D | xenstore_client.c | 141 #define MIN(a, b) (((a) < (b))? (a) : (b)) macro 214 linewid < MIN(desired_width, max_width); in do_ls()
|
| /xen/tools/xenstat/libxenstat/src/ |
| A D | xenstat_linux.c | 88 memcpy(result, de->d_name, MIN(strnlen(de->d_name, in getBridge()
|
| /xen/xen/arch/arm/ |
| A D | kernel.c | 143 load_end = MIN(info->mem.bank[0].start + MB(128), load_end); in kernel_zimage_place()
|
| A D | domain_build.c | 449 bank_size = MIN(GUEST_RAM0_SIZE, kinfo->unassigned_mem); in allocate_memory() 454 bank_size = MIN(GUEST_RAM1_SIZE, kinfo->unassigned_mem); in allocate_memory()
|
| /xen/m4/ |
| A D | pkg.m4 | 24 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
|
| /xen/xen/common/ |
| A D | unlzma.c | 609 wr.bufsize = MIN(header.dst_size, header.dict_size); in unlzma()
|
| /xen/tools/console/daemon/ |
| A D | io.c | 54 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
|
Completed in 42 milliseconds