/scripts/kconfig/ |
D | expr.c | 16 static struct expr *expr_eliminate_yn(struct expr *e); 20 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 21 e->type = E_SYMBOL; in expr_alloc_symbol() 22 e->left.sym = sym; in expr_alloc_symbol() 23 return e; in expr_alloc_symbol() 28 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 29 e->type = type; in expr_alloc_one() 30 e->left.expr = ce; in expr_alloc_one() 31 return e; in expr_alloc_one() 36 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local [all …]
|
D | expr.h | 51 #define expr_list_for_each_sym(l, e, s) \ argument 52 for (e = (l); e && (s = e->right.sym); e = e->left.expr) 295 void expr_free(struct expr *e); 298 tristate expr_calc_value(struct expr *e); 299 struct expr *expr_trans_bool(struct expr *e); 300 struct expr *expr_eliminate_dups(struct expr *e); 301 struct expr *expr_transform(struct expr *e); 304 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); 306 void expr_fprint(struct expr *e, FILE *out); 308 void expr_gstr_print(struct expr *e, struct gstr *gs); [all …]
|
D | preprocess.c | 46 struct env *e; in env_add() local 48 e = xmalloc(sizeof(*e)); in env_add() 49 e->name = xstrdup(name); in env_add() 50 e->value = xstrdup(value); in env_add() 52 list_add_tail(&e->node, &env_list); in env_add() 55 static void env_del(struct env *e) in env_del() argument 57 list_del(&e->node); in env_del() 58 free(e->name); in env_del() 59 free(e->value); in env_del() 60 free(e); in env_del() [all …]
|
D | qconf.h | 57 void keyPressEvent(QKeyEvent *e); 58 void mousePressEvent(QMouseEvent *e); 59 void mouseReleaseEvent(QMouseEvent *e); 60 void mouseMoveEvent(QMouseEvent *e); 61 void mouseDoubleClickEvent(QMouseEvent *e); 62 void focusInEvent(QFocusEvent *e); 63 void contextMenuEvent(QContextMenuEvent *e); 263 void closeEvent(QCloseEvent *e);
|
D | symbol.c | 247 struct expr *e; in sym_choice_default() local 261 expr_list_for_each_sym(prop->expr, e, def_sym) in sym_choice_default() 273 struct expr *e; in sym_calc_choice() local 279 expr_list_for_each_sym(prop->expr, e, def_sym) { in sym_calc_choice() 326 struct expr *e; in sym_calc_value() local 450 expr_list_for_each_sym(prop->expr, e, choice_sym) { in sym_calc_value() 514 struct expr *e; in sym_set_tristate_value() local 519 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value() 520 if (e->right.sym->visible != no) in sym_set_tristate_value() 521 e->right.sym->flags |= SYMBOL_DEF_USER; in sym_set_tristate_value() [all …]
|
/scripts/ |
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 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/)
|
D | asn1_compiler.c | 837 struct element *e = calloc(1, sizeof(*e)); in alloc_elem() local 838 if (!e) { in alloc_elem() 842 e->list_next = element_list; in alloc_elem() 843 element_list = e; in alloc_elem() 844 return e; in alloc_elem() 1210 static void dump_element(const struct element *e, int level) in dump_element() argument 1213 const struct type *t = e->type_def; in dump_element() 1214 const char *name = e->name ? e->name->content : "."; in dump_element() 1218 if (e->class == 0 && e->method == 0 && e->tag == 0) in dump_element() 1220 else if (e->class == ASN1_UNIV) in dump_element() [all …]
|
D | extract-cert.c | 47 int e, line; in display_openssl_errors() local 53 while ((e = ERR_get_error_line(&file, &line))) { in display_openssl_errors() 54 ERR_error_string(e, buf); in display_openssl_errors() 128 ENGINE *e; in main() 139 e = ENGINE_by_id("pkcs11"); in main() 140 ERR(!e, "Load PKCS#11 ENGINE"); in main() 141 if (ENGINE_init(e)) in main() 146 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), "Set PKCS#11 PIN"); in main() 147 ENGINE_ctrl_cmd(e, "LOAD_CERT_CTRL", 0, &parms, NULL, 1); in main()
|
D | jobserver-exec | 38 except (OSError, IOError) as e: 39 if e.errno == errno.EWOULDBLOCK: 45 raise e 49 except (KeyError, IndexError, ValueError, OSError, IOError) as e:
|
D | sign-file.c | 90 int e, line; in display_openssl_errors() local 96 while ((e = ERR_get_error_line(&file, &line))) { in display_openssl_errors() 97 ERR_error_string(e, buf); in display_openssl_errors() 151 ENGINE *e; in read_private_key() local 155 e = ENGINE_by_id("pkcs11"); in read_private_key() 156 ERR(!e, "Load PKCS#11 ENGINE"); in read_private_key() 157 if (ENGINE_init(e)) in read_private_key() 162 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), in read_private_key() 164 private_key = ENGINE_load_private_key(e, private_key_name, in read_private_key()
|
D | documentation-file-ref-check | 27 if (! -e ".git") { 72 next if (grep -e, glob("$f")); 141 next if (grep -e, glob("$ref $fulref")); 147 next if (grep -e, glob("$path/$ref $path/../$ref $path/$fulref"));
|
D | diffconfig | 100 e = sys.exc_info()[1] 101 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
|
/scripts/coccinelle/tests/ |
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/misc/ |
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
|
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)
|
D | bugon.cocci | 24 expression e; 27 *if (e) BUG(); 34 expression e; 37 -if (e) BUG(); 38 +BUG_ON(e); 45 expression e; 49 if (e) BUG@p ();
|
D | newline_in_nl_msg.cocci | 16 expression e; 20 \(GENL_SET_ERR_MSG\|NL_SET_ERR_MSG\|NL_SET_ERR_MSG_MOD\)(e,m@p) 31 expression r.e; 35 fname(e,m@p) 43 expression r.e; 46 * fname(e,m)
|
/scripts/coccinelle/free/ |
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);
|
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);
|
D | kfreeaddr.cocci | 15 expression e; 21 * kfree@p(&e->f) 23 * kfree_sensitive@p(&e->f)
|
D | pci_free_consistent.cocci | 15 expression x,y,z,e; 21 ... when != e = id 26 when != e = (T)id
|
/scripts/dtc/ |
D | flattree.c | 45 static void bin_emit_cell(void *e, cell_t val) in bin_emit_cell() argument 47 struct data *dtbuf = e; in bin_emit_cell() 52 static void bin_emit_string(void *e, const char *str, int len) in bin_emit_string() argument 54 struct data *dtbuf = e; in bin_emit_string() 63 static void bin_emit_align(void *e, int a) in bin_emit_align() argument 65 struct data *dtbuf = e; in bin_emit_align() 70 static void bin_emit_data(void *e, struct data d) in bin_emit_data() argument 72 struct data *dtbuf = e; in bin_emit_data() 77 static void bin_emit_beginnode(void *e, struct label *labels) in bin_emit_beginnode() argument 79 bin_emit_cell(e, FDT_BEGIN_NODE); in bin_emit_beginnode() [all …]
|
D | dtc-lexer.l | 155 char *e; variable 159 yylval.integer = strtoull(yytext, &e, 0); 161 if (*e && e[strspn(e, "UL")]) {
|
/scripts/coccinelle/iterators/ |
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 …]
|
/scripts/genksyms/ |
D | lex.l | 145 char *file, *e; 153 e = strchr(file, '\"'); 154 *e = '\0'; 155 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
|