Home
last modified time | relevance | path

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

/common/eeprom/
A Deeprom_field.c29 const char *value, bool reverse) in __eeprom_field_update_bin() argument
31 int len = strlen(value); in __eeprom_field_update_bin()
52 tmp[k] = value[i]; in __eeprom_field_update_bin()
56 tmp[k] = value[reverse ? i - 1 + k : i + k]; in __eeprom_field_update_bin()
71 char *value, char *delimiter) in __eeprom_field_update_bin_delim() argument
75 const char *tmp = value; in __eeprom_field_update_bin_delim()
89 tok = strtok(value, delimiter); in __eeprom_field_update_bin_delim()
126 return __eeprom_field_update_bin(field, value, false); in eeprom_field_update_bin()
173 return __eeprom_field_update_bin(field, value, true); in eeprom_field_update_bin_rev()
225 if (strlen(value) >= field->size) { in eeprom_field_update_ascii()
[all …]
/common/
A Diotrace.c62 sizeof(value)); in add_record()
72 rec->value = value; in add_record()
92 void iotrace_writel(ulong value, void *ptr) in iotrace_writel() argument
94 add_record(IOT_32 | IOT_WRITE, ptr, value); in iotrace_writel()
95 writel(value, ptr); in iotrace_writel()
108 void iotrace_writew(ulong value, void *ptr) in iotrace_writew() argument
110 add_record(IOT_16 | IOT_WRITE, ptr, value); in iotrace_writew()
111 writew(value, ptr); in iotrace_writew()
124 void iotrace_writeb(ulong value, void *ptr) in iotrace_writeb() argument
126 add_record(IOT_8 | IOT_WRITE, ptr, value); in iotrace_writeb()
[all …]
A Dcli_hush.c270 char *value; member
614 if (!value) { in builtin_export()
619 if (value) { in builtin_export()
1604 if (value)
1605 *value=0;
2172 if (!value) {
2176 *value++ = 0;
2178 if (!*value) {
2190 if(strcmp(cur->value, value)==0) {
2204 cur->value = strdup(value);
[all …]
A Davb_verify.c757 param[0].u.value.a = rollback_index_slot; in read_rollback_index()
765 *out_rollback_index = (u64)param[1].u.value.a << 32 | in read_rollback_index()
766 (u32)param[1].u.value.b; in read_rollback_index()
799 param[0].u.value.a = rollback_index_slot; in write_rollback_index()
801 param[1].u.value.a = (u32)(rollback_index >> 32); in write_rollback_index()
802 param[1].u.value.b = (u32)rollback_index; in write_rollback_index()
836 *out_is_unlocked = !param.u.value.a; in read_is_device_unlocked()
976 const u8 *value) in write_persistent_value() argument
1006 memcpy(shm_buf->addr, value, value_size); in write_persistent_value()
A Dmiiphyutil.c231 unsigned short *value) in miiphy_read() argument
244 *value = (unsigned short)ret; in miiphy_read()
259 unsigned short value) in miiphy_write() argument
265 return bus->write(bus, addr, MDIO_DEVAD_NONE, reg, value); in miiphy_write()
A Dconsole.c32 static int on_console(const char *name, const char *value, enum env_op op, in on_console() argument
54 if (iomux_doenv(console, value)) in on_console()
58 if (console_assign(console, value) < 0) in on_console()
76 static int on_silent(const char *name, const char *value, enum env_op op, in on_silent() argument
87 if (value != NULL) in on_silent()
A Dedid.c262 static void set_entry(struct timing_entry *entry, u32 value) in set_entry() argument
264 entry->min = value; in set_entry()
265 entry->typ = value; in set_entry()
266 entry->max = value; in set_entry()
A Ddlmalloc.c2459 int mALLOPt(int param_number, int value) in mALLOPt() argument
2461 int mALLOPt(param_number, value) int param_number; int value; in mALLOPt()
2467 trim_threshold = value; return 1;
2469 top_pad = value; return 1;
2471 mmap_threshold = value; return 1;
2474 n_mmaps_max = value; return 1;
2476 if (value != 0) return 0; else n_mmaps_max = value; return 1;
A Dscp03.c32 param.u.value.a = provision; in scp03_enable()
A DKconfig124 levels. Setting this to a value above 4 may increase the code size
132 setting the environment variable 'silent' to a non-empty value.
187 (e.g. NAND). This option makes the value of the 'silent'
354 This selects the maximum log level that will be recorded. Any value
376 this to a value above LOG_MAX_LEVEL will be ineffective, since the
402 Show the source file name in log messages by default. This value
408 Show the source line number in log messages by default. This value
414 Show the function name in log messages by default. This value can
422 a larger value if you have lots of long function names, and want
449 This selects the maximum log level that will be recorded. Any value
[all …]
A Dbloblist.c455 static void show_value(const char *prompt, ulong value) in show_value() argument
457 printf("%s:%*s %-5lx ", prompt, 10 - (int)strlen(prompt), "", value); in show_value()
458 print_size(value, "\n"); in show_value()
A Dusb.c223 unsigned short value, unsigned short index, in usb_control_msg() argument
237 setup_packet->value = cpu_to_le16(value); in usb_control_msg()
242 request, requesttype, value, index, size); in usb_control_msg()
A Ddlmalloc.src199 The value returned upon failure of MORECORE.
772 small value allows transition into this mode after the
1554 /* The first value returned from sbrk */
3127 value if it can (i.e., so long as the value is meaningful),
3135 int mALLOPt(int param_number, int value)
3137 int mALLOPt(param_number, value) int param_number; int value;
3143 trim_threshold = value; return 1;
3145 top_pad = value; return 1;
3147 mmap_threshold = value; return 1;
3150 n_mmaps_max = value; return 1;
[all …]
A Dcli_hush_upstream.c11070 char *value = strchr(*e, '=');
11071 if (value) { /* paranoia */
/common/spl/
A DKconfig.vpl43 This is a 32-bit checksum value that can be used to verify images.
106 a number of settings (essentially name/value pairs) which can
228 If this value is zero, it is ignored.
274 its own value.
A DKconfig.tpl9 If this value is zero, it is ignored.
142 own value.
178 This is a 32-bit checksum value that can be used to verify images.
A DKconfig.nxp30 value that ensures that CCSR is not relocated.
A DKconfig47 If this value is zero, it is ignored.
405 however, say N here and then set a different value in CONFIG_SPL_STACK.
425 its own value.
710 a number of settings (essentially name/value pairs) which can
928 Use -1 as a special value to use the first bootable partition.
1077 board code, this value will be used as the actual number of PEBs.

Completed in 65 milliseconds