Searched refs:e1 (Results 1 – 9 of 9) sorted by relevance
/scripts/kconfig/ |
D | expr.c | 34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument 38 e->left.expr = e1; in expr_alloc_two() 52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument 54 if (!e1) in expr_alloc_and() 56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument 61 if (!e1) in expr_alloc_or() 63 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 139 #define e1 (*ep1) macro 154 if (e1->type == type) { in __expr_eliminate_eq() [all …]
|
D | expr.h | 290 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 292 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 293 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 297 int expr_eq(struct expr *e1, struct expr *e2);
|
/scripts/coccinelle/iterators/ |
D | device_node_continue.cocci | 20 expression e1,e2; 33 for_each_node_by_name(n,e1) S 35 for_each_node_by_type(n,e1) S 37 for_each_compatible_node(n,e1,e2) S 39 for_each_matching_node(n,e1) S 41 for_each_matching_node_and_match(n,e1,e2) S 43 for_each_child_of_node(e1,n) S 45 for_each_available_child_of_node(e1,n) S 47 for_each_node_with_property(n,e1) S
|
D | for_each_child.cocci | 18 expression e1,e2; 30 for_each_node_by_name(n,e1) S 32 for_each_node_by_type(n,e1) S 34 for_each_compatible_node(n,e1,e2) S 36 for_each_matching_node(n,e1) S 38 for_each_matching_node_and_match(n,e1,e2) S 40 for_each_child_of_node(e1,n) S 42 for_each_available_child_of_node(e1,n) S 44 for_each_node_with_property(n,e1) S 83 expression e,e1; [all …]
|
/scripts/coccinelle/tests/ |
D | doubletest.cocci | 31 expression r.E,e1,e2,fn; 39 <+... \(fn(...)\|e1 op e2\|e1++\|e1--\|++e1\|--e1\) ...+>
|
D | odd_ptr_err.cocci | 29 expression x,e1,e2; 36 PTR_ERR@p(\(e1 ? e2 : x\|e1 ? x : e2\))
|
/scripts/coccinelle/free/ |
D | put_device.cocci | 14 expression x,e,e1; 25 when != e1 = (T)id 26 when != e1 = (T)(&id->dev) 27 when != e1 = get_device(&id->dev) 28 when != e1 = (T1)platform_get_drvdata(id)
|
/scripts/coccinelle/misc/ |
D | cstptr.cocci | 17 expression e,e1; 23 ... when != e = e1
|
/scripts/coccinelle/api/ |
D | check_bq27xxx_data.cocci | 25 expression e1,e2; 30 [e1] = BQ27XXX_DATA(i1,...),
|