/Linux-v4.19/Documentation/media/ |
D | frontend.h.rst.exceptions | 41 ignore symbol FE_IS_STUPID 42 ignore symbol FE_CAN_INVERSION_AUTO 43 ignore symbol FE_CAN_FEC_1_2 44 ignore symbol FE_CAN_FEC_2_3 45 ignore symbol FE_CAN_FEC_3_4 46 ignore symbol FE_CAN_FEC_4_5 47 ignore symbol FE_CAN_FEC_5_6 48 ignore symbol FE_CAN_FEC_6_7 49 ignore symbol FE_CAN_FEC_7_8 50 ignore symbol FE_CAN_FEC_8_9 [all …]
|
D | dmx.h.rst.exceptions | 9 replace symbol DMX_PES_AUDIO0 :c:type:`dmx_pes_type` 10 replace symbol DMX_PES_VIDEO0 :c:type:`dmx_pes_type` 11 replace symbol DMX_PES_TELETEXT0 :c:type:`dmx_pes_type` 12 replace symbol DMX_PES_SUBTITLE0 :c:type:`dmx_pes_type` 13 replace symbol DMX_PES_PCR0 :c:type:`dmx_pes_type` 14 replace symbol DMX_PES_AUDIO1 :c:type:`dmx_pes_type` 15 replace symbol DMX_PES_VIDEO1 :c:type:`dmx_pes_type` 16 replace symbol DMX_PES_TELETEXT1 :c:type:`dmx_pes_type` 17 replace symbol DMX_PES_SUBTITLE1 :c:type:`dmx_pes_type` 18 replace symbol DMX_PES_PCR1 :c:type:`dmx_pes_type` [all …]
|
D | lirc.h.rst.exceptions | 37 ignore symbol RC_PROTO_UNKNOWN 38 ignore symbol RC_PROTO_OTHER 39 ignore symbol RC_PROTO_RC5 40 ignore symbol RC_PROTO_RC5X_20 41 ignore symbol RC_PROTO_RC5_SZ 42 ignore symbol RC_PROTO_JVC 43 ignore symbol RC_PROTO_SONY12 44 ignore symbol RC_PROTO_SONY15 45 ignore symbol RC_PROTO_SONY20 46 ignore symbol RC_PROTO_NEC [all …]
|
D | videodev2.h.rst.exceptions | 13 ignore symbol V4L2_BUF_TYPE_PRIVATE 14 ignore symbol V4L2_TUNER_DIGITAL_TV 15 ignore symbol V4L2_COLORSPACE_BT878 18 replace symbol V4L2_FIELD_ALTERNATE :c:type:`v4l2_field` 19 replace symbol V4L2_FIELD_ANY :c:type:`v4l2_field` 20 replace symbol V4L2_FIELD_BOTTOM :c:type:`v4l2_field` 21 replace symbol V4L2_FIELD_INTERLACED :c:type:`v4l2_field` 22 replace symbol V4L2_FIELD_INTERLACED_BT :c:type:`v4l2_field` 23 replace symbol V4L2_FIELD_INTERLACED_TB :c:type:`v4l2_field` 24 replace symbol V4L2_FIELD_NONE :c:type:`v4l2_field` [all …]
|
/Linux-v4.19/arch/mips/include/asm/ |
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 …]
|
D | asm.h | 52 #define LEAF(symbol) \ argument 53 .globl symbol; \ 55 .type symbol, @function; \ 56 .ent symbol, 0; \ 57 symbol: .frame sp, 0, ra; \ 64 #define NESTED(symbol, framesize, rpc) \ argument 65 .globl symbol; \ 67 .type symbol, @function; \ 68 .ent symbol, 0; \ 69 symbol: .frame sp, framesize, rpc; \ [all …]
|
/Linux-v4.19/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_symbol.c | 85 symbol_delete(symbol_t *symbol) in symbol_delete() argument 90 key.data = symbol->name; in symbol_delete() 91 key.size = strlen(symbol->name); in symbol_delete() 94 switch(symbol->type) { in symbol_delete() 98 if (symbol->info.rinfo != NULL) in symbol_delete() 99 free(symbol->info.rinfo); in symbol_delete() 102 if (symbol->info.ainfo != NULL) in symbol_delete() 103 free(symbol->info.ainfo); in symbol_delete() 109 if (symbol->info.finfo != NULL) { in symbol_delete() 110 symlist_free(&symbol->info.finfo->symrefs); in symbol_delete() [all …]
|
D | aicasm_gram.y | 92 static void initialize_symbol(symbol_t *symbol); 102 static void test_readable_symbol(symbol_t *symbol); 103 static void test_writable_symbol(symbol_t *symbol); 106 static void add_conditional(symbol_t *symbol); 109 static int is_location_address(symbol_t *symbol); 454 symbol_t *symbol; variable 456 symbol = $1; 457 if (symbol->type != CONST) { 462 if (symbol->info.cinfo->value > 4) { 467 $$ = (0x1 << symbol->info.cinfo->value); [all …]
|
/Linux-v4.19/scripts/kconfig/ |
D | lkc_proto.h | 26 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); 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); 39 bool sym_tristate_within_range(struct symbol *sym,tristate tri); 40 bool sym_set_tristate_value(struct symbol *sym,tristate tri); 41 tristate sym_toggle_tristate_value(struct symbol *sym); [all …]
|
D | lkc.h | 72 void set_all_choice_values(struct symbol *csym); 88 void menu_add_entry(struct symbol *sym); 93 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 123 struct symbol *sym_choice_default(struct symbol *sym); 124 const char *sym_get_string_default(struct symbol *sym); 125 struct symbol *sym_check_deps(struct symbol *sym); 126 struct property *prop_alloc(enum prop_type type, struct symbol *sym); 127 struct symbol *prop_get_symbol(struct property *prop); 129 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value() 135 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() [all …]
|
D | symbol.c | 14 struct symbol symbol_yes = { 32 struct symbol *sym_defconfig_list; 33 struct symbol *modules_sym; 36 enum symbol_type sym_get_type(struct symbol *sym) in sym_get_type() 70 struct property *sym_get_choice_prop(struct symbol *sym) in sym_get_choice_prop() 79 static struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop() 91 static struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop() 103 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() 119 static void sym_validate_range(struct symbol *sym) in sym_validate_range() 153 static void sym_set_changed(struct symbol *sym) in sym_set_changed() [all …]
|
D | expr.h | 39 struct symbol *sym; 83 struct symbol { struct 85 struct symbol *next; argument 193 struct symbol *sym; /* the symbol for which the property is associated */ 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); [all …]
|
D | zconf.y | 29 struct symbol *symbol_hash[SYMBOL_HASHSIZE]; 40 struct symbol *symbol; member 92 %type <symbol> nonconst_symbol 93 %type <symbol> symbol 235 config_option: T_RANGE symbol symbol if_expr T_EOL 267 struct symbol *sym = sym_lookup($2, SYMBOL_CHOICE); 496 expr: symbol { $$ = expr_alloc_symbol($1); } 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); } [all …]
|
/Linux-v4.19/scripts/ |
D | checkkconfigsymbols.py | 160 for symbol in sorted(undefined_b): 162 if symbol not in undefined_a: 163 files = sorted(undefined_b.get(symbol)) 164 undefined[symbol] = files 167 files = sorted(undefined_b.get(symbol) - 168 undefined_a.get(symbol)) 170 undefined[symbol] = files 180 for symbol in sorted(undefined): 181 print(red(symbol)) 183 files = sorted(undefined.get(symbol)) [all …]
|
D | export_report.pl | 33 my ($symbol, $no) = split /\s+/, $sym; 34 printf("\t\t%-25s\n", $symbol); 98 my (undef, $symbol, $module, $gpl) = split; 99 $SYMBOL { $symbol } = [ $module , "0" , $symbol, $gpl]; 132 my ($module, $value, $symbol, $gpl) = @{$SYMBOL{$sym}}; 133 $SYMBOL{ $sym } = [ $module, $value+1, $symbol, $gpl]; 159 my ($module, $value, $symbol, $gpl) = @{$list}; 160 printf("%-25s\t%-25s\t%-10s\t", $symbol, $module, $value); 182 foreach my $symbol (@{$list}) { 183 my ($module, $value, undef, $gpl) = @{$SYMBOL{$symbol}}; [all …]
|
D | decode_stacktrace.sh | 37 symbol=${symbol#\(} 38 symbol=${symbol%\)} 41 local name=${symbol%+*} 54 local expr=${symbol%/*} 87 symbol="$name ($code)" 126 symbol=${words[$last-1]} 130 symbol=${words[$last]} 138 echo "${words[@]}" "$symbol $module"
|
/Linux-v4.19/tools/perf/util/ |
D | symbol.h | 55 struct symbol { struct 69 void symbol__delete(struct symbol *sym); argument 80 nd && (pos = rb_entry(nd, struct symbol, rb_node)); \ 83 static inline size_t symbol__size(const struct symbol *sym) in symbol__size() 155 struct symbol sym; 168 static inline void *symbol__priv(struct symbol *sym) in symbol__priv() 181 struct symbol *sym; 186 struct symbol *sym; 211 struct symbol *sym; 261 struct symbol *sym); [all …]
|
D | annotate.h | 29 struct symbol *sym; 187 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym); 215 void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel); 304 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym); 306 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym); 318 static inline struct annotation *symbol__annotation(struct symbol *sym) in symbol__annotation() 333 struct annotated_source *symbol__hists(struct symbol *sym, int nr_hists); 334 void symbol__annotate_zero_histograms(struct symbol *sym); 336 int symbol__annotate(struct symbol *sym, struct map *map, 340 int symbol__annotate2(struct symbol *sym, struct map *map, [all …]
|
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, 30 struct symbol *symbol; member 43 struct symbol *sym);
|
/Linux-v4.19/drivers/scsi/ |
D | 53c700.h | 425 #define script_patch_32(dev, 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_cache_sync((dev), &(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \ 434 #symbol, A_##symbol##_used[i], &da)); \ 438 #define script_patch_32_abs(dev, 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_cache_sync((dev), &(script)[A_##symbol##_used[i]], 4, DMA_TO_DEVICE); \ [all …]
|
/Linux-v4.19/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
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-v4.19/tools/perf/ |
D | builtin-kallsyms.c | 30 struct symbol *symbol = machine__find_kernel_symbol_by_name(machine, argv[i], &map); in __cmd_kallsyms() local 32 if (symbol == NULL) { in __cmd_kallsyms() 38 symbol->name, map->dso->short_name, map->dso->long_name, in __cmd_kallsyms() 39 map->unmap_ip(map, symbol->start), map->unmap_ip(map, symbol->end), in __cmd_kallsyms() 40 symbol->start, symbol->end); in __cmd_kallsyms()
|
/Linux-v4.19/scripts/kconfig/tests/err_recursive_dep/ |
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 …]
|
/Linux-v4.19/tools/perf/scripts/python/ |
D | intel-pt-events.py | 83 def print_common_ip(sample, symbol, dso): argument 85 print "%16x %s (%s)" % (ip, symbol, dso) 101 symbol = param_dict["symbol"] 103 symbol = "[unknown]" 108 print_common_ip(sample, symbol, dso) 112 print_common_ip(sample, symbol, dso) 116 print_common_ip(sample, symbol, dso) 120 print_common_ip(sample, symbol, dso) 124 print_common_ip(sample, symbol, dso) 128 print_common_ip(sample, symbol, dso)
|
/Linux-v4.19/tools/objtool/ |
D | elf.h | 46 struct symbol *sym; 54 struct symbol { struct 64 struct symbol *pfunc, *cfunc; argument 71 struct symbol *sym; 89 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset); 90 struct symbol *find_symbol_by_name(struct elf *elf, const char *name); 91 struct symbol *find_symbol_containing(struct section *sec, unsigned long offset); 95 struct symbol *find_containing_func(struct section *sec, unsigned long offset);
|