/linux/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_symbol.c | 2 * Aic7xxx SCSI host adapter firmware assembler symbol table implementation 69 perror("Unable to create new symbol"); in symbol_create() 75 stop("Unable to strdup symbol name", EX_SOFTWARE); in symbol_create() 82 symbol_delete(symbol_t *symbol) in symbol_delete() argument 87 key.data = symbol->name; in symbol_delete() 88 key.size = strlen(symbol->name); in symbol_delete() 91 switch(symbol->type) { in symbol_delete() 95 if (symbol->info.rinfo != NULL) in symbol_delete() 96 free(symbol->info.rinfo); in symbol_delete() 99 if (symbol->info.ainfo != NULL) in symbol_delete() [all …]
|
H A D | aicasm_gram.y | 87 static void initialize_symbol(symbol_t *symbol); 97 static void test_readable_symbol(symbol_t *symbol); 98 static void test_writable_symbol(symbol_t *symbol); 101 static void add_conditional(symbol_t *symbol); 104 static int is_location_address(symbol_t *symbol); 450 symbol_t *symbol; variable 452 symbol = $1; 453 if (symbol->type != CONST) { 458 if (symbol->info.cinfo->value > 4) { 463 $$ = (0x1 << symbol->info.cinfo->value); [all …]
|
/linux/scripts/kconfig/ |
H A D | symbol.c | 17 struct symbol symbol_yes = { 25 struct symbol symbol_mod = { 33 struct symbol symbol_no = { 41 struct symbol *modules_sym; 45 enum symbol_type sym_get_type(const struct symbol *sym) in sym_get_type() 76 * @sym: a symbol pointer 80 struct menu *sym_get_prompt_menu(const struct symbol *sym) in sym_get_prompt_menu() 94 * @sym: a symbol pointer 98 struct menu *sym_get_choice_menu(const struct symbol *sym) in sym_get_choice_menu() 120 static struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop() [all …]
|
H A D | lkc_proto.h | 20 /* symbol.c */ 21 struct symbol * sym_lookup(const char *name, int flags); 22 struct symbol * sym_find(const char *name); 23 void print_symbol_for_listconfig(struct symbol *sym); 24 struct symbol ** sym_re_search(const char *pattern); 26 void sym_calc_value(struct symbol *sym); 28 enum symbol_type sym_get_type(const struct symbol *sym); 29 bool sym_tristate_within_range(const struct symbol *sym, tristate tri); 30 bool sym_set_tristate_value(struct symbol *sym,tristate tri); 31 void choice_set_value(struct menu *choice, struct symbol *sym); [all …]
|
H A D | expr.h | 33 struct symbol * const sym; 73 /* enum values are used as index to symbol.def[] */ 83 * Represents a configuration symbol. 85 * Choices are represented as a special kind of symbol with null name. 89 struct symbol { struct 93 /* The name of the symbol, e.g. "FOO" for 'config FOO' */ argument 100 * The calculated value of the symbol. The SYMBOL_VALID bit is set in argument 107 * Values for the symbol provided from outside. def[S_DEF_USER] holds 113 * An upper bound on the tristate value the user can set for the symbol 122 /* config entries associated with this symbol */ argument [all …]
|
H A D | lkc.h | 84 void menu_add_entry(struct symbol *sym, enum menu_type type); 90 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 103 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); 107 /* symbol.c */ 109 struct symbol *sym_choice_default(struct menu *choice); 110 struct symbol *sym_calc_choice(struct menu *choice); 111 struct property *sym_get_range_prop(struct symbol *sym); 112 const char *sym_get_string_default(struct symbol *sym); 113 struct symbol *sym_check_deps(struct symbol *sym); 114 struct symbol *prop_get_symbol(const struct property *prop); [all …]
|
/linux/scripts/ |
H A D | checkkconfigsymbols.py | 23 SYMBOL = r"(?:\w*[A-Z0-9]\w*){2,}" variable 24 DEF = r"^\s*(?:menu){,1}config\s+(" + SYMBOL + r")\s*" 25 EXPR = r"(?:" + OPERATORS + r"|\s|" + SYMBOL + r")+" 28 SOURCE_SYMBOL = r"(?:\W|\b)+[D]{,1}CONFIG_(" + SYMBOL + r")" 32 REGEX_SYMBOL = re.compile(r'(?!\B)' + SYMBOL + r'(?!\B)') 162 for symbol in sorted(undefined_b): 163 # symbol has not been undefined before 164 if symbol not in undefined_a: 165 files = sorted(undefined_b.get(symbol)) 166 undefined[symbol] = files [all …]
|
H A D | decode_stacktrace.sh | 127 # The structure of symbol at this point is: 148 symbol=${symbol#\(} 149 symbol=${symbol%\)} 153 if [[ $symbol == *:* ]] ; then 154 segment=${symbol%%:*}: 155 symbol=${symbol#*:} 158 # Strip the symbol name so that we could look it up 159 local name=${symbol%+*} 161 # Use 'nm vmlinux' to figure out the base address of said symbol. 177 # symbol. First, strip out the symbol total length. [all …]
|
/linux/arch/mips/include/asm/ |
H A D | sim.h | 20 #define save_static_function(symbol) \ argument 23 ".globl\t__" #symbol "\n\t" \ 25 ".type\t__" #symbol ", @function\n\t" \ 26 ".ent\t__" #symbol ", 0\n__" \ 27 #symbol":\n\t" \ 38 "j\t" #symbol "\n\t" \ 39 ".end\t__" #symbol "\n\t" \ 40 ".size\t__" #symbol",. - __" #symbol) 46 #define save_static_function(symbol) \ argument 49 ".globl\t__" #symbol "\n\t" \ [all …]
|
H A D | asm.h | 44 #define LEAF(symbol) \ 46 .globl symbol; \ 48 .type symbol, @function; \ 49 .ent symbol, 0; \ 50 symbol: .frame sp, 0, ra; \ 57 #define NESTED(symbol, framesize, rpc) \ 59 .globl symbol; \ 61 .type symbol, @function; \ 62 .ent symbol, 0; \ 63 symbol: .frame sp, framesize, rpc; \ [all …]
|
/linux/tools/perf/util/ |
H A D | symbol.h | 48 struct symbol { struct 50 /** Range of symbol [start, end). */ argument 55 /** ELF symbol type as defined for st_info. E.g STT_OBJECT or STT_FUNC. */ argument 63 /** Symbol for an inlined function. */ 67 /** Symbol is an alias of an STT_GNU_IFUNC */ 71 /** The name of length namelen associated with the symbol. */ argument 75 void symbol__delete(struct symbol *sym); argument 81 * @pos: the 'struct symbol *' to use as a loop cursor 86 nd && (pos = rb_entry(nd, struct symbol, rb_node)); \ 89 static inline size_t symbol__size(const struct symbol *sym) in symbol__size() [all …]
|
H A D | srcline.h | 10 struct symbol; 13 char *get_srcline(struct dso *dso, u64 addr, struct symbol *sym, 15 char *__get_srcline(struct dso *dso, u64 addr, struct symbol *sym, 34 struct symbol *symbol; member 47 struct symbol *sym); 59 int inline_list__append(struct symbol *symbol, char *srcline, struct inline_node *node); 61 struct symbol *new_inline_sym(struct dso *dso, 62 struct symbol *base_sym,
|
/linux/Documentation/livepatch/ |
H A D | module-elf-format.rst | 30 table, symbol table, and relocation section indices, ELF information is 47 symbols while taking into account its scope and what module the symbol 103 Every symbol referenced by a rela in a livepatch relocation section is a 104 livepatch symbol. These must be resolved before livepatch can call 175 Offset Info Type Symbol's Value Symbol's Name + Addend 185 Every symbol referenced by a relocation is a livepatch symbol. 194 resolves exported syms, and not every symbol referenced by the new patched 196 also in cases where we cannot immediately know the address of a symbol when 206 in their symbol tables, and the symbol table is made accessible through 209 4.1 A livepatch module's symbol table [all …]
|
/linux/tools/perf/scripts/python/ |
H A D | event_analyzing_sample.py | 51 symbol text, 58 symbol text, 80 # Symbol and dso info are not always resolved 86 if ("symbol" in param_dict): 87 symbol = param_dict["symbol"] 89 symbol = "Unknown_symbol" 92 event = create_event(name, comm, dso, symbol, raw_buf) 98 (event.name, event.symbol, event.comm, event.dso)) 103 (event.name, event.symbol, event.comm, event.dso, event.flags, 132 print("Statistics about the general events grouped by thread/symbol/dso: \n") [all …]
|
/linux/scripts/gendwarfksyms/ |
H A D | symbols.c | 10 /* struct symbol_addr -> struct symbol */ 12 /* name -> struct symbol */ 20 static unsigned int __for_each_addr(struct symbol *sym, symbol_callback_t func, in __for_each_addr() 24 struct symbol *match = NULL; in __for_each_addr() 46 * the symbol. A __gendwarfksyms_ptr pointer must have the same type as the 47 * exported symbol, e.g.: 60 struct symbol *match; in for_each() 85 static void set_crc(struct symbol *sym, void *data) in set_crc() 90 warn("overriding version for symbol %s (crc %lx vs. %lx)", in set_crc() 97 void symbol_set_crc(struct symbol *sym, unsigned long crc) in symbol_set_crc() [all …]
|
/linux/scripts/kconfig/tests/err_recursive_dep/ |
H A D | expected_stderr | 2 symbol A depends on A 7 symbol B is selected by B 12 symbol C1 depends on C2 13 symbol C2 depends on C1 18 symbol D1 depends on D2 19 symbol D2 is selected by D1 24 symbol E1 depends on E2 25 symbol E2 is implied by E1 30 symbol F1 default value contains F2 31 symbol F2 depends on F1 [all …]
|
/linux/Documentation/kbuild/ |
H A D | gendwarfksyms.rst | 8 When CONFIG_MODVERSIONS is enabled, symbol versions for modules 13 selected, **gendwarfksyms** is used instead to calculate symbol versions 21 list of symbol names (one per line) in standard input:: 23 Usage: gendwarfksyms [options] elf-object-file ... < symbol-list 30 --dump-versions Dump expanded type strings used for symbol versions 41 external symbols. For example, this is done when calculating symbol 54 When a symbol pointer is found in DWARF, gendwarfksyms can use its 55 type for calculating symbol versions even if the symbol is defined 56 elsewhere. The name of the symbol pointer is expected to start with 57 `__gendwarfksyms_ptr_`, followed by the name of the exported symbol. [all …]
|
H A D | kconfig-language.rst | 74 symbol, meaning its value cannot be directly changed by the user (such as 86 The default value is only assigned to the config symbol if no other 137 - reverse dependencies: "select" <symbol> ["if" <expr>] 139 While normal dependencies reduce the upper limit of a symbol (see 141 another symbol. The value of the current menu symbol is used as the 142 minimal value <symbol> can be set to. If <symbol> is selected multiple 149 a symbol to a value without visiting the dependencies. 150 By abusing select you are able to select a symbol FOO even 157 If "select" <symbol> is followed by "if" <expr>, <symbol> will be 158 selected by the logical AND of the value of the current menu symbol [all …]
|
/linux/drivers/media/rc/img-ir/ |
H A D | img-ir-hw.h | 28 * @hdrtog: Detect header toggle symbol after leader symbol 34 * @decodend2: Secondary decoder enable (no leader symbol) 65 * struct img_ir_symbol_timing - timing data for a symbol 66 * @pulse: Timing range for the length of the pulse in this symbol 67 * @space: Timing range for the length of the space in this symbol 75 * struct img_ir_free_timing - timing data for free time symbol 89 * @ldr: Leader symbol timing data 90 * @s00: Zero symbol timing data for primary decoder 91 * @s01: One symbol timing data for primary decoder 92 * @s10: Zero symbol timing data for secondary (no leader symbol) decoder [all …]
|
/linux/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | EventClass.py | 26 def create_event(name, comm, dso, symbol, raw_buf): argument 28 event = PebsEvent(name, comm, dso, symbol, raw_buf) 30 event = PebsNHM(name, comm, dso, symbol, raw_buf) 32 event = PerfEvent(name, comm, dso, symbol, raw_buf) 38 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC): argument 42 self.symbol = symbol 48 print("PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % 49 (self.name, self.symbol, self.comm, self.dso)) 58 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS): argument 72 PerfEvent.__init__(self, name, comm, dso, symbol, raw_buf, ev_type) [all …]
|
/linux/Documentation/admin-guide/media/ |
H A D | ipu3_rcb.svg | 5 <symbol overflow="visible" id="glyph0-0"> 7 </symbol> 8 <symbol overflow="visible" id="glyph0-1"> 10 </symbol> 11 <symbol overflow="visible" id="glyph0-2"> 13 </symbol> 14 <symbol overflow="visible" id="glyph0-3"> 16 </symbol> 17 <symbol overflow="visible" id="glyph0-4"> 19 </symbol> [all …]
|
/linux/include/uapi/linux/ |
H A D | a.out.h | 188 /* The following type indicates the definition of a symbol as being 189 an indirect reference to another symbol. The other symbol 190 appears as an undefined reference, immediately following this symbol. 192 Indirection is asymmetrical. The other symbol's value will be used 193 to satisfy requests for the indirect symbol, but not vice versa. 194 If the other symbol does not have a definition, libraries will 204 The address of the set is made into an N_SETV symbol 206 This symbol acts like a N_DATA global symbol 210 #define N_SETA 0x14 /* Absolute set element symbol */ 211 #define N_SETT 0x16 /* Text set element symbol */ [all …]
|
/linux/include/kunit/ |
H A D | visibility.h | 17 * there is no change to the symbol definition. 21 * EXPORT_SYMBOL_IF_KUNIT(symbol) - Exports symbol into 25 * @symbol: the symbol identifier to export 27 #define EXPORT_SYMBOL_IF_KUNIT(symbol) EXPORT_SYMBOL_NS(symbol, "EXPORTED_FOR_KUNIT_TESTING") argument 30 #define EXPORT_SYMBOL_IF_KUNIT(symbol) argument
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-bus-iio-dac | 10 - change out_currentY_rawN, where N is the integer value of the symbol; 19 code in INPUT_N (_rawN), where N is the integer value of the symbol. 26 Performs a SW switch to a predefined output symbol. This attribute 28 multiple predefined symbols. Each symbol corresponds to a different 30 of the symbol. Writing an integer value N will select out_currentY_rawN. 41 - change out_voltageY_rawN, where N is the integer value of the symbol; 50 code in INPUT_N (_rawN), where N is the integer value of the symbol. 57 Performs a SW switch to a predefined output symbol. This attribute 59 multiple predefined symbols. Each symbol corresponds to a different 61 of the symbol. Writing an integer value N will select out_voltageY_rawN.
|
/linux/tools/perf/ |
H A D | builtin-kallsyms.c | 5 * Builtin command: Look for a symbol in the running kernel and its modules 18 #include "symbol.h" 42 struct symbol *symbol = machine__find_kernel_symbol_by_name(machine, argv[i], &map); in __cmd_kallsyms() local 44 if (symbol == NULL) { in __cmd_kallsyms() 51 symbol->name, dso__short_name(dso), dso__long_name(dso), in __cmd_kallsyms() 52 map__unmap_ip(map, symbol->start), map__unmap_ip(map, symbol->end), in __cmd_kallsyms() 53 symbol->start, symbol->end); in __cmd_kallsyms()
|