Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 27) sorted by relevance

12

/scripts/
Dnsdeps42 sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp
43 offset=$(wc -l ${source_file}.tmp | awk '{print $1;}')
44 cat $source_file | grep MODULE_IMPORT_NS | LANG=C sort -u >> ${source_file}.tmp
45 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
46 if ! diff -q ${source_file} ${source_file}.tmp; then
47 mv ${source_file}.tmp ${source_file}
49 rm ${source_file}.tmp
Dextract-vmlinux33 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
Dextract-ikconfig51 tmp1=/tmp/ikconfig$$.1
52 tmp2=/tmp/ikconfig$$.2
Dtags.sh221 local mode=$1 lang tmp=() r
227 asm) tmp=("${regex_asm[@]}") ;;
228 c) tmp=("${regex_c[@]}") ;;
229 kconfig) tmp=("${regex_kconfig[@]}") ;;
DMakefile.lib192 dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \
291 cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \
292 $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \
295 -d $(depfile).dtc.tmp $(dtc-tmp) ; \
296 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
316 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
Dheaders_install.sh22 TMPFILE=$OUTFILE.tmp
Ddepmod.sh27 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)
DKbuild.include60 { $(filechk_$(1)); } > $@.tmp; \
61 if [ -r $@ ] && cmp -s $@ $@.tmp; then \
62 rm -f $@.tmp; \
65 mv -f $@.tmp $@; \
93 TMP="$(TMPOUT).$$$$.tmp"; \
/scripts/dtc/libfdt/
Dlibfdt.h1287 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_inplace_u32() local
1288 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1322 fdt64_t tmp = cpu_to_fdt64(val); in fdt_setprop_inplace_u64() local
1323 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1437 fdt32_t tmp = cpu_to_fdt32(val); in fdt_property_u32() local
1438 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1442 fdt64_t tmp = cpu_to_fdt64(val); in fdt_property_u64() local
1443 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1648 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_u32() local
1649 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
[all …]
Dfdt_rw.c407 char *tmp; in fdt_open_into() local
443 tmp = buf; in fdt_open_into()
445 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into()
447 tmp = (char *)(uintptr_t)fdtend; in fdt_open_into()
448 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into()
452 fdt_packblocks_(fdt, tmp, mem_rsv_size, struct_size); in fdt_open_into()
453 memmove(buf, tmp, newsize); in fdt_open_into()
/scripts/kconfig/
Dexpr.c319 struct expr *tmp; in expr_eliminate_yn() local
335 tmp = e->right.expr; in expr_eliminate_yn()
337 free(tmp); in expr_eliminate_yn()
351 tmp = e->left.expr; in expr_eliminate_yn()
353 free(tmp); in expr_eliminate_yn()
364 tmp = e->right.expr; in expr_eliminate_yn()
366 free(tmp); in expr_eliminate_yn()
380 tmp = e->left.expr; in expr_eliminate_yn()
382 free(tmp); in expr_eliminate_yn()
434 struct expr *tmp; in expr_join_or() local
[all …]
Dmconf.c322 struct subtitle_list *pos, *tmp; in set_subtitle() local
324 for (pos = subtitles; pos != NULL; pos = tmp) { in set_subtitle()
325 tmp = pos->next; in set_subtitle()
347 struct subtitle_list *pos, *tmp; in reset_subtitle() local
349 for (pos = subtitles; pos != NULL; pos = tmp) { in reset_subtitle()
350 tmp = pos->next; in reset_subtitle()
441 struct jump_key *pos, *tmp; in search_conf() local
456 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
470 int type, tmp, doint = 2; in build_conf() local
614 tmp = 2 + strlen(sym_get_string_value(sym)); /* () = 2 */ in build_conf()
[all …]
Dpreprocess.c92 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()
436 free(tmp); in eval_clause()
DMakefile50 $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
52 cmp -s .tmp.config .config || \
54 mv -f .tmp.config .config; \
58 mv -f .tmp.config .config; \
61 $(Q)rm -f .tmp.config
Dconfdata.c93 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()
1255 int tmp = strtol( env, &endp, 10 ); in conf_set_all_new_symbols() local
1256 if( tmp >= 0 && tmp <= 100 ) { in conf_set_all_new_symbols()
1257 p[n++] = tmp; in conf_set_all_new_symbols()
Dnconf.c740 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()
Dmerge_config.sh109 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
Dnconf.gui.c224 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()
Dconf.c530 int tmp = (int)strtol(seed_env, &endp, 0); in main() local
532 seed = tmp; in main()
Dgconf.c1250 GtkTreeIter iter, tmp; in update_tree() local
1285 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1288 gtk_tree_store_remove(tree2, &tmp); in update_tree()
1310 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1313 gtk_tree_store_remove(tree2, &tmp); in update_tree()
/scripts/genksyms/
Dgenksyms.c504 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/
Drandomize_layout_plugin.c219 struct partition_group tmp; in performance_shuffle() local
221 tmp = size_group[i]; in performance_shuffle()
223 size_group[randnum] = tmp; in performance_shuffle()
228 tree tmp; in performance_shuffle() local
235 tmp = newtree[i]; in performance_shuffle()
237 newtree[randnum] = tmp; in performance_shuffle()
247 tree tmp; in full_shuffle() local
249 tmp = newtree[i]; in full_shuffle()
251 newtree[randnum] = tmp; in full_shuffle()
Dlatent_entropy_plugin.c440 tree frame_addr, rand_const, tmp, fndecl, udi_frame_addr; in init_local_entropy() local
461 tmp = create_var(long_unsigned_type_node, "temp_latent_entropy"); in init_local_entropy()
466 assign = gimple_build_assign(tmp, latent_entropy_decl); in init_local_entropy()
471 assign = create_assign(BIT_XOR_EXPR, local_entropy, local_entropy, tmp); in init_local_entropy()
/scripts/mod/
Dfile2alias.c348 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()
Dmodpost.c2139 char tmp[SZ]; in buf_printf() local
2144 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf()
2145 buf_write(buf, tmp, len); in buf_printf()
2401 char *tmp; in write_if_changed() local
2415 tmp = NOFAIL(malloc(b->pos)); in write_if_changed()
2416 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed()
2419 if (memcmp(tmp, b->p, b->pos) != 0) in write_if_changed()
2422 free(tmp); in write_if_changed()
2427 free(tmp); in write_if_changed()

12