Lines Matching refs:jeb
38 const struct jump_entry *jeb = b; in jump_label_cmp() local
43 if (jump_entry_key(jea) < jump_entry_key(jeb)) in jump_label_cmp()
46 if (jump_entry_key(jea) > jump_entry_key(jeb)) in jump_label_cmp()
54 if (jump_entry_code(jea) < jump_entry_code(jeb)) in jump_label_cmp()
57 if (jump_entry_code(jea) > jump_entry_code(jeb)) in jump_label_cmp()
67 struct jump_entry *jeb = b; in jump_label_swap() local
70 jea->code = jeb->code - delta; in jump_label_swap()
71 jea->target = jeb->target - delta; in jump_label_swap()
72 jea->key = jeb->key - delta; in jump_label_swap()
74 jeb->code = tmp.code + delta; in jump_label_swap()
75 jeb->target = tmp.target + delta; in jump_label_swap()
76 jeb->key = tmp.key + delta; in jump_label_swap()