Searched refs:atoi (Results 101 - 125 of 160) sorted by last modified time

1234567

/haiku/src/tests/kits/media/playsound/
H A Dplaysound.cpp78 gain = atoi(optarg);
82 pan = atoi(optarg);
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPManager.cpp474 return InterfaceWithUnit(atoi(name + 3));
476 return atoi(name);
/haiku/src/libs/print/libprint/
H A DPageSetupDlg.cpp302 float scaling = atoi(fScaling->Text());
H A DPreview.cpp918 fPreview->ShowFindPage(atoi(fPageNumber->Text())) ;
H A DJobSetupDlg.cpp935 first_page = atoi(fFromPage->Text());
936 last_page = atoi(fToPage->Text());
952 fJobData->SetCopies(atoi(fCopies->Text()));
/haiku/src/add-ons/print/drivers/preview/
H A DPageSetupWindow.cpp252 float scale = atoi(fScaleControl->Text());
H A DJobSetupWindow.cpp126 from = atoi(fFrom->Text());
127 to = atoi(fTo->Text());
/haiku/src/add-ons/translators/gif/
H A DGIFView.cpp465 int value = atoi(control->Text());
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp540 st->st_uid = atoi(owner);
550 st->st_gid = atoi(group);
/haiku/src/preferences/filetypes/
H A DAttributeWindow.cpp366 int32 width = atoi(fWidthControl->Text());
/haiku/src/add-ons/print/transports/hp_jetdirect/
H A DSetupWindow.cpp131 uint16 port = atoi(fQueuePort->Text());
H A DHPJetDirectTransport.cpp46 fPort = atoi(address.String() + index + 1);
/haiku/src/kits/mail/
H A DProtocolConfigView.cpp88 atoi(fSizeControl->Text()) * 1024);
/haiku/src/tests/servers/app/playground/
H A DObjectWindow.cpp491 c.alpha = max_c(0, min_c(255, atoi(fAlphaTC->Text())));
/haiku/src/kits/shared/
H A DDriverSettingsMessageAdapter.cpp223 status = message.AddInt32(name, atoi(parameter.values[i]));
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstdlib.h145 extern int atoi (__const char *__nptr) __THROW __attribute_pure__;
382 atoi (__const char *__nptr) __THROW
/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);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DSettings.cpp126 return atoi(value);
270 int command = atoi(parameter->values[0]);
/haiku/src/tests/add-ons/media/media-add-ons/mixer/
H A Dmain.cpp240 int freq = atoi(fSignalFrequency->Text());
243 int irate = atoi(fInputRate->Text());
246 int orate = atoi(fOutputRate->Text());
249 int vol = atoi(fSignalVolume->Text());
/haiku/src/tests/servers/app/stacktile/
H A Dmain.cpp106 numWindows = atoi(argv[1]);
/haiku/src/bin/
H A Dlistarea.c104 team_id team = atoi(arg);
106 // if atoi returns >0 it's likely it's a number, else take it as string
H A Dlistimage.c83 if (atoi(arg) > 0 && list_images_for_team_by_id(atoi(arg)) == B_OK)
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.cpp176 return SetValue(atoi(value));
430 return SetValue((uint8)max_c(0, min_c(255, atoi(value))));
550 v = (bool)atoi(value);
/haiku/src/kits/print/
H A DJobSetupPanel.cpp164 return atoi(text.String());
175 return atoi(text.String());
/haiku/src/system/runtime_loader/
H A Dutility.cpp105 /*! Mini atoi(), so we don't have to include the libroot dependencies.
108 atoi(const char* num) function

Completed in 122 milliseconds

1234567