/u-boot/scripts/kconfig/ |
A D | lkc_proto.h | 30 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; 32 struct symbol * sym_lookup(const char *name, int flags); 33 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 | 72 void set_all_choice_values(struct symbol *csym); 88 void menu_add_entry(struct symbol *sym); 123 struct symbol *sym_choice_default(struct symbol *sym); 125 struct symbol *sym_check_deps(struct symbol *sym); 127 struct symbol *prop_get_symbol(struct property *prop); 135 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() 137 return (struct symbol *)sym->curr.val; in sym_get_choice_value() 140 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value() 145 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice() 155 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional() [all …]
|
A D | symbol.c | 242 struct symbol *sym_choice_default(struct symbol *sym) in sym_choice_default() 268 static struct symbol *sym_calc_choice(struct symbol *sym) in sym_calc_choice() 807 struct symbol *symbol; in sym_lookup() local 821 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup() 834 symbol = xmalloc(sizeof(*symbol)); in sym_lookup() 835 memset(symbol, 0, sizeof(*symbol)); in sym_lookup() 843 return symbol; in sym_lookup() 848 struct symbol *symbol = NULL; in sym_find() local 863 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_find() 870 return symbol; in sym_find() [all …]
|
A D | expr.h | 39 struct symbol *sym; 83 struct symbol { struct 85 struct symbol *next; argument 234 struct symbol *sym; 290 extern struct symbol symbol_yes, symbol_no, symbol_mod; 291 extern struct symbol *modules_sym; 292 extern struct symbol *sym_defconfig_list; 294 struct expr *expr_alloc_symbol(struct symbol *sym); 297 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2); 307 int expr_contains_symbol(struct expr *dep, struct symbol *sym); [all …]
|
A D | zconf.y | 40 struct symbol *symbol; member 93 %type <symbol> symbol 235 config_option: T_RANGE symbol symbol if_expr T_EOL 497 | symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); } 498 | symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); } 499 | symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); } 500 | symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); } 501 | symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); } 502 | symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); } 532 struct symbol *sym; [all …]
|
A D | menu.c | 47 void menu_add_entry(struct symbol *sym) in menu_add_entry() 113 struct symbol *sym = current_entry->sym; in menu_set_type() 223 static int menu_validate_number(struct symbol *sym, struct symbol *sym2) in menu_validate_number() 229 static void sym_check_prop(struct symbol *sym) in sym_check_prop() 232 struct symbol *sym2; in sym_check_prop() 296 struct symbol *sym; in menu_finalize() 402 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 406 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 630 struct symbol *sym; in menu_is_visible() 845 struct symbol *sym; in get_relations_str() [all …]
|
A D | confdata.c | 289 struct symbol *sym; in conf_read_simple() 443 struct symbol *sym; in conf_read() 705 struct symbol *sym; in conf_write_defconfig() 744 struct symbol *cs; in conf_write_defconfig() 745 struct symbol *ds; in conf_write_defconfig() 779 struct symbol *sym; in conf_write() 912 struct symbol *sym; in conf_split_config() 1016 struct symbol *sym; in conf_write_autoconf() 1126 struct symbol *sym; in randomize_choice_values() 1174 struct symbol *sym; in set_all_choice_values() [all …]
|
A D | conf.c | 83 static int conf_askvalue(struct symbol *sym, const char *def) in conf_askvalue() 131 struct symbol *sym = menu->sym; in conf_string() 164 struct symbol *sym = menu->sym; in conf_sym() 231 struct symbol *sym, *def_sym; in conf_choice() 346 struct symbol *sym; in conf() 413 struct symbol *sym; in check_conf()
|
A D | qconf.h | 260 QString debug_info(struct symbol *sym); 262 static void expr_print_help(void *data, struct symbol *sym, const char *str); 266 struct symbol *sym; 288 struct symbol **result;
|
A D | mconf.c | 392 struct symbol **sym_arr; in search_conf() 467 struct symbol *sym; in build_conf() 529 struct symbol *def_sym = sym_get_choice_value(sym); in build_conf() 648 struct symbol *sym; in conf() 799 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() 426 struct symbol *sym1, *sym2; in expr_join_or() 490 struct symbol *sym1, *sym2; in expr_join_and() 843 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() 871 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() 914 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) in expr_trans_compare() 1141 void (*fn)(void *, struct symbol *, const char *), in expr_print() argument 1232 static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) in expr_print_file_helper() 1242 static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *str) in expr_print_gstr_helper() [all …]
|
/u-boot/arch/mips/include/asm/ |
A D | asm.h | 20 .globl symbol; \ 22 .ent symbol, 0; \ 30 .globl symbol; \ 33 .ent symbol, 0; \ 43 .globl symbol; \ 46 .ent symbol, 0; \ 64 .globl symbol; \ 65 symbol: 71 .globl symbol; \ 73 symbol: .insn [all …]
|
/u-boot/fs/jffs2/ |
A D | mini_inflate.c | 144 int symbol, length, dist, i; in decompress_huffman() local 148 if (symbol < 256) { in decompress_huffman() 151 } else if (symbol > 256) { in decompress_huffman() 154 if (symbol < 265) length = symbol - 254; in decompress_huffman() 160 ((symbol - 261) >> 2); in decompress_huffman() 166 if (symbol < 4) dist = symbol + 1; in decompress_huffman() 170 dist += (symbol % 2) << ((symbol - 2) >> 1); in decompress_huffman() 254 if (symbol == 0) { in decompress_dynamic() 259 lengths->count[symbol]++; in decompress_dynamic() 289 if (symbol == 0) { in decompress_dynamic() [all …]
|
/u-boot/scripts/kconfig/tests/err_recursive_dep/ |
A D | expected_stderr | 2 Kconfig:11: symbol B is selected by B 7 Kconfig:5: symbol A depends on A 12 Kconfig:17: symbol C1 depends on C2 13 Kconfig:21: symbol C2 depends on C1 18 Kconfig:32: symbol D2 is selected by D1 19 Kconfig:27: symbol D1 depends on D2 24 Kconfig:37: symbol E1 depends on E2 25 Kconfig:42: symbol E2 is implied by E1 30 Kconfig:60: symbol G depends on G 35 Kconfig:51: symbol F2 depends on F1 [all …]
|
/u-boot/lib/zstd/ |
A D | fse.h | 273 static void FSE_encodeSymbol(BIT_CStream_t *bitC, FSE_CState_t *CStatePtr, unsigned symbol); 411 ZSTD_STATIC void FSE_initCState2(FSE_CState_t *statePtr, const FSE_CTable *ct, U32 symbol) in FSE_initCState2() argument 415 …ressionTransform symbolTT = ((const FSE_symbolCompressionTransform *)(statePtr->symbolTT))[symbol]; in FSE_initCState2() 423 ZSTD_STATIC void FSE_encodeSymbol(BIT_CStream_t *bitC, FSE_CState_t *statePtr, U32 symbol) in FSE_encodeSymbol() argument 425 …ressionTransform symbolTT = ((const FSE_symbolCompressionTransform *)(statePtr->symbolTT))[symbol]; in FSE_encodeSymbol() 447 unsigned char symbol; member 463 return DInfo.symbol; in FSE_peekSymbol() 478 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbol() local 482 return symbol; in FSE_decodeSymbol() 491 BYTE const symbol = DInfo.symbol; in FSE_decodeSymbolFast() local [all …]
|
A D | fse_decompress.c | 93 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_wksp() 113 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_wksp() 127 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable_wksp() local 128 U16 nextState = symbolNext[symbol]++; in FSE_buildDTable_wksp() 151 cell->symbol = symbolValue; in FSE_buildDTable_rle() 177 dinfo[s].symbol = (BYTE)s; in FSE_buildDTable_raw()
|
A D | huf_decompress.c | 358 BYTE symbol; member 387 const U32 symbol = sortedSymbols[s].symbol; in HUF_fillDTableX4Level2() local 395 ZSTD_writeLE16(&(DElt.sequence), (U16)(baseSeq + (symbol << 8))); in HUF_fillDTableX4Level2() 422 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4() local 435 sortedListSize - sortedRank, nbBitsBaseline, symbol); in HUF_fillDTableX4() 438 ZSTD_writeLE16(&(DElt.sequence), symbol); in HUF_fillDTableX4() 525 sortedSymbol[r].symbol = (BYTE)s; in HUF_readDTableX4_wksp()
|
/u-boot/include/linux/ |
A D | compiler_attributes.h | 49 #define __alias(symbol) __attribute__((__alias__(#symbol))) argument 113 # define __copy(symbol) __attribute__((__copy__(symbol))) argument 115 # define __copy(symbol) argument
|
/u-boot/scripts/kconfig/tests/new_choice_with_dep/ |
A D | Kconfig | 4 This is a new symbol. 18 This is a new symbol, so should be asked. 35 This is a new symbol, so should be asked.
|
/u-boot/doc/ |
A D | README.arm-relocation | 10 (program-base-relative) and 2 (symbol-relative) 140 c) discard symbol-file 142 (gdb) symbol-file 143 Discard symbol table from `/home/hs/celf/u-boot/u-boot'? (y or n) y 144 No symbol file now. 149 d) load new symbol table: 151 (gdb) add-symbol-file u-boot 0x8ff08000 152 add symbol table from file "u-boot" at 164 add-symbol-file u-boot 0x8ff08000 190 (gdb) symbol-file [all …]
|
/u-boot/lib/lzma/ |
A D | LzmaDec.c | 168 unsigned symbol; in LzmaDec_DecodeReal() local 178 symbol = 1; in LzmaDec_DecodeReal() 182 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); in LzmaDec_DecodeReal() 189 symbol = 1; in LzmaDec_DecodeReal() 199 probLit = prob + offs + bit + symbol; in LzmaDec_DecodeReal() 202 while (symbol < 0x100); in LzmaDec_DecodeReal() 204 dic[dicPos++] = (Byte)symbol; in LzmaDec_DecodeReal() 543 unsigned symbol = 1; in LzmaDec_TryDummy() local 544 do { GET_BIT_CHECK(prob + symbol, symbol) } while (symbol < 0x100); in LzmaDec_TryDummy() 551 unsigned symbol = 1; in LzmaDec_TryDummy() local [all …]
|
/u-boot/test/overlay/ |
A D | test-fdt-overlay-stacked.dts | 12 /* Test that we can reference an overlay symbol */
|
/u-boot/doc/develop/ |
A D | global_data.rst | 7 structure is available as symbol gd. The symbol is made available by the macro
|
/u-boot/doc/board/emulation/ |
A D | qemu-mips.rst | 226 And replace the symbol table to this offset. 230 (gdb) symbol-file 231 Discard symbol table from `/private/u-boot-arm/u-boot'? (y or n) y 233 No symbol table is loaded. Use the "file" command. 234 No symbol file now. 235 (gdb) add-symbol-file u-boot 0x87fa0000 236 add symbol table from file "u-boot" at
|
/u-boot/doc/usage/ |
A D | fdt_overlays.rst | 18 In a nutshell overlays provides a means to manipulate a symbol a previous 21 switch of the device-tree compiler so that symbol information is included.
|