/scripts/ |
D | nsdeps | 47 sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp 48 offset=$(wc -l ${source_file}.tmp | awk '{print $1;}') 49 cat $source_file | grep MODULE_IMPORT_NS | LANG=C sort -u >> ${source_file}.tmp 50 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp 51 if ! diff -q ${source_file} ${source_file}.tmp; then 52 mv ${source_file}.tmp ${source_file} 54 rm ${source_file}.tmp
|
D | extract-vmlinux | 33 tail -c+$pos "$img" | $3 > $tmp 2> /dev/null 34 check_vmlinux $tmp 48 tmp=$(mktemp /tmp/vmlinux-XXX) 49 trap "rm -f $tmp" 0
|
D | extract-ikconfig | 51 tmp1=/tmp/ikconfig$$.1 52 tmp2=/tmp/ikconfig$$.2
|
D | tags.sh | 227 local mode=$1 lang tmp=() r 233 asm) tmp=("${regex_asm[@]}") ;; 234 c) tmp=("${regex_c[@]}") ;; 235 kconfig) tmp=("${regex_kconfig[@]}") ;;
|
D | Makefile.lib | 233 dtc_cpp_flags = -Wp,-MMD,$(depfile).pre.tmp -nostdinc \ 361 cmd_dtc = $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ 364 -d $(depfile).dtc.tmp $(dtc-tmp) ; \ 365 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile) 386 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
|
D | Makefile.modfinal | 71 -o $(@:.ko=.tmp.ko) $@; \ 72 mv -f $(@:.ko=.tmp.ko) $@; \
|
D | headers_install.sh | 22 TMPFILE=$OUTFILE.tmp
|
D | depmod.sh | 30 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)
|
D | Kbuild.include | 62 trap "rm -f $(dot-target).tmp" EXIT; \ 63 { $(filechk_$(1)); } > $(dot-target).tmp; \ 64 if [ ! -r $@ ] || ! cmp -s $@ $(dot-target).tmp; then \ 66 mv -f $(dot-target).tmp $@; \ 94 TMP=$(TMPOUT)/tmp; \ 95 TMPO=$(TMPOUT)/tmp.o; \
|
D | sphinx-pre-install | 727 my $tmp = qx($python_cmd --version 2>&1); 728 if ($tmp =~ m/(\d+\.)(\d+\.)/) {
|
/scripts/dtc/libfdt/ |
D | libfdt.h | 1292 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_inplace_u32() local 1293 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32() 1327 fdt64_t tmp = cpu_to_fdt64(val); in fdt_setprop_inplace_u64() local 1328 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64() 1442 fdt32_t tmp = cpu_to_fdt32(val); in fdt_property_u32() local 1443 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32() 1447 fdt64_t tmp = cpu_to_fdt64(val); in fdt_property_u64() local 1448 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64() 1653 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_u32() local 1654 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32() [all …]
|
D | fdt_rw.c | 422 char *tmp; in fdt_open_into() local 459 tmp = buf; in fdt_open_into() 461 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into() 463 tmp = (char *)(uintptr_t)fdtend; in fdt_open_into() 464 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into() 468 fdt_packblocks_(fdt, tmp, mem_rsv_size, struct_size); in fdt_open_into() 469 memmove(buf, tmp, newsize); in fdt_open_into()
|
/scripts/kconfig/ |
D | expr.c | 318 struct expr *tmp; in expr_eliminate_yn() local 334 tmp = e->right.expr; in expr_eliminate_yn() 336 free(tmp); in expr_eliminate_yn() 350 tmp = e->left.expr; in expr_eliminate_yn() 352 free(tmp); in expr_eliminate_yn() 363 tmp = e->right.expr; in expr_eliminate_yn() 365 free(tmp); in expr_eliminate_yn() 379 tmp = e->left.expr; in expr_eliminate_yn() 381 free(tmp); in expr_eliminate_yn() 433 struct expr *tmp; in expr_join_or() local [all …]
|
D | mconf.c | 323 struct subtitle_list *pos, *tmp; in set_subtitle() local 325 for (pos = subtitles; pos != NULL; pos = tmp) { in set_subtitle() 326 tmp = pos->next; in set_subtitle() 348 struct subtitle_list *pos, *tmp; in reset_subtitle() local 350 for (pos = subtitles; pos != NULL; pos = tmp) { in reset_subtitle() 351 tmp = pos->next; in reset_subtitle() 442 struct jump_key *pos, *tmp; in search_conf() local 457 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf() 471 int type, tmp, doint = 2; in build_conf() local 615 tmp = 2 + strlen(sym_get_string_value(sym)); /* () = 2 */ in build_conf() [all …]
|
D | preprocess.c | 92 struct env *e, *tmp; in env_write_dep() local 94 list_for_each_entry_safe(e, tmp, &env_list, node) { in env_write_dep() 334 struct variable *v, *tmp; in variable_all_del() local 336 list_for_each_entry_safe(v, tmp, &variable_list, node) in variable_all_del() 348 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local 355 tmp = xstrndup(str, len); in eval_clause() 362 n = strtoul(tmp, &endptr, 10); in eval_clause() 368 prev = p = tmp; in eval_clause() 439 free(tmp); in eval_clause()
|
D | confdata.c | 93 char tmp[PATH_MAX + 1]; in make_parent_dir() local 96 strncpy(tmp, path, sizeof(tmp)); in make_parent_dir() 97 tmp[sizeof(tmp) - 1] = 0; in make_parent_dir() 100 p = strrchr(tmp, '/'); in make_parent_dir() 106 p = tmp; in make_parent_dir() 114 if (!is_dir(tmp) && mkdir(tmp, 0755)) in make_parent_dir() 971 const char *name, *tmp; in conf_touch_deps() local 976 tmp = strrchr(name, '/'); in conf_touch_deps() 977 depfile_prefix_len = tmp ? tmp - name + 1 : 0; in conf_touch_deps() 1219 int tmp = strtol( env, &endp, 10 ); in conf_set_all_new_symbols() local [all …]
|
D | Makefile | 46 $(Q)$(PERL) $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config 48 cmp -s .tmp.config .config || \ 50 mv -f .tmp.config .config; \ 54 mv -f .tmp.config .config; \ 57 $(Q)rm -f .tmp.config
|
D | nconf.c | 741 int type, tmp, doint = 2; in build_conf() local 890 tmp = 2 + strlen(sym_get_string_value(sym)); in build_conf() 893 tmp = indent - tmp + 4; in build_conf() 894 if (tmp < 0) in build_conf() 895 tmp = 0; in build_conf() 896 item_add_str("%*c%s%s", tmp, ' ', in build_conf()
|
D | nconf.gui.c | 224 char tmp[x+10]; in fill_window() local 227 strncpy(tmp, line, min(len, x)); in fill_window() 228 tmp[len] = '\0'; in fill_window() 229 mvwprintw(win, i, 0, "%s", tmp); in fill_window()
|
D | merge_config.sh | 116 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
|
/scripts/genksyms/ |
D | genksyms.c | 504 struct string_list *tmp, **tmp2; in print_list() local 512 tmp = list; in print_list() 513 while ((tmp = tmp->next) != NULL) in print_list() 534 struct string_list *tmp, **tmp2; in expand_and_crc_sym() local 540 tmp = list; in expand_and_crc_sym() 541 while ((tmp = tmp->next) != NULL) in expand_and_crc_sym()
|
/scripts/gcc-plugins/ |
D | randomize_layout_plugin.c | 221 struct partition_group tmp; in performance_shuffle() local 223 tmp = size_group[i]; in performance_shuffle() 225 size_group[randnum] = tmp; in performance_shuffle() 230 tree tmp; in performance_shuffle() local 240 tmp = newtree[i]; in performance_shuffle() 242 newtree[randnum] = tmp; in performance_shuffle() 252 tree tmp; in full_shuffle() local 254 tmp = newtree[i]; in full_shuffle() 256 newtree[randnum] = tmp; in full_shuffle()
|
D | latent_entropy_plugin.c | 446 tree frame_addr, rand_const, tmp, fndecl, udi_frame_addr; in init_local_entropy() local 467 tmp = create_var(long_unsigned_type_node, "temp_latent_entropy"); in init_local_entropy() 472 assign = gimple_build_assign(tmp, latent_entropy_decl); in init_local_entropy() 477 assign = create_assign(BIT_XOR_EXPR, local_entropy, local_entropy, tmp); in init_local_entropy()
|
/scripts/mod/ |
D | modpost.c | 2024 char *tmp; in read_symbols() local 2027 tmp = NOFAIL(strdup(modname)); in read_symbols() 2028 tmp[strlen(tmp) - 2] = '\0'; in read_symbols() 2030 if (strends(tmp, ".lto")) in read_symbols() 2031 tmp[strlen(tmp) - 4] = '\0'; in read_symbols() 2032 mod = new_module(tmp); in read_symbols() 2033 free(tmp); in read_symbols() 2142 char tmp[SZ]; in buf_printf() local 2147 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf() 2148 buf_write(buf, tmp, len); in buf_printf() [all …]
|
D | file2alias.c | 348 char *tmp; in do_of_entry_multi() local 362 for (tmp = alias; tmp && *tmp; tmp++) in do_of_entry_multi() 363 if (isspace(*tmp)) in do_of_entry_multi() 364 *tmp = '_'; in do_of_entry_multi() 697 char *tmp; in do_vio_entry() local 705 for (tmp = alias; tmp && *tmp; tmp++) in do_vio_entry() 706 if (isspace (*tmp)) in do_vio_entry() 707 *tmp = '_'; in do_vio_entry()
|