/titanic_50/usr/src/cmd/filesync/ |
H A D | base.c | 426 l = strtoul(s, 0, 0); in read_baseline() 467 l = strtoul(s, 0, 0); in read_baseline() 474 l = strtoul(s, 0, 0); in read_baseline() 481 l = strtoul(s, 0, 0); in read_baseline() 495 l = strtoul(s, 0, 0); in read_baseline() 502 l = strtoul(s, 0, 0); in read_baseline() 509 l = strtoul(s, 0, 0); in read_baseline() 516 l = strtoul(s, 0, 0); in read_baseline() 530 l = strtoul(s, 0, 0); in read_baseline() 537 l = strtoul(s, 0, 0); in read_baseline() [all …]
|
/titanic_50/usr/src/cmd/scsi/smp/common/ |
H A D | smp.c | 428 func = strtoul(argv[2], NULL, 0); in smp_validate_args() 547 dp->sdr_phy_identifier = strtoul(argv[3], NULL, 0); in main() 558 rp->sedzr_enable_disable_zoning = strtoul(argv[3], NULL, 0); in main() 565 rp->spcr_phy_identifier = strtoul(argv[3], NULL, 0); in main() 566 rp->spcr_phy_operation = strtoul(argv[4], NULL, 0); in main() 583 pelp->srpelr_phy_identifier = strtoul(argv[3], NULL, 0); in main() 590 rpep->srper_phy_identifier = strtoul(argv[3], NULL, 0); in main() 597 rzmprp->srzmpr_rpt_type = strtoul(argv[3], NULL, 0); in main() 604 rbrp->srbr_broadcast_type = strtoul(argv[3], NULL, 0); in main()
|
/titanic_50/usr/src/lib/libsum/common/ |
H A D | sum-prng.c | 75 sum->mpy = strtoul(t, NiL, 0); in prng_open() 77 sum->add = v ? strtoul(v + 1, NiL, 0) : ~sum->add; in prng_open() 79 sum->init = v ? strtoul(v + 1, NiL, 0) : ~sum->init; in prng_open()
|
H A D | sum-crc.c | 156 polynomial = strtoul(t, NiL, 0); in crc_open() 158 sum->done = v ? strtoul(v + 1, NiL, 0) : ~sum->done; in crc_open() 160 sum->init = v ? strtoul(v + 1, NiL, 0) : ~sum->init; in crc_open() 167 sum->xorsize = strtoul(v + 1, NiL, 0); in crc_open()
|
/titanic_50/usr/src/lib/nsswitch/files/common/ |
H A D | getpwnam.c | 80 id = (uint_t)strtoul(linep, (char **)&end, 10); in hash_pwuid() 148 pw_uid = strtoul(linep, (char **)&end, 10); in check_pwuid() 201 uidl = strtoul(uidp, (char **)&linep, 10); /* grab uid */ in validate_passwd_ids() 207 gidl = strtoul(gidp, (char **)&linep, 10); /* grab gid */ in validate_passwd_ids()
|
H A D | getgrent.c | 79 id = (uint_t)strtoul(linep, (char **)&end, 10); in hash_grgid() 146 gr_gid = strtoul(linep, (char **)&end, 10); in check_grgid() 202 gid = strtoul(gidp, (char **)&linep, 10); /* grab gid */ in validate_group_ids()
|
/titanic_50/usr/src/cmd/picl/plugins/sun4u/lw2plus/fcal_leds/ |
H A D | fc_led_parse.c | 170 dtls->ver_maj = strtoul(*p_str, p_str, 0); in act_version() 175 dtls->ver_min = strtoul(*p_str, p_str, 0); in act_version() 292 dtls->n_disks = strtoul(*p_str, p_str, 0); in act_n_disks() 341 int i = strtoul(*p_str, p_str, 0); in get_assert() 357 int i = strtoul(*p_str, p_str, 0); in get_pnz() 392 int j = strtoul(*p_str, p_str, 0); in get_mask() 401 i = strtoul(*p_str, p_str, 0); in get_mask() 428 int j = strtoul(*p_str, p_str, 0); in act_led_id() 447 i = strtoul(*p_str, p_str, 0); in act_led_id()
|
/titanic_50/usr/src/lib/libast/common/comp/ |
H A D | transition.c | 55 #ifndef strtoul 60 return strtoul(a, b, c); in _ast_strtoul()
|
H A D | strtoul.c | 28 #define S2I_function strtoul
|
/titanic_50/usr/src/cmd/dispadmin/ |
H A D | rtdispadmin.c | 98 res = strtoul(optarg, (char **)NULL, 10); in main() 277 res = strtoul(&tokp[4], (char **)NULL, 10); 288 res = strtoul(tokp, (char **)NULL, 10); 303 res = strtoul(&tokp[1], (char **)NULL, 10); 311 res = strtoul(tokp, (char **)NULL, 10);
|
H A D | iadispadmin.c | 98 res = strtoul(optarg, (char **)NULL, 10); in main() 283 res = strtoul(&tokp[4], (char **)NULL, 10); 294 res = strtoul(tokp, (char **)NULL, 10); 309 res = strtoul(&tokp[1], (char **)NULL, 10); 317 res = strtoul(tokp, (char **)NULL, 10);
|
H A D | tsdispadmin.c | 98 res = strtoul(optarg, (char **)NULL, 10); in main() 279 res = strtoul(&tokp[4], (char **)NULL, 10); 290 res = strtoul(tokp, (char **)NULL, 10); 305 res = strtoul(&tokp[1], (char **)NULL, 10); 313 res = strtoul(tokp, (char **)NULL, 10);
|
/titanic_50/usr/src/lib/libuuid/common/ |
H A D | uuid.c | 584 uuid.time_low = strtoul(in, NULL, 16); in uuid_parse() 585 uuid.time_mid = strtoul(in+9, NULL, 16); in uuid_parse() 586 uuid.time_hi_and_version = strtoul(in+14, NULL, 16); in uuid_parse() 587 clock_seq = strtoul(in+19, NULL, 16); in uuid_parse() 596 uuid.node_addr[i] = strtoul(buf, NULL, 16); in uuid_parse()
|
/titanic_50/usr/src/grub/grub-0.97/grub/ |
H A D | main.c | 180 install_partition = strtoul (optarg, 0, 0); in main() 189 boot_drive = strtoul (optarg, 0, 0); in main()
|
/titanic_50/usr/src/lib/nsswitch/nis/common/ |
H A D | getpwnam.c | 84 uidl = strtoul(uidp, (char **)&linep, 10); /* grab uid */ in validate_passwd_ids() 90 gidl = strtoul(gidp, (char **)&linep, 10); /* grab gid */ in validate_passwd_ids()
|
/titanic_50/usr/src/lib/fm/topo/libtopo/common/ |
H A D | cpu.c | 396 cpuid = strtoul(s, &end, 0); in cpu_str2nvl() 415 index = strtoul(s, &end, 0); in cpu_str2nvl() 426 way = strtoul(s, &end, 0); in cpu_str2nvl() 437 bit = strtoul(s, &end, 0); in cpu_str2nvl() 448 type = strtoul(s, &end, 0); in cpu_str2nvl()
|
/titanic_50/usr/src/cmd/fs.d/smbclnt/chacl/ |
H A D | chacl.c | 91 tl = strtoul(optarg, NULL, 10); in main() 97 tl = strtoul(optarg, NULL, 10); in main()
|
/titanic_50/usr/src/lib/libsmbfs/smb/ |
H A D | rap.c | 84 len *= strtoul(s, &np, 10); in smb_rap_parserqparam() 113 len *= strtoul(s, &np, 10); in smb_rap_parserpparam() 143 len *= strtoul(s, &np, 10); in smb_rap_parserpdata()
|
/titanic_50/usr/src/lib/libc/port/gen/ |
H A D | gethostid.c | 52 hostid = strtoul(name, &end, 10); in gethostid()
|
H A D | strtoumax.c | 57 return ((uint32_t)strtoul(nptr, endptr, base)); in _strtoumax_c89()
|
/titanic_50/usr/src/ucblib/libucb/port/sys/ |
H A D | gethostid.c | 68 hostid = strtoul(name, &end, 10); in gethostid()
|
/titanic_50/usr/src/cmd/sendmail/libsm/ |
H A D | t-sem.c | 339 gid = (gid_t)strtoul(optarg, 0, 0); 347 uid = (uid_t)strtoul(optarg, 0, 0);
|
/titanic_50/usr/src/cmd/cmd-inet/sbin/dhcpinfo/ |
H A D | dhcpinfo.c | 83 max_lines = strtoul(optarg, NULL, 0); in main() 131 optnum.code = strtoul(argv[optind], 0, 0); in main()
|
/titanic_50/usr/src/lib/libumem/common/ |
H A D | linktest_stand.c | 52 void strtoul(void) {} in strtoul() function
|
/titanic_50/usr/src/lib/libfakekernel/common/ |
H A D | kmisc.c | 61 *res = strtoul(str, endp, base); in ddi_strtoul()
|