/scripts/dtc/libfdt/ |
D | libfdt.h | 1193 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_inplace_u32() local 1194 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32() 1228 fdt64_t tmp = cpu_to_fdt64(val); in fdt_setprop_inplace_u64() local 1229 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64() 1305 fdt32_t tmp = cpu_to_fdt32(val); in fdt_property_u32() local 1306 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32() 1310 fdt64_t tmp = cpu_to_fdt64(val); in fdt_property_u64() local 1311 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64() 1466 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_u32() local 1467 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 458 tmp = buf; in fdt_open_into() 460 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into() 462 tmp = (char *)(uintptr_t)fdtend; in fdt_open_into() 463 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into() 467 _fdt_packblocks(fdt, tmp, mem_rsv_size, struct_size); in fdt_open_into() 468 memmove(buf, tmp, newsize); in fdt_open_into()
|
/scripts/ |
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 | Makefile.lib | 179 dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ 309 cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ 310 $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ 313 -d $(depfile).dtc.tmp $(dtc-tmp) ; \ 314 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile) 319 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
|
D | tags.sh | 222 local mode=$1 lang tmp=() r 228 asm) tmp=("${regex_asm[@]}") ;; 229 c) tmp=("${regex_c[@]}") ;; 230 kconfig) tmp=("${regex_kconfig[@]}") ;;
|
D | extract-ikconfig | 51 tmp1=/tmp/ikconfig$$.1 52 tmp2=/tmp/ikconfig$$.2
|
D | link-vmlinux.sh | 66 mv -f built-in.o built-in.o.tmp 67 ${LLVM_AR} rcsT${KBUILD_ARFLAGS} built-in.o $(${AR} t built-in.o.tmp) 68 rm -f built-in.o.tmp
|
D | Kbuild.include | 60 $(filechk_$(1)) < $< > $@.tmp; \ 61 if [ -r $@ ] && cmp -s $@ $@.tmp; then \ 62 rm -f $@.tmp; \ 65 mv -f $@.tmp $@; \ 92 TMP="$(TMPOUT).$$$$.tmp"; \ 325 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\ 327 mv -f $(dot-target).tmp $(dot-target).cmd; 350 > $(dot-target).tmp; \ 352 mv -f $(dot-target).tmp $(dot-target).cmd;
|
D | depmod.sh | 45 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)
|
D | Makefile.build | 507 mv -f $@ $@.tmp; \ 509 $$($(AR) t $@.tmp); \ 510 rm -f $@.tmp
|
/scripts/kconfig/ |
D | expr.c | 255 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 …]
|
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 616 tmp = 2 + strlen(sym_get_string_value(sym)); /* () = 2 */ in build_conf() [all …]
|
D | Makefile | 45 $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config 47 cmp -s .tmp.config .config || \ 49 mv -f .tmp.config .config; \ 53 mv -f .tmp.config .config; \ 56 $(Q)rm -f .tmp.config
|
D | nconf.c | 740 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 | 103 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
|
D | zconf.y | 518 const char *tmp; variable 535 tmp = rootmenu.prompt->text; 538 free((char*)tmp);
|
D | confdata.c | 1140 int tmp = strtol( env, &endp, 10 ); in conf_set_all_new_symbols() local 1141 if( tmp >= 0 && tmp <= 100 ) { in conf_set_all_new_symbols() 1142 p[n++] = tmp; in conf_set_all_new_symbols()
|
D | gconf.c | 1251 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()
|
/scripts/kconfig/lxdialog/ |
D | check-lxdialog.sh | 44 tmp=.lxdialog.tmp 45 trap "rm -f $tmp" 0 1 2 3 15 49 $cc -x c - -o $tmp 2>/dev/null <<'EOF'
|
/scripts/genksyms/ |
D | genksyms.c | 516 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/gcc-plugins/ |
D | randomize_layout_plugin.c | 219 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()
|
D | latent_entropy_plugin.c | 440 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/ |
D | file2alias.c | 328 char *tmp; in do_of_entry_multi() local 342 for (tmp = alias; tmp && *tmp; tmp++) in do_of_entry_multi() 343 if (isspace(*tmp)) in do_of_entry_multi() 344 *tmp = '_'; in do_of_entry_multi() 674 char *tmp; in do_vio_entry() local 682 for (tmp = alias; tmp && *tmp; tmp++) in do_vio_entry() 683 if (isspace (*tmp)) in do_vio_entry() 684 *tmp = '_'; in do_vio_entry()
|
D | modpost.c | 2071 char tmp[SZ]; in buf_printf() local 2076 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf() 2077 buf_write(buf, tmp, len); in buf_printf() 2321 char *tmp; in write_if_changed() local 2335 tmp = NOFAIL(malloc(b->pos)); in write_if_changed() 2336 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed() 2339 if (memcmp(tmp, b->p, b->pos) != 0) in write_if_changed() 2342 free(tmp); in write_if_changed() 2347 free(tmp); in write_if_changed()
|