Home
last modified time | relevance | path

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

12

/scripts/dtc/libfdt/
Dlibfdt.h1176 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_inplace_u32() local
1177 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1211 fdt64_t tmp = cpu_to_fdt64(val); in fdt_setprop_inplace_u64() local
1212 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1288 fdt32_t tmp = cpu_to_fdt32(val); in fdt_property_u32() local
1289 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1293 fdt64_t tmp = cpu_to_fdt64(val); in fdt_property_u64() local
1294 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1449 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_u32() local
1450 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
[all …]
Dfdt_rw.c421 char *tmp; in fdt_open_into() local
457 tmp = buf; in fdt_open_into()
459 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into()
461 tmp = (char *)(uintptr_t)fdtend; in fdt_open_into()
462 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into()
466 _fdt_packblocks(fdt, tmp, mem_rsv_size, struct_size); in fdt_open_into()
467 memmove(buf, tmp, newsize); in fdt_open_into()
/scripts/
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
DMakefile.lib168 dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \
296 cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \
297 $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \
300 -d $(depfile).dtc.tmp $(dtc-tmp) ; \
301 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
306 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
Dextract-ikconfig51 tmp1=/tmp/ikconfig$$.1
52 tmp2=/tmp/ikconfig$$.2
DKbuild.include59 $(filechk_$(1)) < $< > $@.tmp; \
60 if [ -r $@ ] && cmp -s $@ $@.tmp; then \
61 rm -f $@.tmp; \
64 mv -f $@.tmp $@; \
91 TMP=$(TMPOUT)/tmp; \
92 TMPO=$(TMPOUT)/tmp.o; \
275 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\
277 mv -f $(dot-target).tmp $(dot-target).cmd)
Ddepmod.sh46 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)
DMakefile.build264 $(dot-target).tmp; \
266 mv -f $(dot-target).tmp $(dot-target).cmd
272 $(dot-target).tmp; \
275 mv -f $(dot-target).tmp $(dot-target).cmd
Danalyze_suspend.py432 tmp = dict()
435 tmp[dev['start']] = devname
436 for t in sorted(tmp):
437 slist.append(tmp[t])
/scripts/kconfig/
Dexpr.c255 struct expr *tmp; in expr_eliminate_yn() local
271 tmp = e->right.expr; in expr_eliminate_yn()
273 free(tmp); in expr_eliminate_yn()
287 tmp = e->left.expr; in expr_eliminate_yn()
289 free(tmp); in expr_eliminate_yn()
300 tmp = e->right.expr; in expr_eliminate_yn()
302 free(tmp); in expr_eliminate_yn()
316 tmp = e->left.expr; in expr_eliminate_yn()
318 free(tmp); in expr_eliminate_yn()
370 struct expr *tmp; in expr_join_or() local
[all …]
Dmconf.c323 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
616 tmp = 2 + strlen(sym_get_string_value(sym)); /* () = 2 */ in build_conf()
[all …]
DMakefile42 $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
44 cmp -s .tmp.config .config || \
46 mv -f .tmp.config .config; \
50 mv -f .tmp.config .config; \
53 $(Q)rm -f .tmp.config
Dnconf.c738 int type, tmp, doint = 2; in build_conf() local
888 tmp = 2 + strlen(sym_get_string_value(sym)); in build_conf()
891 tmp = indent - tmp + 4; in build_conf()
892 if (tmp < 0) in build_conf()
893 tmp = 0; in build_conf()
894 item_add_str("%*c%s%s", tmp, ' ', in build_conf()
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()
Dmerge_config.sh103 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
Dzconf.y511 const char *tmp; variable
528 tmp = rootmenu.prompt->text;
531 free((char*)tmp);
Dconfdata.c1138 int tmp = strtol( env, &endp, 10 ); in conf_set_all_new_symbols() local
1139 if( tmp >= 0 && tmp <= 100 ) { in conf_set_all_new_symbols()
1140 p[n++] = tmp; in conf_set_all_new_symbols()
Dgconf.c1251 GtkTreeIter iter, tmp; in update_tree() local
1286 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1289 gtk_tree_store_remove(tree2, &tmp); in update_tree()
1311 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1314 gtk_tree_store_remove(tree2, &tmp); in update_tree()
Dconf.c534 int tmp = (int)strtol(seed_env, &endp, 0); in main() local
536 seed = tmp; in main()
Dsymbol.c1013 void *tmp; in sym_re_search() local
1015 tmp = realloc(sym_match_arr, size * sizeof(struct sym_match)); in sym_re_search()
1016 if (!tmp) in sym_re_search()
1018 sym_match_arr = tmp; in sym_re_search()
/scripts/kconfig/lxdialog/
Dcheck-lxdialog.sh43 tmp=.lxdialog.tmp
44 trap "rm -f $tmp" 0 1 2 3 15
48 $cc -x c - -o $tmp 2>/dev/null <<'EOF'
/scripts/genksyms/
Dgenksyms.c516 struct string_list *tmp, **tmp2; in print_list() local
524 tmp = list; in print_list()
525 while ((tmp = tmp->next) != NULL) in print_list()
546 struct string_list *tmp, **tmp2; in expand_and_crc_sym() local
552 tmp = list; in expand_and_crc_sym()
553 while ((tmp = tmp->next) != NULL) in expand_and_crc_sym()
/scripts/mod/
Dfile2alias.c631 char *tmp; in do_of_entry() local
644 for (tmp = alias; tmp && *tmp; tmp++) in do_of_entry()
645 if (isspace (*tmp)) in do_of_entry()
646 *tmp = '_'; in do_of_entry()
655 char *tmp; in do_vio_entry() local
663 for (tmp = alias; tmp && *tmp; tmp++) in do_vio_entry()
664 if (isspace (*tmp)) in do_vio_entry()
665 *tmp = '_'; in do_vio_entry()
Dmodpost.c2035 char tmp[SZ]; in buf_printf() local
2040 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf()
2041 buf_write(buf, tmp, len); in buf_printf()
2272 char *tmp; in write_if_changed() local
2286 tmp = NOFAIL(malloc(b->pos)); in write_if_changed()
2287 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed()
2290 if (memcmp(tmp, b->p, b->pos) != 0) in write_if_changed()
2293 free(tmp); in write_if_changed()
2298 free(tmp); in write_if_changed()
/scripts/package/
Dbuilddeb420 rm -rf debian/*tmp debian/files

12