Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 43) 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.sh134 echo Previous value: $PREV_VAL
135 echo New value: $NEW_VAL
141 echo Previous value: $PREV_VAL
142 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.cc62 QStringList entryList = value(key).toStringList(); in readSizes()
79 bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value) in writeSizes() argument
84 for (it = value.begin(); it != value.end(); ++it) in writeSizes()
328 showName = configSettings->value("/showName", false).toBool(); in ConfigList()
329 showRange = configSettings->value("/showRange", false).toBool(); in ConfigList()
330 showData = configSettings->value("/showData", false).toBool(); in ConfigList()
331 optMode = (enum optionMode)configSettings->value("/optionMode", 0).toInt(); in ConfigList()
1016 setShowDebug(configSettings->value("/showDebug", false).toBool()); in ConfigInfoView()
1282 width = configSettings->value("/window width", parent->width() / 2).toInt(); in ConfigSearchWindow()
1283 height = configSettings->value("/window height", parent->height() / 2).toInt(); in ConfigSearchWindow()
[all …]
/scripts/gdb/linux/
Dutils.py97 value = [0, 0]
100 value[0] = ord(buffer_val[0])
101 value[1] = ord(buffer_val[1])
103 value[0] = buffer_val[0]
104 value[1] = buffer_val[1]
107 return value[0] + (value[1] << 8)
109 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");
Dget_maintainer.pl351 my $value = $2;
355 $value =~ s@\.@\\\.@g; ##Convert . to \.
356 $value =~ s/\*/\.\*/g; ##Convert * to .*
357 $value =~ s/\?/\./g; ##Convert ? to .
359 if ((-d $value)) {
360 $value =~ s@([^/])$@$1/@;
363 $keyword_hash{@typevalue} = $value;
365 push(@typevalue, "$type:$value");
673 my $value = $2;
676 $status = $value;
[all …]
Dver_linux84 function printversion(name, value, ofmt) {
85 if (value != "") {
87 printf(ofmt, name, value)
Dleaking_addresses.pl222 my $value = "";
246 $value = option_from_file($option, $file);
247 if ($value ne "") {
256 return $value;
640 my ($cache, $key, $value) = @_;
645 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))
Dconfig21 --set-val option value
22 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()
197 tok = pe.tok.value
Dsubarch.include4 # then ARCH is assigned, getting whatever value it gets normally, and
/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.h137 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument
141 bp[0] = value >> 24; in fdt32_st()
142 bp[1] = (value >> 16) & 0xff; in fdt32_st()
143 bp[2] = (value >> 8) & 0xff; in fdt32_st()
144 bp[3] = value & 0xff; in fdt32_st()
161 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument
165 bp[0] = value >> 56; in fdt64_st()
166 bp[1] = (value >> 48) & 0xff; in fdt64_st()
167 bp[2] = (value >> 40) & 0xff; in fdt64_st()
168 bp[3] = (value >> 32) & 0xff; in fdt64_st()
[all …]
Dfdt_overlay.c430 const char *value; in overlay_fixup_phandle() local
434 value = fdt_getprop_by_offset(fdto, property, in overlay_fixup_phandle()
436 if (!value) { in overlay_fixup_phandle()
445 const char *fixup_str = value; in overlay_fixup_phandle()
451 fixup_end = memchr(value, '\0', len); in overlay_fixup_phandle()
457 value += fixup_len + 1; in overlay_fixup_phandle()
/scripts/atomic/fallbacks/
Dsub_and_test3 * ${atomic}_sub_and_test - subtract value from variable and test result
4 * @i: integer value to subtract
Dfetch_add_unless3 * ${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 * ${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.c384 if (!argv[i].value) { in plugin_init()
390 track_frame_size = atoi(argv[i].value); in plugin_init()
393 plugin_name, argv[i].key, argv[i].value); in plugin_init()

12