Searched refs:debug_el (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/lib/ |
H A D | test_list_sort.c | 21 struct debug_el { struct 29 static void check(struct kunit *test, struct debug_el *ela, struct debug_el *elb) in check() argument 31 struct debug_el **elts = test->priv; in check() 49 struct debug_el *ela, *elb; in cmp() 51 ela = container_of(a, struct debug_el, list); in cmp() 52 elb = container_of(b, struct debug_el, list); in cmp() 61 struct debug_el *el, **elts; in list_sort_test() 85 struct debug_el *el1; in list_sort_test() 94 el = container_of(cur, struct debug_el, list); in list_sort_test() 95 el1 = container_of(cur->next, struct debug_el, list); in list_sort_test()
|
/openbmc/u-boot/lib/ |
H A D | list_sort.c | 163 struct debug_el { struct 172 static struct debug_el **elts __initdata; argument 174 static int __init check(struct debug_el *ela, struct debug_el *elb) in check() 205 struct debug_el *ela, *elb; in cmp() 207 ela = container_of(a, struct debug_el, list); in cmp() 208 elb = container_of(b, struct debug_el, list); in cmp() 217 struct debug_el *el; in list_sort_test() 249 struct debug_el *el1; in list_sort_test() 265 el = container_of(cur, struct debug_el, list); in list_sort_test() 266 el1 = container_of(cur->next, struct debug_el, list); in list_sort_test() [all …]
|
/openbmc/qemu/target/arm/ |
H A D | debug_helper.c | 51 int debug_el = arm_debug_target_el(env); in raise_exception_debug() local 59 assert(debug_el >= cur_el); in raise_exception_debug() 60 syndrome |= (debug_el == cur_el) << ARM_EL_EC_SHIFT; in raise_exception_debug() 61 raise_exception(env, excp, syndrome, debug_el); in raise_exception_debug() 68 int debug_el; in aa64_generate_debug_exceptions() local 84 debug_el = arm_debug_target_el(env); in aa64_generate_debug_exceptions() 86 if (cur_el == debug_el) { in aa64_generate_debug_exceptions() 92 return debug_el > cur_el; in aa64_generate_debug_exceptions() 517 int debug_el = arm_debug_target_el(env); in HELPER() local 536 if (debug_el < cur_el) { in HELPER() [all …]
|