Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 45) sorted by relevance

12

/scripts/kconfig/
Dpreprocess.c40 char *value; member
44 static void env_add(const char *name, const char *value) in env_add() argument
50 e->value = xstrdup(value); in env_add()
59 free(e->value); in env_del()
67 const char *value; in env_expand() local
74 return xstrdup(e->value); in env_expand()
77 value = getenv(name); in env_expand()
78 if (!value) in env_expand()
85 env_add(name, value); in env_expand()
87 return xstrdup(value); in env_expand()
[all …]
Dmerge_config.sh141 echo Previous value: $PREV_VAL
142 echo New value: $NEW_VAL
148 echo Previous value: $PREV_VAL
149 echo New value: $NEW_VAL
Dconfdata.c591 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in kconfig_print_symbol() argument
597 if (*value == 'n') { in kconfig_print_symbol()
610 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
614 kconfig_print_comment(FILE *fp, const char *value, void *arg) in kconfig_print_comment() argument
616 const char *p = value; in kconfig_print_comment()
645 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in header_print_symbol() argument
653 switch (*value) { in header_print_symbol()
668 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X')) in header_print_symbol()
671 CONFIG_, sym->name, prefix, value); in header_print_symbol()
677 CONFIG_, sym->name, value); in header_print_symbol()
[all …]
Dqconf.cc48 QStringList entryList = value(key).toStringList(); in readSizes()
65 bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value) in writeSizes() argument
70 for (it = value.begin(); it != value.end(); ++it) in writeSizes()
318 showName = configSettings->value("/showName", false).toBool(); in ConfigList()
319 optMode = (enum optionMode)configSettings->value("/optionMode", 0).toInt(); in ConfigList()
937 setShowDebug(configSettings->value("/showDebug", false).toBool()); in ConfigInfoView()
1259 width = configSettings->value("/window width", parent->width() / 2).toInt(); in ConfigSearchWindow()
1260 height = configSettings->value("/window height", parent->height() / 2).toInt(); in ConfigSearchWindow()
1262 x = configSettings->value("/window x"); in ConfigSearchWindow()
1263 y = configSettings->value("/window y"); in ConfigSearchWindow()
[all …]
/scripts/gdb/linux/
Dutils.py100 value = [0, 0]
103 value[0] = ord(buffer_val[0])
104 value[1] = ord(buffer_val[1])
106 value[0] = buffer_val[0]
107 value[1] = buffer_val[1]
110 return value[0] + (value[1] << 8)
112 return value[1] + (value[0] << 8)
/scripts/
Dexport_report.pl131 my ($module, $value, $symbol, $gpl) = @{$SYMBOL{$sym}};
132 $SYMBOL{ $sym } = [ $module, $value+1, $symbol, $gpl];
158 my ($module, $value, $symbol, $gpl) = @{$list};
159 printf("%-25s\t%-25s\t%-10s\t", $symbol, $module, $value);
182 my ($module, $value, undef, $gpl) = @{$SYMBOL{$symbol}};
183 push (@{$depends{"$module"}}, "$symbol $value");
Dcheck-sysctl-docs37 function trimpunct(value) {
38 while (value ~ /^["&]/) {
42 value = substr(value, 1, length(value) - 1)
44 return value
Dget_maintainer.pl360 my $value = $2;
364 $value =~ s@\.@\\\.@g; ##Convert . to \.
365 $value =~ s/\*/\.\*/g; ##Convert * to .*
366 $value =~ s/\?/\./g; ##Convert ? to .
368 if ((-d $value)) {
369 $value =~ s@([^/])$@$1/@;
372 $keyword_hash{@typevalue} = $value;
374 push(@typevalue, "$type:$value");
695 my $value = $2;
698 $status = $value;
[all …]
Dver_linux76 function printversion(name, value, ofmt) {
77 if (value != "") {
79 printf(ofmt, name, value)
Dleaking_addresses.pl222 my $value = "";
246 $value = option_from_file($option, $file);
247 if ($value ne "") {
256 return $value;
641 my ($cache, $key, $value) = @_;
646 push @{$cache->{$key}}, $value;
Ddiffconfig51 def print_config(op, config, value, new_value): argument
62 print("-%s %s" % (config, value))
66 print(" %s %s -> %s" % (config, value, new_value))
Dconfig24 --set-val option value
25 Set option to value
Dunifdef.c178 static const char *value[MAXSYMS]; /* -Dsym=value */ variable
684 if (value[cursym] == NULL) in parseline()
873 *valp = (value[sym] != NULL); in eval_unary()
888 } else if (value[sym] == NULL) { in eval_unary()
892 *valp = strtol(value[sym], &ep, 0); in eval_unary()
893 if (*ep != '\0' || ep == value[sym]) in eval_unary()
1143 value[symind] ? value[symind] : ""); in findsym()
1170 value[symind] = val+1; in addsym()
1173 value[symind] = "1"; in addsym()
1179 value[symind] = NULL; in addsym()
[all …]
Dspdxcheck.py101 id = tok.value.upper()
133 tok.value = tok.value.strip()
134 val = tok.value.upper()
200 tok = pe.tok.value
/scripts/dtc/
Dfdtput.c59 char *value = NULL; /* holding area for value */ in encode_value() local
85 value = realloc(value, value_size); in encode_value()
86 if (!value) { in encode_value()
93 ptr = value + upto; in encode_value()
114 *valuep = value; in encode_value()
224 char *value; in do_fdtput() local
241 if (encode_value(disp, arg + 2, arg_count - 2, &value, &len) || in do_fdtput()
242 store_key_value(blob, *arg, arg[1], value, len)) in do_fdtput()
Dfdtget.c58 int value; in show_data() local
94 value = size == 4 ? fdt32_to_cpu(*(const uint32_t *)p) : in show_data()
96 printf(fmt, value); in show_data()
195 const void *value = NULL; in show_data_for_item() local
209 value = fdt_getprop(blob, node, property, &len); in show_data_for_item()
210 if (value) { in show_data_for_item()
211 if (show_data(disp, value, len)) in show_data_for_item()
Ddata.c158 struct data data_append_integer(struct data d, uint64_t value, int bits) in data_append_integer() argument
167 value_8 = value; in data_append_integer()
171 value_16 = cpu_to_fdt16(value); in data_append_integer()
175 value_32 = cpu_to_fdt32(value); in data_append_integer()
179 value_64 = cpu_to_fdt64(value); in data_append_integer()
/scripts/dtc/libfdt/
Dlibfdt.h141 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument
145 bp[0] = value >> 24; in fdt32_st()
146 bp[1] = (value >> 16) & 0xff; in fdt32_st()
147 bp[2] = (value >> 8) & 0xff; in fdt32_st()
148 bp[3] = value & 0xff; in fdt32_st()
165 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument
169 bp[0] = value >> 56; in fdt64_st()
170 bp[1] = (value >> 48) & 0xff; in fdt64_st()
171 bp[2] = (value >> 40) & 0xff; in fdt64_st()
172 bp[3] = (value >> 32) & 0xff; in fdt64_st()
[all …]
Dfdt_overlay.c431 const char *value; in overlay_fixup_phandle() local
435 value = fdt_getprop_by_offset(fdto, property, in overlay_fixup_phandle()
437 if (!value) { in overlay_fixup_phandle()
446 const char *fixup_str = value; in overlay_fixup_phandle()
452 fixup_end = memchr(value, '\0', len); in overlay_fixup_phandle()
458 value += fixup_len + 1; in overlay_fixup_phandle()
/scripts/atomic/fallbacks/
Dsub_and_test3 * ${arch}${atomic}_sub_and_test - subtract value from variable and test result
4 * @i: integer value to subtract
Dfetch_add_unless3 * ${arch}${atomic}_fetch_add_unless - add unless the number is already a given value
9 * Returns original value of @v
Dadd_negative4 * @i: integer value to add
Dadd_unless3 * ${arch}${atomic}_add_unless - add unless the number is already a given value
/scripts/gcc-plugins/
Darm_ssp_per_task_plugin.c88 if (!argv[i].value) { in plugin_init()
95 tso = atoi(argv[i].value); in plugin_init()
100 canary_offset = atoi(argv[i].value); in plugin_init()
Dstackleak_plugin.c567 if (!argv[i].value) { in plugin_init()
573 track_frame_size = atoi(argv[i].value); in plugin_init()
576 plugin_name, argv[i].key, argv[i].value); in plugin_init()
580 if (!argv[i].value) { in plugin_init()
586 if (!strcmp(argv[i].value, "x86")) in plugin_init()

12