/scripts/kconfig/ |
D | expr.c | 16 struct expr *e = calloc(1, sizeof(*e)); in expr_alloc_symbol() local 17 e->type = E_SYMBOL; in expr_alloc_symbol() 18 e->left.sym = sym; in expr_alloc_symbol() 19 return e; in expr_alloc_symbol() 24 struct expr *e = calloc(1, sizeof(*e)); in expr_alloc_one() local 25 e->type = type; in expr_alloc_one() 26 e->left.expr = ce; in expr_alloc_one() 27 return e; in expr_alloc_one() 32 struct expr *e = calloc(1, sizeof(*e)); in expr_alloc_two() local 33 e->type = type; in expr_alloc_two() [all …]
|
D | expr.h | 48 #define expr_list_for_each_sym(l, e, s) \ argument 49 for (e = (l); e && (s = e->right.sym); e = e->left.expr) 191 void expr_free(struct expr *e); 194 tristate expr_calc_value(struct expr *e); 195 struct expr *expr_eliminate_yn(struct expr *e); 196 struct expr *expr_trans_bool(struct expr *e); 197 struct expr *expr_eliminate_dups(struct expr *e); 198 struct expr *expr_transform(struct expr *e); 204 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); 207 void expr_fprint(struct expr *e, FILE *out); [all …]
|
D | symbol.c | 238 struct expr *e; in sym_choice_default() local 252 expr_list_for_each_sym(prop->expr, e, def_sym) in sym_choice_default() 264 struct expr *e; in sym_calc_choice() local 270 expr_list_for_each_sym(prop->expr, e, def_sym) { in sym_calc_choice() 296 struct expr *e; in sym_calc_value() local 360 struct expr *e; in sym_calc_value() local 361 e = expr_simplify_unmet_dep(sym->rev_dep.expr, in sym_calc_value() 364 expr_fprint(e, stderr); in sym_calc_value() 369 expr_free(e); in sym_calc_value() 417 expr_list_for_each_sym(prop->expr, e, choice_sym) { in sym_calc_value() [all …]
|
D | qconf.h | 62 void keyPressEvent(QKeyEvent *e); 63 void contentsMousePressEvent(QMouseEvent *e); 64 void contentsMouseReleaseEvent(QMouseEvent *e); 65 void contentsMouseMoveEvent(QMouseEvent *e); 66 void contentsMouseDoubleClickEvent(QMouseEvent *e); 67 void focusInEvent(QFocusEvent *e); 68 void contextMenuEvent(QContextMenuEvent *e); 212 void keyPressEvent(QKeyEvent *e); 274 void contentsContextMenuEvent(QContextMenuEvent *e); 325 void closeEvent(QCloseEvent *e);
|
D | menu.c | 82 static struct expr *menu_check_dep(struct expr *e) in menu_check_dep() argument 84 if (!e) in menu_check_dep() 85 return e; in menu_check_dep() 87 switch (e->type) { in menu_check_dep() 89 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep() 93 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep() 94 e->right.expr = menu_check_dep(e->right.expr); in menu_check_dep() 98 if (e->left.sym == &symbol_mod) in menu_check_dep() 99 return expr_alloc_and(e, expr_alloc_symbol(modules_sym)); in menu_check_dep() 104 return e; in menu_check_dep()
|
D | qconf.cc | 310 void ConfigLineEdit::keyPressEvent(QKeyEvent* e) in keyPressEvent() argument 312 switch (e->key()) { in keyPressEvent() 321 Parent::keyPressEvent(e); in keyPressEvent() 324 e->accept(); in keyPressEvent() 711 void ConfigList::contentsMousePressEvent(QMouseEvent* e) in contentsMousePressEvent() argument 715 Parent::contentsMousePressEvent(e); in contentsMousePressEvent() 718 void ConfigList::contentsMouseReleaseEvent(QMouseEvent* e) in contentsMouseReleaseEvent() argument 720 QPoint p(contentsToViewport(e->pos())); in contentsMouseReleaseEvent() 770 Parent::contentsMouseReleaseEvent(e); in contentsMouseReleaseEvent() 773 void ConfigList::contentsMouseMoveEvent(QMouseEvent* e) in contentsMouseMoveEvent() argument [all …]
|
D | util.c | 38 struct expr *e; in file_write_dep() local 57 expr_list_for_each_sym(sym_env_list, e, sym) { in file_write_dep()
|
D | confdata.c | 990 struct expr *e; in randomize_choice_values() local 1005 expr_list_for_each_sym(prop->expr, e, sym) in randomize_choice_values() 1015 expr_list_for_each_sym(prop->expr, e, sym) { in randomize_choice_values() 1033 struct expr *e; in set_all_choice_values() local 1040 expr_list_for_each_sym(prop->expr, e, sym) { in set_all_choice_values()
|
D | lkc_proto.h | 54 P(expr_print,void,(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, i…
|
/scripts/coccinelle/free/ |
D | iounmap.cocci | 19 expression e; 25 e = \(ioremap@p1\|ioremap_nocache@p1\)(...) 26 ... when != iounmap(e) 27 if (<+...e...+>) S 29 when != iounmap(e) 30 when != if (...) { ... iounmap(e); ... } 40 return <+...e...+>; } 43 { ... when != iounmap(e) 48 iounmap(e);
|
D | clk_put.cocci | 19 expression e; 25 e = clk_get@p1(...) 26 ... when != clk_put(e) 27 if (<+...e...+>) S 29 when != clk_put(e) 30 when != if (...) { ... clk_put(e); ... } 40 return <+...e...+>; } 43 { ... when != clk_put(e) 48 clk_put(e);
|
/scripts/coccinelle/misc/ |
D | cstptr.cocci | 16 expression e,e1; 21 *e@p1 = c 22 ... when != e = e1 23 when != &e 24 when != true IS_ERR(e) 25 *PTR_ERR@p2(e)
|
/scripts/dtc/ |
D | flattree.c | 60 static void bin_emit_cell(void *e, cell_t val) in bin_emit_cell() argument 62 struct data *dtbuf = e; in bin_emit_cell() 67 static void bin_emit_string(void *e, char *str, int len) in bin_emit_string() argument 69 struct data *dtbuf = e; in bin_emit_string() 78 static void bin_emit_align(void *e, int a) in bin_emit_align() argument 80 struct data *dtbuf = e; in bin_emit_align() 85 static void bin_emit_data(void *e, struct data d) in bin_emit_data() argument 87 struct data *dtbuf = e; in bin_emit_data() 92 static void bin_emit_beginnode(void *e, struct label *labels) in bin_emit_beginnode() argument 94 bin_emit_cell(e, FDT_BEGIN_NODE); in bin_emit_beginnode() [all …]
|
D | dtc-parser.y | 333 char *e; in eval_literal() local 336 val = strtoull(s, &e, base); in eval_literal() 337 if (*e) in eval_literal()
|
/scripts/ |
D | namespace.pl | 222 if (! -e $basename) { 231 if (-e "$source.c" || -e "$source.S") { 236 if (! -e "$source.c" && ! -e "$source.S") {
|
D | headers_install.pl | 52 my $e = $? >> 8; 53 if ($e > 1) {
|
D | bootgraph.pl | 153 my ($s, $s2, $s3, $e, $w, $y, $y2, $style); 163 $e = ($end{$key} - $firsttime) * $mult; 164 $w = $e - $s;
|
D | docproc.c | 215 char *e; in find_export_symbols() local 230 e = p; in find_export_symbols() 231 while (isalnum(*e) || *e == '_') in find_export_symbols() 232 e++; in find_export_symbols() 233 *e = '\0'; in find_export_symbols()
|
D | Kbuild.include | 54 $(Q)set -e; \ 76 $(shell set -e; \ 88 try-run = $(shell set -e; \ 210 # note: when using inline perl scripts [perl -e '...$$t=1;...'] 221 @set -e; \ 227 @set -e; \ 237 @set -e; \
|
/scripts/genksyms/ |
D | lex.l | 157 char *file, *e; 165 e = strchr(file, '\"'); 166 *e = '\0'; 167 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
|
D | genksyms.c | 342 void free_list(struct string_list *s, struct string_list *e) in free_list() argument 344 while (s != e) { in free_list() 514 struct string_list **e, **b; in print_list() local 527 b = alloca(elem * sizeof(*e)); in print_list() 528 e = b + elem; in print_list() 529 tmp2 = e - 1; in print_list() 535 while (b != e) { in print_list() 544 struct string_list **e, **b; in expand_and_crc_sym() local 555 b = alloca(elem * sizeof(*e)); in expand_and_crc_sym() 556 e = b + elem; in expand_and_crc_sym() [all …]
|
D | parse.y | 49 struct string_list *b = *pb, *e = *pe; in remove_list() local 50 *pb = e; in remove_list() 51 free_list(b, e); in remove_list() 500 yyerror(const char *e) 502 error_with_pos("%s", e);
|
D | genksyms.h | 70 void free_list(struct string_list *s, struct string_list *e);
|
D | lex.lex.c_shipped | 205 /* Whether we "own" the buffer - i.e., we know we created it, 1651 * scan from a @e copy of @a str. 1665 * scan from a @e copy of @a bytes. 1916 * enum e { a, b }; struct s { int a, b; } 1966 char *file, *e; 1974 e = strchr(file, '\"'); 1975 *e = '\0'; 1976 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
|
/scripts/mod/ |
D | modpost.c | 1781 const char *e = is_vmlinux(m) ?"":".ko"; in check_for_gpl_usage() local 1786 "uses GPL-only symbol '%s'\n", m, e, s); in check_for_gpl_usage() 1790 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s); in check_for_gpl_usage() 1794 "uses future GPL-only symbol '%s'\n", m, e, s); in check_for_gpl_usage() 1806 const char *e = is_vmlinux(m) ?"":".ko"; in check_for_unused() local 1812 "uses symbol '%s' marked UNUSED\n", m, e, s); in check_for_unused()
|