Searched refs:atoi (Results 1 - 25 of 160) sorted by relevance

1234567

/haiku/src/bin/
H A Dprio.c30 th = atoi(argv[1]);
31 prio = atoi(argv[2]);
H A Dcatarea.c14 area = atoi(argv[1]);
H A Dmessage.cpp35 int index = argc > 2 ? atoi(argv[2]) : 0;
H A Dlistsem.c106 sem_id id = atoi(argv[i + 1]);
118 team = atoi(argv[i]);
/haiku/src/tests/servers/input/comm/
H A Darea.c7 sem_id cursorSem = atoi(args[2]);
8 area_id appArea = atoi(args[1]);
H A Dport.cpp8 sem_id portSem = atoi(args[2]);
9 port_id port = atoi(args[1]);
/haiku/src/system/libroot/posix/stdlib/
H A Datoi.c14 atoi(const char* num) function
/haiku/src/tests/system/benchmarks/
H A Dexecbench.c23 iter = atoi(argv[1]);
31 iter = atoi(argv[2]);
45 count = atoi(argv[4]);
H A Dforkbench.c35 nforks = atoi(argv[1]);
40 brksize = atoi(argv[2]);
/haiku/src/apps/devices/
H A DDevicePCI.cpp59 fClassBaseId = atoi(fAttributeMap[B_DEVICE_TYPE].String());
60 fClassSubId = atoi(fAttributeMap[B_DEVICE_SUB_TYPE].String());
61 fClassApiId = atoi(fAttributeMap[B_DEVICE_INTERFACE].String());
62 fVendorId = atoi(fAttributeMap[B_DEVICE_VENDOR_ID].String());
63 fDeviceId = atoi(fAttributeMap[B_DEVICE_ID].String());
H A DDeviceUSB.cpp54 fClassBaseId = atoi(fAttributeMap[USB_DEVICE_CLASS].String());
55 fClassSubId = atoi(fAttributeMap[USB_DEVICE_SUBCLASS].String());
56 fClassProtoId = atoi(fAttributeMap[USB_DEVICE_PROTOCOL].String());
57 fVendorId = atoi(fAttributeMap[B_DEVICE_VENDOR_ID].String());
58 fDeviceId = atoi(fAttributeMap[B_DEVICE_ID].String());
H A DDeviceSCSI.cpp65 uint32 nodeTypeID = atoi(GetAttribute("scsi/type").fValue);
/haiku/src/tests/system/kernel/
H A Dfibo_exec.cpp36 num = atoi(argv[1]);
40 num = atoi(argv[2]);
H A Dfibo_load_image.cpp34 num = atoi(argv[1]);
38 num = atoi(argv[2]);
/haiku/src/tests/system/network/
H A Dipv46_client.cpp31 switch (atoi(argv[2])) {
43 switch (atoi(argv[3])) {
H A Dudp_client.c57 serverAddr.sin_port = htons(atoi(argv[2]));
66 clientAddr.sin_port = htons(atoi(argv[3]));
H A Dudp_echo.c154 serverAddr.sin_port = htons(atoi(argv[3]));
157 bindPort = atoi(argv[4]);
172 serverAddr.sin_port = htons(atoi(argv[2]));
179 bindPort = atoi(argv[5]);
186 bindPort = atoi(argv[2]);
/haiku/src/tests/system/network/ipv6/
H A Dtcp_udp_client.cpp43 switch (atoi(argv[2])) {
55 switch (atoi(argv[3])) {
/haiku/src/kits/device/
H A DJoystickTweaker.cpp195 info->module_info.num_axes = atoi(str.String());
198 info->module_info.num_hats = atoi(str.String());
201 info->module_info.num_buttons = atoi(str.String());
204 info->module_info.num_sticks = atoi(str.String());
/haiku/src/tests/apps/delay_shutdown/
H A DDelayShutdown.cpp35 fDelay = atoi(argv[++index]);
/haiku/src/tests/system/network/icmp/
H A Dtcp_unreachable.cpp33 serverAddr.sin_port = htons(atoi(argv[2]));
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPELink.cpp71 m_nStartBlock = atoi(&pStartBlock[strlen(APE_LINK_START_BLOCK_TAG)]);
72 m_nFinishBlock = atoi(&pFinishBlock[strlen(APE_LINK_FINISH_BLOCK_TAG)]);
/haiku/src/tests/kits/media/playsound/
H A Dplaysound.cpp78 gain = atoi(optarg);
82 pan = atoi(optarg);
/haiku/src/tests/kits/package/
H A Dmake_repo.cpp26 repoInfo.SetPriority(atoi(argv[3]));
41 int pkgCount = atoi(argv[4]);
/haiku/src/system/libroot/posix/
H A Duser_group_common.cpp233 uid = atoi(userID);
234 gid = atoi(groupID);
387 lastChanged = atoi(lastChangedString);
388 min = minString[0] != '\0' ? atoi(minString) : -1;
389 max = maxString[0] != '\0' ? atoi(maxString) : -1;
390 warn = warnString[0] != '\0' ? atoi(warnString) : -1;
391 inactive = inactiveString[0] != '\0' ? atoi(inactiveString) : -1;
392 expiration = expirationString[0] != '\0' ? atoi(expirationString) : -1;
393 flags = atoi(flagsString);

Completed in 428 milliseconds

1234567