HomeSort by relevance Sort by last modified time
    Searched refs:simple_strtol (Results 1 - 25 of 41) sorted by null

1 2

  /external/u-boot/cmd/
test.c 116 expr = simple_strtol(ap[0], NULL, 10) ==
117 simple_strtol(ap[2], NULL, 10);
120 expr = simple_strtol(ap[0], NULL, 10) !=
121 simple_strtol(ap[2], NULL, 10);
124 expr = simple_strtol(ap[0], NULL, 10) <
125 simple_strtol(ap[2], NULL, 10);
128 expr = simple_strtol(ap[0], NULL, 10) <=
129 simple_strtol(ap[2], NULL, 10);
132 expr = simple_strtol(ap[0], NULL, 10) >
133 simple_strtol(ap[2], NULL, 10)
    [all...]
wol.c 22 wol_set_timeout(simple_strtol(argv[1], NULL, 10) * 1000);
yaffs2.c 49 cmd_yaffs_tracemask(1, simple_strtol(argv[1], NULL, 16));
79 mtd_dev = simple_strtol(argv[2], NULL, 16);
80 start_block = simple_strtol(argv[3], NULL, 16);
81 end_block = simple_strtol(argv[4], NULL, 16);
adc.c 76 ret = adc_channel_single_shot(argv[1], simple_strtol(argv[2], NULL, 0),
log.c 18 gd->default_log_level = simple_strtol(argv[1], NULL, 10);
mdio.c 28 *plo = simple_strtol(input, &end, 16);
33 *phi = simple_strtol(end, NULL, 16);
net.c 360 net_ntp_time_offset = simple_strtol(toff, NULL, 10);
load.c 60 offset = simple_strtol(argv[1], NULL, 16);
83 offset = simple_strtol(argv[1], NULL, 16);
  /external/u-boot/common/
bootretry.c 28 retry_time = (int)simple_strtol(s, NULL, 10);
splash.c 71 *x = simple_strtol(s, NULL, 0);
78 *y = simple_strtol(s + 1, NULL, 0);
autoboot.c 298 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
  /external/u-boot/arch/arm/mach-keystone/
keystone.c 51 ks2_debug = simple_strtol(env, NULL, 0);
  /external/u-boot/include/
_exports.h 40 EXPORT_FUNC(simple_strtol, long, simple_strtol,
exports.h 32 long simple_strtol(const char *cp, char **endp, unsigned int base);
vsprintf.h 43 long simple_strtol(const char *cp, char **endp, unsigned int base);
  /external/u-boot/board/ti/ks2_evm/
board.c 78 res = simple_strtol(env, NULL, 0);
154 lpae = env && simple_strtol(env, NULL, 0);
156 unitrd_fixup = env && simple_strtol(env, NULL, 0);
254 lpae = env && simple_strtol(env, NULL, 0);
  /external/u-boot/arch/sh/lib/
bootm.c 47 val = simple_strtol(p, NULL, base);
  /external/u-boot/board/compulab/common/
eeprom.c 238 int num = simple_strtol(tok, &endptr, 0);
246 int remainder = simple_strtol(tok, &endptr, 0);
356 unsigned char day = (unsigned char)simple_strtol(tok1, &endptr, 0);
367 unsigned int year = simple_strtol(tok3, &endptr, 0);
  /external/u-boot/lib/
strto.c 77 long simple_strtol(const char *cp, char **endp, unsigned int base) function
  /external/u-boot/board/work-microwave/work_92105/
work_92105_display.c 327 hd44780_instruction(simple_strtol(argv[2], NULL, 0));
329 hd44780_write_char(simple_strtol(argv[2], NULL, 0));
  /external/u-boot/net/
tftp.c 711 tftp_block_size_option = simple_strtol(ep, NULL, 10);
715 timeout_ms = simple_strtol(ep, NULL, 10);
725 tftp_timeout_count_max = simple_strtol(ep, NULL, 10);
829 tftp_remote_port = simple_strtol(ep, NULL, 10);
832 tftp_our_port = simple_strtol(ep, NULL, 10);
  /external/u-boot/board/gateworks/gw_ventana/
eeprom.c 210 if (simple_strtol(argv[2], NULL, 10)) {
  /external/u-boot/cmd/ti/
ddr3.c 169 ecc_test = simple_strtol(env, NULL, 0);
  /external/u-boot/arch/powerpc/cpu/mpc8xx/
immap.c 200 pin = simple_strtol(argv[2], NULL, 10);
  /external/u-boot/board/nokia/rx51/
rx51.c 210 return simple_strtol(hw_build_ptr, NULL, 16);

Completed in 1016 milliseconds

1 2