Searched refs:strtol (Results 1 - 25 of 77) sorted by relevance

1234

/haiku/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcstol.c23 #include <stdlib/strtol.c>
/haiku/src/system/libroot/posix/stdlib/
H A Datoi.c16 return (int) strtol(num, NULL, 10);
30 return strtol(num, NULL, 10);
H A Dstrtol.c51 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) function
161 return strtol(number, _end, base);
/haiku/src/add-ons/kernel/drivers/audio/sb16/
H A Ddriver.c26 sb16->port = strtol(port, NULL, 16);
27 sb16->irq = strtol(irq, NULL, 16);
28 sb16->dma8 = strtol(dma8, NULL, 16);
29 sb16->dma16 = strtol(dma16, NULL, 16);
30 sb16->midiport = strtol(midiport, NULL, 16);
/haiku/src/bin/pkgman/
H A DCommonOptions.cpp33 fDebugLevel = strtol(optarg, &end, 0);
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c66 # define strtol __wcstoull_l macro
68 # define strtol __wcstoul_l macro
72 # define strtol __strtoull_l macro
74 # define strtol __strtoul_l macro
80 # define strtol __wcstoll_l macro
82 # define strtol __wcstol_l macro
86 # define strtol __strtoll_l macro
88 # define strtol __strtol_l macro
96 # define strtol wcstoull macro
98 # define strtol wcstou macro
102 # define strtol macro
104 # define strtol macro
110 # define strtol macro
112 # define strtol macro
116 # define strtol macro
[all...]
H A Dstdlib.h177 extern long int strtol (__const char *__restrict __nptr,
315 strtol (__const char *__restrict __nptr, char **__restrict __endptr,
384 return (int) strtol (__nptr, (char **) NULL, 10);
389 return strtol (__nptr, (char **) NULL, 10);
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliThreadCommand.cpp45 long threadID = strtol(argv[1], &endPointer, 0);
H A DCliStackFrameCommand.cpp53 int32 frameNumber = strtol(argv[1], &endPointer, 0);
H A DCliStopCommand.cpp50 long threadID = strtol(argv[1], &endPointer, 0);
H A DCliDumpMemoryCommand.cpp84 num = strtol(argv[2], &remainder, 0);
H A DCliPrintVariableCommand.cpp62 depth = strtol(argv[i + 1], &endPointer, 0);
/haiku/src/bin/screenmode/
H A Dscreenmode.cpp181 height = strtol(argv[optind + 1], NULL, 0);
189 depth = strtol(argv[depthIndex], NULL, 0);
197 mode.timing.pixel_clock = strtol(argv[optind], NULL, 0) * 1000;
198 mode.timing.h_display = strtol(argv[optind + 1], NULL, 0);
199 mode.timing.h_sync_start = strtol(argv[optind + 2], NULL, 0);
200 mode.timing.h_sync_end = strtol(argv[optind + 3], NULL, 0);
201 mode.timing.h_total = strtol(argv[optind + 4], NULL, 0);
202 mode.timing.v_display = strtol(argv[optind + 5], NULL, 0);
203 mode.timing.v_sync_start = strtol(argv[optind + 6], NULL, 0);
204 mode.timing.v_sync_end = strtol(arg
[all...]
/haiku/src/bin/
H A Drelease.c45 count = strtol(argv[i], NULL, 10);
49 semid = strtol(argv[i], NULL, 10);
H A Dramdisk.cpp260 long long id = strtol(idString, &end, 0);
324 long long id = strtol(idString, &end, 0);
399 long long id = strtol(idString, &end, 0);
H A Dwatch.c123 interval = strtol(optarg, &str, 10);
H A Ddiskimage.cpp123 partition_id id = strtol(fileNameOrID, &numberEnd, 0);
/haiku/src/tools/fs_shell/
H A Dfs_shell_command_unix.cpp55 *result = strtol(buffer, &end, 10);
/haiku/src/tools/mbrtool/
H A Dmbrtool.cpp174 partType = (int)strtol(argv[index], NULL, 0);
176 partStartOffset = (int64_t)strtol(argv[index], NULL, 10);
179 partLength = (int64_t)strtol(argv[index], NULL, 10);
/haiku/src/system/kernel/arch/x86/
H A Darch_debug_console.cpp463 int32 number = strtol(value, NULL, 0);
478 int32 number = strtol(value, NULL, 0);
/haiku/src/bin/acpi_call/
H A Dacpi_call.cpp160 args[i].Integer.Value = strtol(optarg, NULL, 10);
229 dst->Buffer.Pointer[i] = strtol(tmp, NULL, 16);
/haiku/src/tests/system/kernel/scheduler/
H A Dmain.cpp363 runTime *= strtol(optarg, 0, NULL);
370 cpuCount = strtol(optarg, 0, NULL);
/haiku/src/bin/fwcontrol/
H A Dfwcontrol.c148 node = strtol(nodestr, &endptr, 0);
819 priority_budget = strtol(optarg, NULL, 0);
831 if (strtol(crom_string, NULL, 0) < 0
832 || strtol(crom_string, NULL, 0) > MAX_BOARDS)
851 set_root_node = strtol(optarg, NULL, 0);
859 set_gap_count = strtol(optarg, NULL, 0);
920 current_board = strtol(optarg, NULL, 0);
/haiku/src/bin/multiuser/
H A Duseradd.cpp147 gid = strtol(group, &end, 0);
/haiku/src/servers/syslog_daemon/
H A Dsyslog_output.cpp220 int maxSize = strtol(param, NULL, 0);

Completed in 250 milliseconds

1234