Home
last modified time | relevance | path

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

/scripts/kconfig/
A Dpreprocess.c37 char *value; member
47 e->value = xstrdup(value); in env_add()
56 free(e->value); in env_del()
64 const char *value; in env_expand() local
74 value = getenv(name); in env_expand()
75 if (!value) in env_expand()
82 env_add(name, value); in env_expand()
230 char *value; member
290 free(v->value); in variable_add()
311 v->value = xrealloc(v->value, in variable_add()
[all …]
A Dconfdata.c527 if (*value == 'n') { in kconfig_print_symbol()
540 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
544 kconfig_print_comment(FILE *fp, const char *value, void *arg) in kconfig_print_comment() argument
546 const char *p = value; in kconfig_print_comment()
583 switch (*value) { in header_print_symbol()
598 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X')) in header_print_symbol()
601 CONFIG_, sym->name, prefix, value); in header_print_symbol()
607 CONFIG_, sym->name, value); in header_print_symbol()
616 header_print_comment(FILE *fp, const char *value, void *arg) in header_print_comment() argument
618 const char *p = value; in header_print_comment()
[all …]
A Dmerge_config.sh128 echo Previous value: $PREV_VAL
129 echo New value: $NEW_VAL
A 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()
1016 setShowDebug(configSettings->value("/showDebug", false).toBool()); in ConfigInfoView()
1285 x = configSettings->value("/window x"); in ConfigSearchWindow()
1286 y = configSettings->value("/window y"); in ConfigSearchWindow()
1352 x = configSettings->value("/window x"); in ConfigMainWindow()
[all …]
A Dlkc_proto.h58 void variable_add(const char *name, const char *value,
A Dqconf.h29 bool writeSizes(const QString& key, const QList<int>& value);
/scripts/dtc/libfdt/
A Dlibfdt.h124 bp[0] = value >> 24; in fdt32_st()
125 bp[1] = (value >> 16) & 0xff; in fdt32_st()
126 bp[2] = (value >> 8) & 0xff; in fdt32_st()
127 bp[3] = value & 0xff; in fdt32_st()
134 bp[0] = value >> 56; in fdt64_st()
135 bp[1] = (value >> 48) & 0xff; in fdt64_st()
136 bp[2] = (value >> 40) & 0xff; in fdt64_st()
137 bp[3] = (value >> 32) & 0xff; in fdt64_st()
138 bp[4] = (value >> 24) & 0xff; in fdt64_st()
140 bp[6] = (value >> 8) & 0xff; in fdt64_st()
[all …]
A 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()
A Dfdt_ro.c120 uint32_t value; in fdt_find_max_phandle() local
130 value = fdt_get_phandle(fdt, offset); in fdt_find_max_phandle()
132 if (value > max) in fdt_find_max_phandle()
133 max = value; in fdt_find_max_phandle()
/scripts/
A Dget_maintainer.pl358 my $value = $2;
366 if ((-d $value)) {
693 my $value = $2;
696 $status = $value;
718 my $value = $2;
727 if ((-d $value)) {
736 $value =~ /^https?:/ &&
809 my $value = $2;
827 my $value = $2;
876 my $value = $2;
[all …]
A Dconfig24 --set-val option value
25 Set option to value
A Dspdxcheck.py101 id = tok.value.upper()
133 tok.value = tok.value.strip()
134 val = tok.value.upper()
200 tok = pe.tok.value
A DMakefile.extrawarn74 KBUILD_CFLAGS += $(call cc-disable-warning, unused-value)
A Dcheckpatch.pl5573 my $value = $1;
5574 $value = deparenthesize($value);
5575 if ($value =~ m/^\s*$FuncArg\s*(?:\?|$)/) {
A Dspelling.txt123 alue||value
1758 vaule||value
/scripts/dtc/
A Ddata.c171 struct data data_append_integer(struct data d, uint64_t value, int bits) in data_append_integer() argument
180 value_8 = value; in data_append_integer()
184 value_16 = cpu_to_fdt16(value); in data_append_integer()
188 value_32 = cpu_to_fdt32(value); in data_append_integer()
192 value_64 = cpu_to_fdt64(value); in data_append_integer()
/scripts/dtc/pylibfdt/
A Dsetup.py79 value = m.group('value') or ''
84 makevars[key] += ' ' + value
86 makevars[key] = value
A Dlibfdt.i_shipped85 """Raise an error if the return value is -ve
90 val: Return value from a libfdt function
111 val: Return value from a libfdt function
572 """Set the value of a property
590 """Set the value of a property
608 """Set the value of a property
702 value: Property value as a bytearray
704 def __init__(self, name, value):
705 bytearray.__init__(self, value)
876 string: String value of property
[all …]
/scripts/coccinelle/misc/
A Dbadty.cocci7 //# sizeof argument is not used in constructing the return value. The result
/scripts/kconfig/tests/err_recursive_dep/
A Dexpected_stderr36 Kconfig:49: symbol F1 default value contains F2
/scripts/coccinelle/api/alloc/
A Dalloc_cast.cocci101 msg="WARNING: casting value returned by memory allocation function to (%s *) is useless." % (t)
/scripts/coccinelle/iterators/
A Duse_after_iter.cocci3 /// and not a meaningful structure. Thus this value should not be used after

Completed in 48 milliseconds