| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | frontend.h.rst.exceptions | 44 ignore symbol FE_IS_STUPID 45 ignore symbol FE_CAN_INVERSION_AUTO 46 ignore symbol FE_CAN_FEC_1_2 47 ignore symbol FE_CAN_FEC_2_3 48 ignore symbol FE_CAN_FEC_3_4 49 ignore symbol FE_CAN_FEC_4_5 50 ignore symbol FE_CAN_FEC_5_6 51 ignore symbol FE_CAN_FEC_6_7 52 ignore symbol FE_CAN_FEC_7_8 53 ignore symbol FE_CAN_FEC_8_9 [all …]
|
| H A D | dmx.h.rst.exceptions | 13 replace symbol DMX_PES_AUDIO0 :c:type:`DTV.dmx.dmx_ts_pes` 14 replace symbol DMX_PES_VIDEO0 :c:type:`DTV.dmx.dmx_ts_pes` 15 replace symbol DMX_PES_TELETEXT0 :c:type:`DTV.dmx.dmx_ts_pes` 16 replace symbol DMX_PES_SUBTITLE0 :c:type:`DTV.dmx.dmx_ts_pes` 17 replace symbol DMX_PES_PCR0 :c:type:`DTV.dmx.dmx_ts_pes` 18 replace symbol DMX_PES_AUDIO1 :c:type:`DTV.dmx.dmx_ts_pes` 19 replace symbol DMX_PES_VIDEO1 :c:type:`DTV.dmx.dmx_ts_pes` 20 replace symbol DMX_PES_TELETEXT1 :c:type:`DTV.dmx.dmx_ts_pes` 21 replace symbol DMX_PES_SUBTITLE1 :c:type:`DTV.dmx.dmx_ts_pes` 22 replace symbol DMX_PES_PCR1 :c:type:`DTV.dmx.dmx_ts_pes` [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/drivers/scsi/aic7xxx/aicasm/ |
| H A D | aicasm_symbol.c | 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() 100 free(symbol->info.ainfo); in symbol_delete() 106 if (symbol->info.finfo != NULL) { in symbol_delete() 107 symlist_free(&symbol->info.finfo->symrefs); in symbol_delete() [all …]
|
| /linux/scripts/kconfig/ |
| H A D | lkc_proto.h | 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); 32 tristate sym_toggle_tristate_value(struct symbol *sym); [all …]
|
| 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() 80 struct menu *sym_get_prompt_menu(const struct symbol *sym) in sym_get_prompt_menu() 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() 132 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop() 144 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() [all …]
|
| H A D | lkc.h | 85 void menu_add_entry(struct symbol *sym, enum menu_type type); 91 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 104 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); 108 /* symbol.c */ 110 struct symbol *sym_choice_default(struct menu *choice); 111 struct symbol *sym_calc_choice(struct menu *choice); 112 struct property *sym_get_range_prop(struct symbol *sym); 113 const char *sym_get_string_default(struct symbol *sym); 114 struct symbol *sym_check_deps(struct symbol *sy [all...] |
| H A D | expr.h | 33 struct symbol * const sym; 89 struct symbol { struct 242 struct symbol *sym; 295 extern struct symbol symbol_yes, symbol_no, symbol_mod; 296 extern struct symbol *modules_sym; 298 struct expr *expr_alloc_symbol(struct symbol *sym); 301 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2); 309 bool expr_contains_symbol(struct expr *dep, struct symbol *sym); 310 bool expr_depends_symbol(struct expr *dep, struct symbol *sym); 311 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
|
| /linux/scripts/ |
| H A D | checkkconfigsymbols.py | 162 for symbol in sorted(undefined_b): 164 if symbol not in undefined_a: 165 files = sorted(undefined_b.get(symbol)) 166 undefined[symbol] = files 169 files = sorted(undefined_b.get(symbol) - 170 undefined_a.get(symbol)) 172 undefined[symbol] = files 182 for symbol in sorted(undefined): 183 print(red(symbol)) 185 files = sorted(undefined.get(symbol)) [all …]
|
| H A D | decode_stacktrace.sh | 135 # The structure of symbol at this point is: 156 symbol=${symbol#\(} 157 symbol=${symbol%\)} 161 if [[ $symbol == *:* ]] ; then 162 segment=${symbol%%:*}: 163 symbol=${symbol#*:} 166 # Strip the symbol nam [all...] |
| /linux/tools/perf/util/ |
| H A D | symbol.h | 50 struct symbol { argument 52 /** Range of symbol [start, end). */ 57 /** ELF symbol type as defined for st_info. E.g STT_OBJECT or STT_FUNC. */ 73 /** The name of length namelen associated with the symbol. */ 77 void symbol__delete(struct symbol *sym); 83 * @pos: the 'struct symbol *' to use as a loop cursor 88 nd && (pos = rb_entry(nd, struct symbol, rb_node)); \ 91 static inline size_t symbol__size(const struct symbol *sym) in symbol__size() 112 static inline void *symbol__priv(struct symbol *sym) 132 struct symbol *sy 48 struct symbol { global() struct 55 namelensymbol global() argument 71 arch_symsymbol global() argument 75 namesymbol global() argument [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); 60 int inline_list__append_tail(struct symbol *symbol, char *srcline, struct inline_node *node); 62 struct symbol *new_inline_sym(struct dso *dso, 63 struct symbol *base_sym,
|
| H A D | libbfd.h | 14 struct symbol; 20 struct symbol *sym); 25 int symbol__disassemble_libbfd(const char *filename, struct symbol *sym, 32 int symbol__disassemble_bpf_libbfd(struct symbol *sym, struct annotate_args *args); 44 struct symbol *sym __always_unused) in libbfd__addr2line() 55 struct symbol *sym __always_unused, in symbol__disassemble_libbfd() 74 static inline int symbol__disassemble_bpf_libbfd(struct symbol *sym __always_unused, in symbol__disassemble_bpf_libbfd()
|
| H A D | srcline.c | 8 #include "symbol.h" 40 int inline_list__append(struct symbol *symbol, char *srcline, struct inline_node *node) in inline_list__append() 48 ilist->symbol = symbol; in inline_list__append() 59 int inline_list__append_tail(struct symbol *symbol, char *srcline, struct inline_node *node) in inline_list__append_tail() 67 ilist->symbol = symbol; in inline_list__append_tail() 94 struct symbol *new_inline_sy in srcline_from_fileline() 38 inline_list__append(struct symbol * symbol,char * srcline,struct inline_node * node) inline_list__append() argument 57 inline_list__append_tail(struct symbol * symbol,char * srcline,struct inline_node * node) inline_list__append_tail() argument [all...] |
| /linux/drivers/scsi/ |
| H A D | 53c700.h | 425 #define script_patch_32(h, script, symbol, value) \ argument 429 for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \ 430 __u32 val = bS_to_cpu((script)[A_##symbol##_used[i]]) + da; \ 431 (script)[A_##symbol##_used[i]] = bS_to_host(val); \ 432 dma_sync_to_dev((h), &(script)[A_##symbol##_used[i]], 4); \ 434 #symbol, A_##symbol##_used[i], &da)); \ 438 #define script_patch_32_abs(h, script, symbol, value) \ argument 442 for(i=0; i< (sizeof(A_##symbol##_used) / sizeof(__u32)); i++) { \ 443 (script)[A_##symbol##_used[i]] = bS_to_host(da); \ 444 dma_sync_to_dev((h), &(script)[A_##symbol##_used[i]], 4); \ [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 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) 87 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS_LL): argument [all …]
|
| /linux/samples/fprobe/ |
| H A D | fprobe_example.c | 26 static char symbol[MAX_SYMBOL_LEN] = "kernel_clone"; variable 27 module_param_string(symbol, symbol, sizeof(symbol), 0644); 28 MODULE_PARM_DESC(symbol, "Probed symbol(s), given by comma separated symbols or a wildcard pattern.… 99 if (strchr(symbol, '*')) { in fprobe_init() 101 ret = register_fprobe(&sample_probe, symbol, in fprobe_init() 104 } else if (!strchr(symbol, ',')) { in fprobe_init() 105 symbuf = symbol; in fprobe_init() 111 symbuf = kstrdup(symbol, GFP_KERNEL); in fprobe_init() 138 pr_info("Planted fprobe at %s\n", symbol); in fprobe_init() 148 symbol, nhit, sample_probe.nmissed); in fprobe_exit()
|
| /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/scripts/gendwarfksyms/ |
| H A D | symbols.c | 11 /* struct symbol_addr -> struct symbol */ 13 /* name -> struct symbol */ 21 static unsigned int __for_each_addr(struct symbol *sym, symbol_callback_t func, in __for_each_addr() 25 struct symbol *match = NULL; in __for_each_addr() 47 * the symbol. A __gendwarfksyms_ptr pointer must have the same type as the 48 * exported symbol, e.g.: 61 struct symbol *match; in for_each() 86 static void set_crc(struct symbol *sym, void *data) in set_crc() 91 warn("overriding version for symbol %s (crc %lx vs. %lx)", in set_crc() 98 void symbol_set_crc(struct symbol *sy in symbol_set_crc() [all...] |
| /linux/tools/perf/ |
| H A D | builtin-kallsyms.c | 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()
|
| /linux/tools/perf/tests/shell/ |
| H A D | kallsyms.sh | 18 symbol="schedule" 22 output=$(perf kallsyms $symbol 2>&1) 28 if grep -q "$symbol" /proc/kallsyms 2>/dev/null; then 31 …echo "Basic perf kallsyms test [Skipped: $symbol found in /proc/kallsyms but perf kallsyms failed … 35 echo "Basic perf kallsyms test [Skipped: $symbol not found in /proc/kallsyms]" 42 echo "Basic perf kallsyms test [Failed: output '$output' does not contain $symbol]"
|
| /linux/lib/zstd/compress/ |
| H A D | fse_compress.c | 157 U32 symbol; in FSE_buildCTable_wksp() local 158 for (symbol=0; symbol<maxSV1; symbol++) { in FSE_buildCTable_wksp() 160 int const freq = normalizedCounter[symbol]; in FSE_buildCTable_wksp() 162 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol; in FSE_buildCTable_wksp() 205 { U32 symbol; in FSE_buildCTable_wksp() 206 for (symbol=0; symbol<=maxSymbolValue; symbol++) { in FSE_buildCTable_wksp() 208 symbol, normalizedCounter[symbol], in FSE_buildCTable_wksp() 209 FSE_getMaxNbBits(symbolTT, symbol), in FSE_buildCTable_wksp() 210 (double)FSE_bitCost(symbolTT, tableLog, symbol, 8) / 256); in FSE_buildCTable_wksp() 248 unsigned symbol = 0; in FSE_writeNCount_generic() local [all …]
|
| /linux/tools/perf/scripts/python/ |
| H A D | intel-pt-events.py | 266 def print_common_ip(param_dict, sample, symbol, dso): argument 287 print("%s%s (%s)" % (symbol, offs, dso), end=' ') 289 print("%16x %s%s (%s)" % (ip, symbol, offs, dso), end=' ') 293 symbol = get_optional(sample, "addr_symbol") 295 print("=> %x %s%s (%s)%s" % (addr, symbol, offs, dso, ipc_str)) 299 def print_srccode(comm, param_dict, sample, symbol, dso, with_insn): argument 301 if symbol == "[unknown]": 305 start_str = common_start_str(comm, sample) + (symbol + offs).ljust(40) 355 symbol = get_optional(param_dict, "symbol") 364 print_srccode(comm, param_dict, sample, symbol, dso, True) [all …]
|
| /linux/scripts/kconfig/tests/err_transitional/ |
| H A D | Kconfig | 9 This transitional symbol illegally has a default property. 16 This transitional symbol illegally has a prompt. 23 This transitional symbol illegally has a select. 30 This transitional symbol illegally has an imply. 37 This transitional symbol illegally has a depends. 44 This transitional symbol illegally has a range. 49 This transitional symbol illegally has no type specified.
|