Searched refs:current (Results 101 - 125 of 168) sorted by path

1234567

/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp191 net_protocol* current = socket->first_protocol; local
192 for (int i = 0; current != NULL; current = current->next, i++)
193 TRACE(" [%d] %p %s\n", i, current, current->module->info.name);
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...]
H A Dutility.cpp62 void* current = fBuffer; local
67 return current;
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DInterpolate.cpp50 float current = 0.0f; local
56 float tmp = (gain * (oldSample + (SRC - oldSample) * current - inMiddle)
66 current += delta;
67 if (current >= 1.0f) {
69 current = modf(current, &ipart);
H A DResampler.cpp50 float current = 0.0f; local
63 current += delta;
64 int32 skipcount = (int32)current;
65 current -= skipcount;
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.cpp521 // with the contents of the current bitmap
569 // copy current points (white) and erase them from the
659 IFS::_RandomSimilitudes(FRACTAL* fractal, SIMILITUDE* current, int i) const argument
662 current->c_x = gauss_rand(0.0, .8, 4.0);
663 current->c_y = gauss_rand(0.0, .8, 4.0);
664 current->r = gauss_rand(fractal->r_mean, fractal->dr_mean, 3.0);
665 current->r2 = half_gauss_rand(0.0,fractal->dr2_mean, 2.0);
666 current->A = gauss_rand(0.0, 360.0, 4.0) * (M_PI / 180.0);
667 current->A2 = gauss_rand(0.0, 360.0, 4.0) * (M_PI / 180.0);
668 current
[all...]
/haiku/src/add-ons/translators/raw/
H A DRAW.cpp2168 struct decode* current = fFreeDecode++;
2177 current->branch[0] = fFreeDecode;
2179 current->branch[1] = fFreeDecode;
2182 current->leaf = source[16 + fDecodeLeaf++];
/haiku/src/add-ons/translators/rtf/
H A Dconvert.cpp63 void PrepareTextRun(text_run *current);
402 // We only push a copy of the run on the stack because the current
427 // replace the current one, we don't need it anymore
/haiku/src/apps/bootmanager/
H A Dbootman.S380 pop ax ; Add current ticks
493 xor cx, cx ; The index of the current item
/haiku/src/apps/clock/
H A Dcl_view.cpp255 time_t current = time(0); local
256 struct tm *loctime = localtime(&current);
/haiku/src/apps/deskbar/
H A DSwitcher.cpp119 void Update(int32 previous, int32 current,
182 void Update(int32 previous, int32 current,
785 int32 current = fCurrentIndex; local
786 SwitchToApp(current, fQuickSwitchIndex, false);
789 fCurrentIndex = current;
868 TSwitchManager::SwitchToApp(int32 previous, int32 current, bool forward) argument
872 fCurrentIndex = current;
924 // of teams. The current window (defined by fCurrentWindow) will define
931 // If the first window in the list isn't in current workspace,
961 // Now we go through all the windows in the current workspac
1805 Update(int32 previous, int32 current, int32 previousSlot, int32 currentSlot, bool forward) argument
1990 Update(int32 previous, int32 current, int32 previousSlot, int32 currentSlot, bool forward) argument
[all...]
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp84 BString current = Text(); local
100 if (current != Text())
323 // increase the current digit value with one
408 // save current expression
/haiku/src/apps/devices/
H A DPropertyList.cpp107 PropertyRow* current = (PropertyRow*)RowAt(i); local
108 if (current->IsSelected())
109 strings << current->Name()
110 << "\t" << current->Value() << "\n";
H A DResourceUsageWindow.cpp274 struct device_configuration *current = deviceInfo->GetCurrent(); local
277 int32 num = count_resource_descriptors_of_type(current,
281 get_nth_resource_descriptor_of_type(current, k, B_IRQ_RESOURCE,
306 struct device_configuration *current = deviceInfo->GetCurrent(); local
309 int32 num = count_resource_descriptors_of_type(current,
313 get_nth_resource_descriptor_of_type(current, k,
333 struct device_configuration *current = deviceInfo->GetCurrent(); local
336 int32 num = count_resource_descriptors_of_type(current,
340 get_nth_resource_descriptor_of_type(current, k,
354 struct device_configuration *current local
[all...]
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp759 * come after the current change.
1128 bigtime_t current = system_time(); local
1129 if (lastReport + 500000LL < current) {
1135 lastReport = current;
1138 // search for data in current block
/haiku/src/apps/diskusage/
H A DPieView.cpp218 BMessage* current = Window()->CurrentMessage(); local
221 if (current->FindInt32("buttons", (int32*)&buttons) != B_OK)
247 BMessage* current = Window()->CurrentMessage(); local
250 if (current->FindInt32("modifiers", (int32*)&modifiers) != B_OK)
317 // There is a current volume.
/haiku/src/apps/icon-o-matic/document/
H A DSetPropertiesCommand.cpp30 PropertyObject* current)
36 fNewProperties(current)
27 SetPropertiesCommand(IconObject** objects, int32 objectCount, PropertyObject* previous, PropertyObject* current) argument
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.cpp268 // GetPreferredSize(), which by default just returns the current size.
284 // GetPreferredSize(), which by default just returns the current size.
454 const Property* current)
457 name_for_id(current->Identifier()));
491 Property* current = fPropertyObject->FindProperty(propertyID); local
492 if (previous && current) {
494 PropertyChanged(previous, current);
498 // and "previous" and "current" are toast)
500 && fPropertyObject->HasProperty(current))
501 previous->SetValue(current);
453 PropertyChanged(const Property* previous, const Property* current) argument
[all...]
H A DPropertyListView.h62 const Property* current);
/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/src/apps/icon-o-matic/transformable/
H A DPerspectiveBoxStates.cpp57 DragCornerState::DragTo(BPoint current, uint32 modifiers) argument
59 *fPoint = current;
65 DragCornerState::UpdateViewCursor(BView* view, BPoint current) const
H A DPerspectiveBoxStates.h28 virtual void DragTo(BPoint current, uint32 modifiers) = 0;
29 virtual void UpdateViewCursor(BView* view, BPoint current) const = 0;
47 virtual void DragTo(BPoint current, uint32 modifiers);
48 virtual void UpdateViewCursor(BView* view, BPoint current) const;
H A DTransformBoxStates.cpp126 DragCornerState::DragTo(BPoint current, uint32 modifiers) argument
128 double x = current.x;
129 double y = current.y;
168 DragCornerState::UpdateViewCursor(BView* view, BPoint current) const
336 DragSideState::DragTo(BPoint current, uint32 modifiers) argument
338 double x = current.x;
339 double y = current.y;
372 DragSideState::UpdateViewCursor(BView* view, BPoint current) const
442 DragBoxState::DragTo(BPoint current, uint32 modifiers) argument
444 BPoint offset = current
490 DragTo(BPoint current, uint32 modifiers) argument
558 DragTo(BPoint current, uint32 modifiers) argument
[all...]
H A DTransformBoxStates.h32 virtual void DragTo(BPoint current, uint32 modifiers) = 0;
33 virtual void UpdateViewCursor(BView* view, BPoint current) const = 0;
57 virtual void DragTo(BPoint current, uint32 modifiers);
58 virtual void UpdateViewCursor(BView* view, BPoint current) const;
87 virtual void DragTo(BPoint current, uint32 modifiers);
88 virtual void UpdateViewCursor(BView* view, BPoint current) const;
111 virtual void DragTo(BPoint current, uint32 modifiers);
112 virtual void UpdateViewCursor(BView* view, BPoint current) const;
127 virtual void DragTo(BPoint current, uint32 modifiers);
128 virtual void UpdateViewCursor(BView* view, BPoint current) cons
[all...]
/haiku/src/apps/launchbox/
H A DPadView.cpp81 int32 current; local
86 current = (int32)dot.x;
92 current = (int32)dot.y;
99 while (current <= stop) {
129 current++;

Completed in 177 milliseconds

1234567