Searched refs:rhs (Results 1 – 4 of 4) sorted by relevance
/xen/xen/common/ubsan/ |
A D | ubsan.c | 180 unsigned long rhs, char op) in handle_overflow() argument 208 unsigned long rhs) in __ubsan_handle_add_overflow() argument 211 handle_overflow(data, lhs, rhs, '+'); in __ubsan_handle_add_overflow() 217 unsigned long rhs) in __ubsan_handle_sub_overflow() argument 219 handle_overflow(data, lhs, rhs, '-'); in __ubsan_handle_sub_overflow() 225 unsigned long rhs) in __ubsan_handle_mul_overflow() argument 227 handle_overflow(data, lhs, rhs, '*'); in __ubsan_handle_mul_overflow() 254 unsigned long rhs) in __ubsan_handle_divrem_overflow() argument 434 unsigned long lhs, unsigned long rhs) in __ubsan_handle_shift_out_of_bounds() argument 450 if (val_is_negative(rhs_type, rhs)) in __ubsan_handle_shift_out_of_bounds() [all …]
|
/xen/tools/libxl/ |
A D | libxl_bootloader.c | 132 const char *rhs = buf + prefixlen; in bootloader_result_command() local 133 if (!CTYPE(isspace,*rhs)) in bootloader_result_command() 136 while (CTYPE(isspace,*rhs)) in bootloader_result_command() 137 rhs++; in bootloader_result_command() 139 LOGD(DEBUG, domid, "bootloader output contained %s %s", prefix, rhs); in bootloader_result_command() 141 return rhs; in bootloader_result_command() 184 const char *rhs; in parse_bootloader_result() local 185 #define COMMAND(s) ((rhs = bootloader_result_command(gc, buf, s, sizeof(s)-1, bl->domid))) in parse_bootloader_result() 188 bl->kernel->path = libxl__strdup(gc, rhs); in parse_bootloader_result() 192 bl->ramdisk->path = libxl__strdup(gc, rhs); in parse_bootloader_result() [all …]
|
/xen/tools/libxc/ |
A D | xc_cpuid_x86.c | 263 const xen_cpuid_leaf_t *rhs = r; in compare_leaves() local 265 if ( lhs->leaf != rhs->leaf ) in compare_leaves() 266 return lhs->leaf < rhs->leaf ? -1 : 1; in compare_leaves() 268 if ( lhs->subleaf != rhs->subleaf ) in compare_leaves() 269 return lhs->subleaf < rhs->subleaf ? -1 : 1; in compare_leaves()
|
/xen/xen/arch/x86/ |
A D | cpuid.c | 37 const struct feature *lhs, *rhs, *mid = NULL /* GCC... */; in parse_xen_cpuid() local 51 rhs = features + ARRAY_SIZE(features); in parse_xen_cpuid() 53 while ( lhs < rhs ) in parse_xen_cpuid() 57 mid = lhs + (rhs - lhs) / 2; in parse_xen_cpuid() 62 rhs = mid; in parse_xen_cpuid()
|
Completed in 11 milliseconds