Searched refs:current (Results 76 - 100 of 168) sorted by relevance

1234567

/haiku/src/preferences/screen/
H A DRefreshWindow.cpp30 RefreshWindow::RefreshWindow(BPoint position, float current, float min, float max) argument
49 fRefreshSlider->SetValue((int32)rintf(current * 10));
/haiku/src/system/kernel/scheduler/
H A Dscheduler_cpu.h553 PackageEntry* current = &gPackageEntries[0]; local
555 if (gPackageEntries[i].fIdleCoreCount > current->fIdleCoreCount)
556 current = &gPackageEntries[i];
559 if (current->fIdleCoreCount == 0)
562 return current;
574 PackageEntry* current = &gPackageEntries[i]; local
576 int32 currentIdleCoreCount = current->fIdleCoreCount;
579 package = current;
/haiku/src/kits/network/libnetservices/
H A DHttpTime.cpp112 // Save the current locale, switch to POSIX for strptime to match strings
114 locale_t current = uselocale(posix); local
132 uselocale(current);
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DKeyboardProtocolHandler.cpp402 // we wrote the current repeat key
758 uint16 *current = fLastKeys; local
762 if (current[i] == 0 || (current[i] == 1
768 if (compare[j] == current[i]) {
780 if (current[i] < kKeyTableSize)
781 key = kKeyTable[current[i]];
789 && current[i] >= 4 && current[i] <= 29
801 char letter = current[
[all...]
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlightInfo.cpp287 syntax_highlight_type current = _MapTokenToSyntaxType(token); local
288 if (_lastType == current)
291 _lastType = current;
292 if (!_info->AddPair(token.position, current))
/haiku/src/apps/mediaplayer/interface/
H A DPeakView.h17 of the windows current pulse (in case you have text views in
69 float current, float peak, bool overshot);
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dpll.cpp187 lvds_dual_link(display_timing* current) argument
189 float requestedPixelClock = current->pixel_clock / 1000.0f;
218 compute_pll_p2(display_timing* current, pll_divisors* divisors, argument
222 if (lvds_dual_link(current)) {
230 if (current->pixel_clock < limits->dot_limit) {
272 compute_dpll_g4x(display_timing* current, pll_divisors* divisors, bool isLVDS) argument
274 float requestedPixelClock = current->pixel_clock / 1000.0f;
285 if (lvds_dual_link(current))
296 if (lvds_dual_link(current)) {
314 compute_pll_p2(current, divisor
366 compute_dpll_9xx(display_timing* current, pll_divisors* divisors, bool isLVDS) argument
450 compute_pll_divisors(display_timing* current, pll_divisors* divisors, bool isLVDS) argument
[all...]
/haiku/src/servers/app/
H A DEventDispatcher.cpp759 EventTarget* current = NULL; local
858 current = fPreviousMouseTarget = mouseTarget;
860 if (current != NULL) {
862 addedTokens |= _AddTokens(event, current, B_POINTER_EVENTS,
878 _SendMessage(current->Messenger(), event,
919 current = fPreviousMouseTarget;
921 current = fFocus;
923 if (current != NULL && (!fSuspendFocus || addedTokens)) {
924 _SendMessage(current->Messenger(), event,
948 if (current
[all...]
H A DScreen.cpp92 display_mode current; local
93 GetMode(current);
94 if (!memcmp(&mode, &current, sizeof(display_mode)))
/haiku/src/kits/interface/
H A DToolTipManager.cpp345 reply.AddPointer("current", tip);
390 BToolTip* current = NULL; local
394 reply.FindPointer("current", (void**)&current);
399 if (current != NULL)
400 current->ReleaseReference();
402 if (current == tip || currentOwner == owner) {
/haiku/src/add-ons/kernel/debugger/demangle/
H A Dgcc2.cpp405 uint32 current = *_cookie;
406 if (current > 32)
409 for (uint32 i = 0; i < current; i++) {
415 if (current <= i + count) {
434 TRACE("\n\targ %ld: %s\n", current, arg.String());
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dkernel_interface.cpp1155 cookie->first = cookie->current = NULL;
1187 cookie->first = cookie->current = entry;
1189 cookie->current->next = entry;
1190 cookie->current = entry;
1222 cookie->current = cookie->first;
1226 if (cookie->current == NULL) {
1235 if (length < (cookie->current->name_length + 1)) {
1241 length = cookie->current->name_length;
1244 dirent->d_ino = cookie->current->inode;
1245 strlcpy(dirent->d_name, cookie->current
[all...]
/haiku/src/apps/cortex/DiagramView/
H A DDiagramView.cpp724 DiagramView::_trackRect(BPoint origin, BPoint current) argument
729 rect.left = origin.x < current.x ? origin.x : current.x;
730 rect.top = origin.y < current.y ? origin.y : current.y;
731 rect.right = origin.x < current.x ? current.x : origin.x;
732 rect.bottom = origin.y < current.y ? current.y : origin.y;
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.c745 fs_node *current; local
749 current = ns->first;
751 while (current != NULL && current->vnid != vnid)
752 current = current->next;
756 return current->fhandle;
763 fs_node *current; local
767 current = ns->first;
769 while (current !
788 fs_node *current; local
822 fs_node *current; local
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeRegular.cpp216 char* current = strpbrk(name, "/:"); local
217 while (current != NULL) {
218 switch (*current) {
220 *current = '#';
223 *current = '$';
226 current = strpbrk(name, "/:");
H A DInodeDir.cpp206 char* current = strpbrk(name, "#$"); local
207 while (current != NULL) {
208 switch (*current) {
210 *current = '/';
213 *current = ':';
216 current = strpbrk(name, "#$");
/haiku/src/add-ons/kernel/network/stack/
H A Dstack.cpp399 struct chain* current; local
400 current = chains->Clear(true);
401 while (current) {
402 struct chain* next = current->next;
404 current->Uninitialize();
405 delete current;
406 current = next;
898 struct family* current; local
899 current = sFamilies->Clear(true);
900 while (current) {
[all...]
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DOptionProperty.cpp225 uint32 current = B_HOST_TO_BENDIAN_INT32(fCurrentOptionID); local
227 "did not find option %.4s!!\n", (char*)&current);
/haiku/headers/private/kernel/util/
H A DAVLTreeBase.h177 inline AVLTreeIterator(const AVLTreeBase* parent, AVLTreeNode* current, argument
181 fCurrent(current),
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardWindow.cpp57 KeymapListItem* current = local
59 fCurrentKeymap.Load(current->EntryRef());
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.cpp98 const Property* current)
109 newObject->AddProperty(current->Clone());
97 PropertyChanged(const Property* previous, const Property* current) argument
/haiku/headers/os/add-ons/graphics/
H A DGraphicsCard.h79 float current; member in struct:__anon6
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.h62 const Property* current);
/haiku/src/add-ons/decorators/FlatDecorator/
H A DFlatDecorator.cpp835 decorator_bitmap* current = sBitmapList; local
836 while (current) {
837 if (current->item == item && current->down == down
838 && current->width == width && current->height == height
839 && current->baseColor == colors[COLOR_BUTTON]
840 && current->lightColor == colors[COLOR_BUTTON_LIGHT]) {
841 return current->bitmap;
844 current
[all...]
/haiku/src/servers/app/decorator/
H A DDefaultDecorator.cpp766 decorator_bitmap* current = sBitmapList; local
767 while (current) {
768 if (current->item == item && current->down == down
769 && current->width == width && current->height == height
770 && current->baseColor == colors[COLOR_BUTTON]
771 && current->lightColor == colors[COLOR_BUTTON_LIGHT]) {
772 return current->bitmap;
775 current
[all...]

Completed in 209 milliseconds

1234567