/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | lkc_proto.h | 29 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; 31 struct symbol * sym_lookup(const char *name, int flags); 32 struct symbol * sym_find(const char *name); 35 struct symbol ** sym_re_search(const char *pattern); 37 void sym_calc_value(struct symbol *sym); 38 enum symbol_type sym_get_type(struct symbol *sym); 40 bool sym_set_tristate_value(struct symbol *sym,tristate tri); 41 tristate sym_toggle_tristate_value(struct symbol *sym); 45 bool sym_is_changable(struct symbol *sym); 46 struct property * sym_get_choice_prop(struct symbol *sym); [all …]
|
A D | lkc.h | 86 void set_all_choice_values(struct symbol *csym); 102 void menu_add_entry(struct symbol *sym); 139 struct symbol *sym_choice_default(struct symbol *sym); 141 struct symbol *sym_check_deps(struct symbol *sym); 143 struct symbol *prop_get_symbol(struct property *prop); 144 struct property *sym_get_env_prop(struct symbol *sym); 152 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() 154 return (struct symbol *)sym->curr.val; in sym_get_choice_value() 157 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value() 162 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice() [all …]
|
A D | symbol.c | 47 struct symbol *sym; in sym_init() 255 struct symbol *sym_choice_default(struct symbol *sym) in sym_choice_default() 281 static struct symbol *sym_calc_choice(struct symbol *sym) in sym_calc_choice() 799 struct symbol *symbol; in sym_lookup() local 813 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup() 826 symbol = xmalloc(sizeof(*symbol)); in sym_lookup() 827 memset(symbol, 0, sizeof(*symbol)); in sym_lookup() 835 return symbol; in sym_lookup() 840 struct symbol *symbol = NULL; in sym_find() local 855 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_find() [all …]
|
A D | expr.h | 39 struct symbol *sym; 77 struct symbol { struct 78 struct symbol *next; argument 171 struct symbol *sym; 198 extern struct symbol symbol_yes, symbol_no, symbol_mod; 199 extern struct symbol *modules_sym; 200 extern struct symbol *sym_defconfig_list; 202 struct expr *expr_alloc_symbol(struct symbol *sym); 205 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2); 215 int expr_contains_symbol(struct expr *dep, struct symbol *sym); [all …]
|
A D | zconf.y | 40 struct symbol *symbol; member 87 %type <symbol> symbol 219 config_option: T_RANGE symbol symbol if_expr T_EOL 475 | symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); } 476 | symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); } 477 | symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); } 478 | symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); } 479 | symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); } 480 | symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); } 498 struct symbol *sym; [all …]
|
A D | confdata.c | 86 struct symbol *sym; in conf_expand_value() 257 struct symbol *sym; in conf_read_simple() 412 struct symbol *sym; in conf_read() 667 struct symbol *sym; in conf_write_defconfig() 706 struct symbol *cs; in conf_write_defconfig() 707 struct symbol *ds; in conf_write_defconfig() 741 struct symbol *sym; in conf_write() 843 struct symbol *sym; in conf_split_config() 952 struct symbol *sym; in conf_write_autoconf() 1054 struct symbol *sym; in randomize_choice_values() [all …]
|
A D | menu.c | 47 void menu_add_entry(struct symbol *sym) in menu_add_entry() 114 struct symbol *sym = current_entry->sym; in menu_set_type() 226 static int menu_validate_number(struct symbol *sym, struct symbol *sym2) in menu_validate_number() 232 static void sym_check_prop(struct symbol *sym) in sym_check_prop() 235 struct symbol *sym2; in sym_check_prop() 285 struct symbol *sym; in menu_finalize() 333 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 472 struct symbol *sym; in menu_is_visible() 606 static struct property *get_symbol_prop(struct symbol *sym) in get_symbol_prop() 672 struct symbol *sym; in get_relations_str() [all …]
|
A D | zconf.tab.c_shipped | 193 struct symbol *symbol; 793 symbol of state STATE-NUM. */ 935 | Print this symbol on YYOUTPUT. | 970 | Print this symbol on YYOUTPUT. | 1407 /* The lookahead symbol. */ 2037 { (yyval.expr) = expr_alloc_comp(E_LTH, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); } 2042 { (yyval.expr) = expr_alloc_comp(E_LEQ, (yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol)); } 2335 struct symbol *sym; 2447 struct symbol *sym = menu->sym; 2530 struct symbol *sym; [all …]
|
A D | conf.c | 84 static int conf_askvalue(struct symbol *sym, const char *def) in conf_askvalue() 135 struct symbol *sym = menu->sym; in conf_string() 168 struct symbol *sym = menu->sym; in conf_sym() 237 struct symbol *sym, *def_sym; in conf_choice() 356 struct symbol *sym; in conf() 422 struct symbol *sym; in check_conf()
|
A D | qconf.h | 271 QString debug_info(struct symbol *sym); 273 static void expr_print_help(void *data, struct symbol *sym, const char *str); 277 struct symbol *sym; 299 struct symbol **result;
|
A D | mconf.c | 393 struct symbol **sym_arr; in search_conf() 468 struct symbol *sym; in build_conf() 531 struct symbol *def_sym = sym_get_choice_value(sym); in build_conf() 650 struct symbol *sym; in conf() 804 struct symbol *active; in conf_choice()
|
A D | expr.c | 17 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol() 42 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() 364 struct symbol *sym1, *sym2; in expr_join_or() 428 struct symbol *sym1, *sym2; in expr_join_and() 751 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() 779 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() 808 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) in expr_trans_compare() 1073 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int … in expr_print() argument 1163 static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) in expr_print_file_helper() 1173 static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *str) in expr_print_gstr_helper()
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | kconfig-language.txt | 101 another symbol. The value of the current menu symbol is used as the 102 minimal value <symbol> can be set to. If <symbol> is selected multiple 123 - numerical ranges: "range" <symbol> <symbol> ["if" <expr>] 127 symbol. 148 This declares the symbol to be used as the MODULES symbol, which 158 another symbol). 173 <symbol> '=' <symbol> (2) 174 <symbol> '!=' <symbol> (3) 266 "config" <symbol> 269 This defines a config symbol <symbol> and accepts any of above [all …]
|
A D | kconfig.txt | 61 (corresponding to the *config command that was used) for symbol values 154 The Search function searches for kernel configuration symbol 172 is when the search matches the complete symbol name); 211 The Search function searches for kernel configuration symbol 220 lists all config symbol entries that contain "hotplug" in 221 the symbol name. In this Search dialog, you may change the
|
A D | printk-formats.txt | 26 In the case that an appropriate symbol name can't be found, %p[sS] will
|
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xenctx.c | 98 struct symbol { struct 154 static void free_symbol(struct symbol *symbol) 156 if (symbol == NULL) 158 if (symbol->name) 160 free(symbol); 164 static void insert_symbol(struct symbol *symbol) in insert_symbol() argument 187 s->next = symbol; in insert_symbol() 188 prev = symbol; in insert_symbol() 206 struct symbol *s; in print_symbol() 226 struct symbol *symbol; in read_symbol_table() local [all …]
|
/xen-4.10.0-shim-comet/xen/common/xz/ |
A D | dec_lzma2.c | 522 uint32_t symbol = 1; in rc_bittree() local 526 symbol = (symbol << 1) + 1; in rc_bittree() 528 symbol <<= 1; in rc_bittree() 531 return symbol; in rc_bittree() 539 uint32_t symbol = 1; in rc_bittree_reverse() local 544 symbol = (symbol << 1) + 1; in rc_bittree_reverse() 547 symbol <<= 1; in rc_bittree_reverse() 584 uint32_t symbol; in lzma_literal() local 595 symbol = 1; in lzma_literal() 605 symbol = (symbol << 1) + 1; in lzma_literal() [all …]
|
/xen-4.10.0-shim-comet/xen/include/acpi/platform/ |
A D | aclinux.h | 66 #define ACPI_EXPORT_SYMBOL(symbol) EXPORT_SYMBOL(symbol); argument
|
/xen-4.10.0-shim-comet/xen/tools/ |
A D | symbols.c | 87 static enum { symbol, single_source, multi_source } last; in read_symbol() enumerator 138 last = symbol; in read_symbol() 410 static void learn_symbol(unsigned char *symbol, int len) in learn_symbol() argument 415 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++; in learn_symbol() 419 static void forget_symbol(unsigned char *symbol, int len) in forget_symbol() argument 424 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--; in forget_symbol()
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | unlzma.c | 169 static int INIT rc_get_bit(struct rc *rc, uint16_t *p, int *symbol) in rc_get_bit() argument 173 *symbol *= 2; in rc_get_bit() 177 *symbol = *symbol * 2 + 1; in rc_get_bit() 196 rc_bit_tree_decode(struct rc *rc, uint16_t *p, int num_levels, int *symbol) in rc_bit_tree_decode() argument 200 *symbol = 1; in rc_bit_tree_decode() 202 rc_get_bit(rc, p + *symbol, symbol); in rc_bit_tree_decode() 203 *symbol -= 1 << num_levels; in rc_bit_tree_decode()
|
A D | Kconfig | 243 bool "Fast symbol lookup (bigger binary)" 247 When searching for symbol addresses we can use the built-in system 249 However using it for the inverse (find address using the symbol name) 256 bool "Suppress duplicate symbol warnings" if !LIVEPATCH
|
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/ |
A D | Makefile | 46 symbol \ 61 INTF = symbol.cmi trie.cmi syslog.cmi systemd.cmi select.cmi
|
A D | symbol.mli | 27 (** Convert a string into a symbol. *) 30 (** Convert a symbol into a string. *)
|
/xen-4.10.0-shim-comet/xen/arch/x86/boot/ |
A D | build32.lds | 38 * _GLOBAL_OFFSET_TABLE_ symbol and .PLT0. .PLT0 is filled by dynamic 44 * we remove .got.plt section here because it cannot find required symbol.
|
/xen-4.10.0-shim-comet/xen/common/libelf/ |
A D | libelf-loader.c | 554 uint64_t elf_lookup_addr(struct elf_binary * elf, const char *symbol) in elf_lookup_addr() argument 559 sym = elf_sym_by_name(elf, symbol); in elf_lookup_addr() 562 elf_err(elf, "%s: not found: %s\n", __func__, symbol); in elf_lookup_addr() 568 symbol, value); in elf_lookup_addr()
|