Searched refs:sym1 (Results 1 – 9 of 9) sorted by relevance
/openbmc/linux/scripts/mod/ |
H A D | symsearch.c | 32 const struct syminfo *sym1 = s1; in syminfo_compare() local 35 if (sym1->section_index > sym2->section_index) in syminfo_compare() 37 if (sym1->section_index < sym2->section_index) in syminfo_compare() 39 if (sym1->addr > sym2->addr) in syminfo_compare() 41 if (sym1->addr < sym2->addr) in syminfo_compare() 43 if (sym1->symbol_index > sym2->symbol_index) in syminfo_compare() 45 if (sym1->symbol_index < sym2->symbol_index) in syminfo_compare()
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | expr.c | 426 struct symbol *sym1, *sym2; in expr_join_or() local 438 sym1 = tmp->left.sym; in expr_join_or() 440 sym1 = e1->left.sym; in expr_join_or() 447 if (sym1 != sym2) in expr_join_or() 449 if (sym1->type != S_BOOLEAN && sym1->type != S_TRISTATE) in expr_join_or() 451 if (sym1->type == S_TRISTATE) { in expr_join_or() 456 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_no); in expr_join_or() 462 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_mod); in expr_join_or() 468 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_yes); in expr_join_or() 471 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or() [all …]
|
H A D | symbol.c | 1014 static int sym_rel_comp(const void *sym1, const void *sym2) in sym_rel_comp() argument 1016 const struct sym_match *s1 = sym1; in sym_rel_comp()
|
/openbmc/linux/scripts/kconfig/ |
H A D | expr.c | 405 struct symbol *sym1, *sym2; in expr_join_or() local 417 sym1 = tmp->left.sym; in expr_join_or() 419 sym1 = e1->left.sym; in expr_join_or() 426 if (sym1 != sym2) in expr_join_or() 428 if (sym1->type != S_BOOLEAN && sym1->type != S_TRISTATE) in expr_join_or() 430 if (sym1->type == S_TRISTATE) { in expr_join_or() 435 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_no); in expr_join_or() 441 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_mod); in expr_join_or() 447 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_yes); in expr_join_or() 450 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or() [all …]
|
H A D | symbol.c | 883 static int sym_rel_comp(const void *sym1, const void *sym2) in sym_rel_comp() argument 885 const struct sym_match *s1 = sym1; in sym_rel_comp()
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | apic.h | 350 #define apic_drivers(sym1, sym2) \ argument 351 static struct apic *__apicdrivers_##sym1##sym2[2] __used \ 353 __section(".apicdrivers") = { &sym1, &sym2 }
|
/openbmc/qemu/bsd-user/ |
H A D | elfload.c | 390 struct elf_sym *sym1 = (struct elf_sym *)s1; in symcmp() local 391 return (sym0->st_value < sym1->st_value) ? -1 : in symcmp() 392 ((sym0->st_value > sym1->st_value) ? 1 : 0); in symcmp()
|
/openbmc/qemu/include/hw/ |
H A D | elf_ops.h.inc | 101 struct elf_sym *sym1 = (struct elf_sym *)s1; 102 return (sym0->st_value < sym1->st_value) 104 : ((sym0->st_value > sym1->st_value) ? 1 : 0);
|
/openbmc/qemu/linux-user/ |
H A D | elfload.c | 3629 struct elf_sym *sym1 = (struct elf_sym *)s1; in symcmp() local 3630 return (sym0->st_value < sym1->st_value) in symcmp() 3632 : ((sym0->st_value > sym1->st_value) ? 1 : 0); in symcmp()
|