Home
last modified time | relevance | path

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

/scripts/
A Dbuild_OID_registry61 my $tmp = ($c == 0) ? 0 : int(log($c)/log(2));
62 $tmp = int($tmp / 7);
63 $size += $tmp;
101 my $tmp = ($c == 0) ? 0 : int(log($c)/log(2));
102 $tmp = int($tmp / 7);
104 for (; $tmp > 0; $tmp--) {
105 push @octets, (($c >> $tmp * 7) & 0x7f) | 0x80;
A DMakefile.autoconf73 $(CPP) $(c_flags) $2 -DDO_DEPS_ONLY -dM include/config.h > $@.tmp && { \
74 grep 'define CONFIG_' $@.tmp | \
76 rm $@.tmp; \
78 rm $@.tmp; false; \
A Dmailmapper94 tmp, mail = line.split('<') variable
96 _, name = tmp.rstrip().split(None, 1)
A Dbuild-efi.sh21 bzimage_fname=/tmp/kernel/arch/x86/boot/bzImage
63 ubdir=/tmp/b/
A DKbuild.include66 $(filechk_$(1)) < $< > $@.tmp; \
67 if [ -r $@ ] && cmp -s $@ $@.tmp; then \
68 rm -f $@.tmp; \
71 mv -f $@.tmp $@; \
99 TMP="$(TMPOUT).$$$$.tmp"; \
A DMakefile.lib401 (echo "Check $(shell pwd)/$(pre-tmp) for errors" && false) \
403 sed "s:$(pre-tmp):$(<):" $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
A Dcheckpatch.pl4661 my $tmp = trim($1);
4663 … "type '$tmp' should be specified in [[un]signed] [short|int|long|long long] order\n" . $herecurr);
/scripts/dtc/libfdt/
A Dlibfdt.h1256 fdt32_t tmp = cpu_to_fdt32(val); in fdt_setprop_inplace_u32() local
1257 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1291 fdt64_t tmp = cpu_to_fdt64(val); in fdt_setprop_inplace_u64() local
1292 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1406 fdt32_t tmp = cpu_to_fdt32(val); in fdt_property_u32() local
1407 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1412 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1618 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1653 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1789 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
[all …]
A Dfdt_rw.c423 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/
A Dexpr.c436 if (tmp->type != E_EQUAL && tmp->type != E_UNEQUAL && tmp->type != E_SYMBOL) in expr_join_or()
500 if (tmp->type != E_EQUAL && tmp->type != E_UNEQUAL && tmp->type != E_SYMBOL) in expr_join_and()
622 if (tmp) { in expr_eliminate_dups1()
625 e2 = tmp; in expr_eliminate_dups1()
631 if (tmp) { in expr_eliminate_dups1()
634 e2 = tmp; in expr_eliminate_dups1()
759 e = tmp; in expr_transform()
767 e = tmp; in expr_transform()
775 e = tmp; in expr_transform()
783 e = tmp; in expr_transform()
[all …]
A 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
470 int type, tmp, doint = 2; in build_conf() local
616 tmp = indent - tmp + 4; in build_conf()
617 if (tmp < 0) in build_conf()
[all …]
A Dpreprocess.c89 struct env *e, *tmp; in env_write_dep() local
91 list_for_each_entry_safe(e, tmp, &env_list, node) { in env_write_dep()
331 struct variable *v, *tmp; in variable_all_del() local
333 list_for_each_entry_safe(v, tmp, &variable_list, node) in variable_all_del()
345 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local
352 tmp = xstrndup(str, len); in eval_clause()
359 n = strtoul(tmp, &endptr, 10); in eval_clause()
365 prev = p = tmp; in eval_clause()
433 free(tmp); in eval_clause()
A DMakefile52 $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
54 cmp -s .tmp.config .config || \
56 mv -f .tmp.config .config; \
60 mv -f .tmp.config .config; \
63 $(Q)rm -f .tmp.config
A Dconfdata.c45 char tmp[PATH_MAX + 1]; in make_parent_dir() local
48 strncpy(tmp, path, sizeof(tmp)); in make_parent_dir()
49 tmp[sizeof(tmp) - 1] = 0; in make_parent_dir()
52 p = strrchr(tmp, '/'); in make_parent_dir()
58 p = tmp; in make_parent_dir()
66 if (!is_dir(tmp) && mkdir(tmp, 0755)) in make_parent_dir()
1208 int tmp = strtol( env, &endp, 10 ); in conf_set_all_new_symbols() local
1209 if( tmp >= 0 && tmp <= 100 ) { in conf_set_all_new_symbols()
1210 p[n++] = tmp; in conf_set_all_new_symbols()
A 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()
A Dmerge_config.sh108 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
A Dnconf.gui.c223 char tmp[x+10]; in fill_window() local
226 strncpy(tmp, line, min(len, x)); in fill_window()
227 tmp[len] = '\0'; in fill_window()
228 mvwprintw(win, i, 0, "%s", tmp); in fill_window()
A Dconf.c531 int tmp = (int)strtol(seed_env, &endp, 0); in main() local
533 seed = tmp; in main()
A Dgconf.c1215 GtkTreeIter iter, tmp; in update_tree() local
1250 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1253 gtk_tree_store_remove(tree2, &tmp); in update_tree()
1275 memcpy(&tmp, child2, sizeof(GtkTreeIter)); in update_tree()
1278 gtk_tree_store_remove(tree2, &tmp); in update_tree()
A Dsymbol.c972 void *tmp; in sym_re_search() local
974 tmp = realloc(sym_match_arr, size * sizeof(struct sym_match)); in sym_re_search()
975 if (!tmp) in sym_re_search()
977 sym_match_arr = tmp; in sym_re_search()

Completed in 57 milliseconds