/scripts/kconfig/ |
A D | expr.c | 46 e = xmalloc(sizeof(*e)); in expr_lookup() 271 if (e) switch (e->type) { in expr_eliminate_yn() 557 e = expr_eliminate_yn(e); in expr_eliminate_dups() 607 e = expr_alloc_two(e->type, in expr_transform() 657 e = e->left.expr->left.expr; in expr_transform() 684 e = expr_transform(e); in expr_transform() 690 e = expr_transform(e); in expr_transform() 791 e = expr_alloc_one(E_NOT, e); in expr_trans_compare() 803 e = expr_alloc_one(E_NOT, e); in expr_trans_compare() 813 e = expr_alloc_one(E_NOT, e); in expr_trans_compare() [all …]
|
A D | preprocess.c | 48 struct env *e; in env_add() local 50 e = xmalloc(sizeof(*e)); in env_add() 51 e->name = xstrdup(name); in env_add() 59 list_del(&e->node); in env_del() 60 free(e->name); in env_del() 61 free(e->value); in env_del() 62 free(e); in env_del() 68 struct env *e; in env_expand() local 94 struct env *e, *tmp; in env_write_dep() local 102 e->name, e->value); in env_write_dep() [all …]
|
A D | expr.h | 305 tristate expr_calc_value(struct expr *e); 306 struct expr *expr_eliminate_dups(struct expr *e); 307 struct expr *expr_transform(struct expr *e); 310 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); 312 void expr_fprint(struct expr *e, FILE *out); 314 void expr_gstr_print(const struct expr *e, struct gstr *gs); 315 void expr_gstr_print_revdep(struct expr *e, struct gstr *gs, 318 static inline bool expr_is_yes(const struct expr *e) in expr_is_yes() argument 320 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes()
|
A D | qconf.h | 58 void keyPressEvent(QKeyEvent *e); 59 void mouseReleaseEvent(QMouseEvent *e); 60 void mouseDoubleClickEvent(QMouseEvent *e); 61 void focusInEvent(QFocusEvent *e); 62 void contextMenuEvent(QContextMenuEvent *e); 261 void closeEvent(QCloseEvent *e);
|
/scripts/ |
A D | subarch.include | 7 SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \ 8 -e s/sun4u/sparc64/ \ 9 -e /^arm64$$/!s/arm.*/arm/ -e s/sa110/arm/ \ 10 -e s/s390x/s390/ \ 11 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ 12 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \ 13 -e s/riscv.*/riscv/ -e s/loongarch.*/loongarch/)
|
A D | asn1_compiler.c | 837 struct element *e = calloc(1, sizeof(*e)); in alloc_elem() local 838 if (!e) { in alloc_elem() 844 return e; in alloc_elem() 1218 if (e->class == 0 && e->method == 0 && e->tag == 0) in dump_element() 1242 e->action ? e->action->name : ""); in dump_element() 1364 for (e = element_list; e; e = e->list_next) in render() 1449 if ((e->type_def && e->type_def->ref_count > 1) || in render_element() 1471 render_element(out, e->children, e); in render_element() 1488 if (e->class == ASN1_UNIV && e->method == ASN1_PRIM && e->tag == 0) in render_element() 1536 if (e->type_def && e->type_def->name) in render_element() [all …]
|
A D | ssl-common.h | 10 int e, line; in drain_openssl_errors() local 17 while ((e = ERR_peek_error_line(&file, &line))) { in drain_openssl_errors() 18 ERR_error_string(e, buf); in drain_openssl_errors()
|
A D | jobserver-exec | 49 except (OSError, IOError) as e: 50 if e.errno == errno.EWOULDBLOCK: 56 raise e 60 except (KeyError, IndexError, ValueError, OSError, IOError) as e:
|
A D | documentation-file-ref-check | 27 if (! -e ".git") { 72 next if (grep -e, glob("$f")); 144 next if (grep -e, glob("$ref $fulref")); 151 next if (grep -e, glob("$path/$ref $path/../$ref $path/$fulref"));
|
A D | diffconfig | 100 e = sys.exc_info()[1] 101 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
|
/scripts/gendwarfksyms/ |
A D | types.c | 107 struct type_expansion *e; in __type_map_get() local 111 *res = e; in __type_map_get() 122 struct type_expansion *e; in type_map_add() local 125 e = xmalloc(sizeof(*e)); in type_map_add() 126 type_expansion_init(e); in type_map_add() 129 hash_add(type_map, &e->hash, hash_str(e->name)); in type_map_add() 136 return e; in type_map_add() 146 e->len = type->len; in type_map_add() 155 return e; in type_map_add() 207 es[i++] = e; in type_map_write() [all …]
|
/scripts/coccinelle/api/ |
A D | string_choices.cocci | 33 e << str_plural_r.E; 52 e << str_up_down_r.E; 71 e << str_down_up_r.E; 90 e << str_true_false_r.E; 109 e << str_false_true_r.E; 128 e << str_hi_lo_r.E; 147 e << str_high_low_r.E; 166 e << str_lo_hi_r.E; 185 e << str_low_high_r.E; 280 e << str_on_off_r.E; [all …]
|
/scripts/coccinelle/tests/ |
A D | unsigned_lesser_than_zero.cocci | 28 expression e; 31 \( v = e \| &v \) 39 expression c, e, v; 45 ... when != v = e; 46 * (\( v@p <=@e 0 \| v@p >@e 0 \)) 58 * (\( v@p <@e 0 \| v@p >=@e 0 \)) 64 e << r.e; 67 msg = "WARNING: Unsigned expression compared with zero: %s" % (e) 72 e << r.e; 75 msg = "WARNING: Unsigned expression compared with zero: %s" % (e)
|
/scripts/coccinelle/free/ |
A D | iounmap.cocci | 20 expression e; 26 e = \(ioremap@p1\)(...) 27 ... when != iounmap(e) 28 if (<+...e...+>) S 30 when != iounmap(e) 31 when != if (...) { ... iounmap(e); ... } 41 return <+...e...+>; } 44 { ... when != iounmap(e) 49 iounmap(e);
|
A D | clk_put.cocci | 20 expression e; 26 e = clk_get@p1(...) 27 ... when != clk_put(e) 28 if (<+...e...+>) S 30 when != clk_put(e) 31 when != if (...) { ... clk_put(e); ... } 41 return <+...e...+>; } 44 { ... when != clk_put(e) 49 clk_put(e);
|
A D | kfreeaddr.cocci | 15 expression e; 21 * kfree@p(&e->f) 23 * kfree_sensitive@p(&e->f)
|
A D | pci_free_consistent.cocci | 15 expression x,y,z,e; 21 ... when != e = id 26 when != e = (T)id
|
/scripts/coccinelle/misc/ |
A D | orplus.cocci | 32 expression e; 36 e | c@i 38 e & c@i 40 e |= c@i 42 e &= c@i 44 e | c1@i 46 e & c1@i 48 e |= c1@i 50 e &= c1@i
|
A D | cstptr.cocci | 17 expression e,e1; 22 *e@p1 = c 23 ... when != e = e1 24 when != &e 25 when != true IS_ERR(e) 26 *PTR_ERR@p2(e)
|
A D | newline_in_nl_msg.cocci | 15 expression e; 23 NL_SET_ERR_MSG_ATTR_FMT\)(e,m@p,...) 34 expression r.e; 38 fname(e,m@p,...) 46 expression r.e; 49 * fname(e,m,...)
|
/scripts/gendwarfksyms/examples/ |
A D | kabi_ex.h | 52 enum e { enum 59 KABI_ENUMERATOR_IGNORE(e, B); 60 KABI_ENUMERATOR_IGNORE(e, C); 61 KABI_ENUMERATOR_VALUE(e, D, 123456789);
|
/scripts/dtc/ |
A D | flattree.c | 47 struct data *dtbuf = e; in bin_emit_cell() 54 struct data *dtbuf = e; in bin_emit_string() 65 struct data *dtbuf = e; in bin_emit_align() 72 struct data *dtbuf = e; in bin_emit_data() 125 FILE *f = e; in asm_emit_cell() 135 FILE *f = e; in asm_emit_string() 145 FILE *f = e; in asm_emit_align() 152 FILE *f = e; in asm_emit_data() 174 FILE *f = e; in asm_emit_beginnode() 187 FILE *f = e; in asm_emit_endnode() [all …]
|
A D | dtc-lexer.l | 155 char *e; variable 159 yylval.integer = strtoull(yytext, &e, 0); 161 if (*e && e[strspn(e, "UL")]) {
|
/scripts/gdb/linux/ |
A D | stackdepot.py | 52 except Exception as e: 53 gdb.write("%s\n" % e) 65 except Exception as e: 66 gdb.write("%s\n" % e)
|
/scripts/coccinelle/iterators/ |
A D | for_each_child.cocci | 54 expression e; 64 e = n 83 expression e,e1; 93 e = n 115 expression e,e1; 126 e = n 149 expression e; 161 e = n 187 expression e, e1; 199 e = n [all …]
|