/linux/Documentation/userspace-api/media/ |
H A D | frontend.h.rst.exceptions | 43 ignore symbol FE_IS_STUPID 44 ignore symbol FE_CAN_INVERSION_AUTO 45 ignore symbol FE_CAN_FEC_1_2 46 ignore symbol FE_CAN_FEC_2_3 47 ignore symbol FE_CAN_FEC_3_4 48 ignore symbol FE_CAN_FEC_4_5 49 ignore symbol FE_CAN_FEC_5_6 50 ignore symbol FE_CAN_FEC_6_7 51 ignore symbol FE_CAN_FEC_7_8 52 ignore symbol FE_CAN_FEC_8_9 [all …]
|
H A D | videodev2.h.rst.exceptions | 15 ignore symbol V4L2_BUF_TYPE_PRIVATE 16 ignore symbol V4L2_TUNER_DIGITAL_TV 17 ignore symbol V4L2_COLORSPACE_BT878 20 replace symbol V4L2_FIELD_ALTERNATE :c:type:`v4l2_field` 21 replace symbol V4L2_FIELD_ANY :c:type:`v4l2_field` 22 replace symbol V4L2_FIELD_BOTTOM :c:type:`v4l2_field` 23 replace symbol V4L2_FIELD_INTERLACED :c:type:`v4l2_field` 24 replace symbol V4L2_FIELD_INTERLACED_BT :c:type:`v4l2_field` 25 replace symbol V4L2_FIELD_INTERLACED_TB :c:type:`v4l2_field` 26 replace symbol V4L2_FIELD_NONE :c:type:`v4l2_field` [all …]
|
H A D | lirc.h.rst.exceptions | 43 ignore symbol RC_PROTO_UNKNOWN 44 ignore symbol RC_PROTO_OTHER 45 ignore symbol RC_PROTO_RC5 46 ignore symbol RC_PROTO_RC5X_20 47 ignore symbol RC_PROTO_RC5_SZ 48 ignore symbol RC_PROTO_JVC 49 ignore symbol RC_PROTO_SONY12 50 ignore symbol RC_PROTO_SONY15 51 ignore symbol RC_PROTO_SONY20 52 ignore symbol RC_PROTO_NEC [all …]
|
H A D | dmx.h.rst.exceptions | 11 replace symbol DMX_PES_AUDIO0 :c:type:`dmx_pes_type` 12 replace symbol DMX_PES_VIDEO0 :c:type:`dmx_pes_type` 13 replace symbol DMX_PES_TELETEXT0 :c:type:`dmx_pes_type` 14 replace symbol DMX_PES_SUBTITLE0 :c:type:`dmx_pes_type` 15 replace symbol DMX_PES_PCR0 :c:type:`dmx_pes_type` 16 replace symbol DMX_PES_AUDIO1 :c:type:`dmx_pes_type` 17 replace symbol DMX_PES_VIDEO1 :c:type:`dmx_pes_type` 18 replace symbol DMX_PES_TELETEXT1 :c:type:`dmx_pes_type` 19 replace symbol DMX_PES_SUBTITLE1 :c:type:`dmx_pes_type` 20 replace symbol DMX_PES_PCR1 :c:type:`dmx_pes_type` [all …]
|
/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 | 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); 90 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 102 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); 105 /* symbol.c */ 107 struct symbol *sym_choice_default(struct menu *choice); 108 struct symbol *sym_calc_choice(struct menu *choice); 109 struct property *sym_get_range_prop(struct symbol *sym); 110 const char *sym_get_string_default(struct symbol *sym); 111 struct symbol *sym_check_deps(struct symbol *sym); 112 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 …]
|
/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 *sy [all...] |
/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/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/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/objtool/ |
H A D | elf.c | 88 static inline unsigned long __sym_start(struct symbol *s) in __sym_start() 93 static inline unsigned long __sym_last(struct symbol *s) in __sym_last() 98 INTERVAL_TREE_DEFINE(struct symbol, node, unsigned long, __subtree_last, 107 const struct symbol *sym; 111 * Find !section symbol where @offset is after it. 115 const struct symbol *s = rb_entry(node, struct symbol, node); in symbol_hole_by_offset() 155 static struct symbol *find_symbol_by_index(struct elf *elf, unsigned int idx) in find_symbol_by_index() 157 struct symbol *sym; in find_symbol_by_index() 159 elf_hash_for_each_possible(symbol, sym, hash, idx) { in find_symbol_by_index() 167 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset) in find_symbol_by_offset() [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/tools/perf/ |
H A D | builtin-kallsyms.c | 5 * Builtin command: Look for a symbol in the running kernel and its modules 17 #include "symbol.h" 32 struct symbol *symbol = machine__find_kernel_symbol_by_name(machine, argv[i], &map); in __cmd_kallsyms() local 34 if (symbol == NULL) { in __cmd_kallsyms() 41 symbol->name, dso__short_name(dso), dso__long_name(dso), in __cmd_kallsyms() 42 map__unmap_ip(map, symbol->start), map__unmap_ip(map, symbol->end), in __cmd_kallsyms() 43 symbol->start, symbol in __cmd_kallsyms() [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/Documentation/kbuild/ |
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 …]
|