/scripts/kconfig/ |
D | expr.c | 17 static struct expr *expr_eliminate_yn(struct expr *e); 21 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 22 e->type = E_SYMBOL; in expr_alloc_symbol() 23 e->left.sym = sym; in expr_alloc_symbol() 24 return e; in expr_alloc_symbol() 29 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 30 e->type = type; in expr_alloc_one() 31 e->left.expr = ce; in expr_alloc_one() 32 return e; in expr_alloc_one() 37 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) 302 void expr_free(struct expr *e); 304 tristate expr_calc_value(struct expr *e); 305 struct expr *expr_trans_bool(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(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 | 55 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); 316 void closeEvent(QCloseEvent *e);
|
D | symbol.c | 242 struct expr *e; in sym_choice_default() local 256 expr_list_for_each_sym(prop->expr, e, def_sym) in sym_choice_default() 268 struct expr *e; in sym_calc_choice() local 274 expr_list_for_each_sym(prop->expr, e, def_sym) { in sym_calc_choice() 321 struct expr *e; in sym_calc_value() local 444 expr_list_for_each_sym(prop->expr, e, choice_sym) { in sym_calc_value() 510 struct expr *e; in sym_set_tristate_value() local 515 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value() 516 if (e->right.sym->visible != no) in sym_set_tristate_value() 517 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/ -e s/parisc64/parisc/ \ 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() 122 ENGINE *e; in main() local 133 e = ENGINE_by_id("pkcs11"); in main() 134 ERR(!e, "Load PKCS#11 ENGINE"); in main() 135 if (ENGINE_init(e)) in main() 140 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), "Set PKCS#11 PIN"); in main() 141 ENGINE_ctrl_cmd(e, "LOAD_CERT_CTRL", 0, &parms, NULL, 1); in main()
|
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() 147 ENGINE *e; in read_private_key() local 151 e = ENGINE_by_id("pkcs11"); in read_private_key() 152 ERR(!e, "Load PKCS#11 ENGINE"); in read_private_key() 153 if (ENGINE_init(e)) in read_private_key() 158 ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), in read_private_key() 160 private_key = ENGINE_load_private_key(e, private_key_name, in read_private_key()
|
D | namespace.pl | 225 if (! -e $basename) { 234 if (-e "$source.c" || -e "$source.S") { 239 if (! -e "$source.c" && ! -e "$source.S") {
|
D | diffconfig | 100 e = sys.exc_info()[1] 101 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
|
D | documentation-file-ref-check | 65 next if (grep -e, glob("$f")); 134 next if (grep -e, glob("$ref $fulref")); 140 next if (grep -e, glob("$path/$ref $path/../$ref $path/$fulref"));
|
/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 ();
|
/scripts/coccinelle/free/ |
D | iounmap.cocci | 20 expression e; 26 e = \(ioremap@p1\|ioremap_nocache@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 * kzfree@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/genksyms/ |
D | lex.l | 146 char *file, *e; 154 e = strchr(file, '\"'); 155 *e = '\0'; 156 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
|
D | genksyms.c | 329 void free_list(struct string_list *s, struct string_list *e) in free_list() argument 331 while (s != e) { in free_list() 503 struct string_list **e, **b; in print_list() local 516 b = alloca(elem * sizeof(*e)); in print_list() 517 e = b + elem; in print_list() 518 tmp2 = e - 1; in print_list() 524 while (b != e) { in print_list() 533 struct string_list **e, **b; in expand_and_crc_sym() local 544 b = alloca(elem * sizeof(*e)); in expand_and_crc_sym() 545 e = b + elem; in expand_and_crc_sym() [all …]
|
/scripts/kconfig/tests/ |
D | conftest.py | 232 lambda s, e: getattr(s, attr).find(e) >= 0, 236 return self._read_and_compare(lambda s, e: getattr(s, attr) == e,
|