Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 45) sorted by relevance

12

/scripts/kconfig/
Dexpr.c15 static struct expr *expr_eliminate_yn(struct expr *e);
19 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local
20 e->type = E_SYMBOL; in expr_alloc_symbol()
21 e->left.sym = sym; in expr_alloc_symbol()
22 return e; in expr_alloc_symbol()
27 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local
28 e->type = type; in expr_alloc_one()
29 e->left.expr = ce; in expr_alloc_one()
30 return e; in expr_alloc_one()
35 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local
[all …]
Dexpr.h51 #define expr_list_for_each_sym(l, e, s) \ argument
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
209 void expr_free(struct expr *e);
211 tristate expr_calc_value(struct expr *e);
212 struct expr *expr_trans_bool(struct expr *e);
213 struct expr *expr_eliminate_dups(struct expr *e);
214 struct expr *expr_transform(struct expr *e);
217 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
220 void expr_fprint(struct expr *e, FILE *out);
222 void expr_gstr_print(struct expr *e, struct gstr *gs);
[all …]
Dqconf.h55 void keyPressEvent(QKeyEvent *e);
56 void mousePressEvent(QMouseEvent *e);
57 void mouseReleaseEvent(QMouseEvent *e);
58 void mouseMoveEvent(QMouseEvent *e);
59 void mouseDoubleClickEvent(QMouseEvent *e);
60 void focusInEvent(QFocusEvent *e);
61 void contextMenuEvent(QContextMenuEvent *e);
202 void keyPressEvent(QKeyEvent *e);
264 void contextMenuEvent(QContextMenuEvent *e);
315 void closeEvent(QCloseEvent *e);
Dsymbol.c259 struct expr *e; in sym_choice_default() local
273 expr_list_for_each_sym(prop->expr, e, def_sym) in sym_choice_default()
285 struct expr *e; in sym_calc_choice() local
291 expr_list_for_each_sym(prop->expr, e, def_sym) { in sym_calc_choice()
317 struct expr *e; in sym_calc_value() local
389 struct expr *e; in sym_calc_value() local
390 e = expr_simplify_unmet_dep(sym->rev_dep.expr, in sym_calc_value()
393 expr_fprint(e, stderr); in sym_calc_value()
398 expr_free(e); in sym_calc_value()
446 expr_list_for_each_sym(prop->expr, e, choice_sym) { in sym_calc_value()
[all …]
Dqconf.cc285 void ConfigLineEdit::keyPressEvent(QKeyEvent* e) in keyPressEvent() argument
287 switch (e->key()) { in keyPressEvent()
296 Parent::keyPressEvent(e); in keyPressEvent()
299 e->accept(); in keyPressEvent()
762 void ConfigList::mousePressEvent(QMouseEvent* e) in mousePressEvent() argument
766 Parent::mousePressEvent(e); in mousePressEvent()
769 void ConfigList::mouseReleaseEvent(QMouseEvent* e) in mouseReleaseEvent() argument
771 QPoint p = e->pos(); in mouseReleaseEvent()
820 Parent::mouseReleaseEvent(e); in mouseReleaseEvent()
823 void ConfigList::mouseMoveEvent(QMouseEvent* e) in mouseMoveEvent() argument
[all …]
Dmenu.c82 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()
/scripts/coccinelle/misc/
Dcompare_const_fl.cocci18 expression e,e1,e2;
28 sizeof e b e1
34 c | (e ? e1 : e2)
37 + e
39 - e
46 expression e,e1,e2;
59 sizeof e b e1
61 (e1 b1 e) && (e b2 e2)
63 (e1 b3 e) && (e b4 e2)
65 i b e
[all …]
Dbugon.cocci23 expression e;
26 *if (e) BUG();
33 expression e;
36 -if (e) BUG();
37 +BUG_ON(e);
44 expression e;
48 if (e) BUG@p ();
Dcstptr.cocci16 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)
Dorplus.cocci19 expression e;
23 e | c@i
25 e & c@i
27 e |= c@i
29 e &= c@i
/scripts/
Dasn1_compiler.c841 struct element *e = calloc(1, sizeof(*e)); in alloc_elem() local
842 if (!e) { in alloc_elem()
846 e->list_next = element_list; in alloc_elem()
847 element_list = e; in alloc_elem()
848 return e; in alloc_elem()
1214 static void dump_element(const struct element *e, int level) in dump_element() argument
1217 const struct type *t = e->type_def; in dump_element()
1218 const char *name = e->name ? e->name->content : "."; in dump_element()
1222 if (e->class == 0 && e->method == 0 && e->tag == 0) in dump_element()
1224 else if (e->class == ASN1_UNIV) in dump_element()
[all …]
Dextract-cert.c40 int e, line; in display_openssl_errors() local
46 while ((e = ERR_get_error_line(&file, &line))) { in display_openssl_errors()
47 ERR_error_string(e, buf); in display_openssl_errors()
115 ENGINE *e; in main() local
126 e = ENGINE_by_id("pkcs11"); in main()
127 ERR(!e, "Load PKCS#11 ENGINE"); in main()
128 if (ENGINE_init(e)) in main()
133 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), "Set PKCS#11 PIN"); in main()
134 ENGINE_ctrl_cmd(e, "LOAD_CERT_CTRL", 0, &parms, NULL, 1); in main()
Dsign-file.c77 int e, line; in display_openssl_errors() local
83 while ((e = ERR_get_error_line(&file, &line))) { in display_openssl_errors()
84 ERR_error_string(e, buf); in display_openssl_errors()
205 ENGINE *e; in main() local
209 e = ENGINE_by_id("pkcs11"); in main()
210 ERR(!e, "Load PKCS#11 ENGINE"); in main()
211 if (ENGINE_init(e)) in main()
216 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), "Set PKCS#11 PIN"); in main()
217 private_key = ENGINE_load_private_key(e, private_key_name, NULL, in main()
Dnamespace.pl223 if (! -e $basename) {
232 if (-e "$source.c" || -e "$source.S") {
237 if (! -e "$source.c" && ! -e "$source.S") {
Ddiffconfig99 e = sys.exc_info()[1]
100 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
Dbootgraph.pl191 my ($s, $s2, $s3, $e, $w, $y, $y2, $style);
201 $e = ($end{$key} - $firsttime) * $mult;
202 $w = $e - $s;
/scripts/coccinelle/free/
Dclk_put.cocci19 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);
Diounmap.cocci19 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);
Dpci_free_consistent.cocci14 expression x,y,z,e;
20 ... when != e = id
25 when != e = (T)id
Dkfreeaddr.cocci14 expression e;
19 * kfree@p(&e->f)
/scripts/dtc/
Dflattree.c60 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 …]
Ddtc-lexer.l162 char *e; variable
166 yylval.integer = strtoull(yytext, &e, 0);
168 if (*e && e[strspn(e, "UL")]) {
/scripts/genksyms/
Dlex.l158 char *file, *e;
166 e = strchr(file, '\"');
167 *e = '\0';
168 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
Dgenksyms.c341 void free_list(struct string_list *s, struct string_list *e) in free_list() argument
343 while (s != e) { in free_list()
515 struct string_list **e, **b; in print_list() local
528 b = alloca(elem * sizeof(*e)); in print_list()
529 e = b + elem; in print_list()
530 tmp2 = e - 1; in print_list()
536 while (b != e) { in print_list()
545 struct string_list **e, **b; in expand_and_crc_sym() local
556 b = alloca(elem * sizeof(*e)); in expand_and_crc_sym()
557 e = b + elem; in expand_and_crc_sym()
[all …]
Dparse.y49 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()
508 yyerror(const char *e)
510 error_with_pos("%s", e);

12