Searched refs:newValue (Results 26 - 50 of 56) sorted by relevance

123

/haiku/src/apps/mediaplayer/interface/
H A DVolumeSlider.cpp63 int32 newValue = ValueForPoint(where); local
64 if (oldValue == newValue) {
70 if ((oldValue < fSnapValue && newValue >= fSnapValue)
71 || (oldValue > fSnapValue && newValue <= fSnapValue)) {
78 if (oldValue > newValue) {
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DVariableEditWindow.cpp178 VariableEditWindow::TableCellEditEnded(Value* newValue) argument
180 BReference<Value> valueReference(newValue);
182 message.AddPointer("value", newValue);
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DACPICAHaiku.cpp1232 uint32_t newValue; local
1237 newValue = ((oldValue & ~ACPI_GLOCK_PENDING) | ACPI_GLOCK_OWNED);
1239 newValue |= ACPI_GLOCK_PENDING;
1240 } while (atomic_test_and_set((int32*)lock, newValue, oldValue) != (int32)oldValue);
1242 return (newValue & ACPI_GLOCK_PENDING) == 0;
1256 uint32 newValue; local
1261 newValue = oldValue & ~(ACPI_GLOCK_PENDING | ACPI_GLOCK_OWNED);
1262 } while (atomic_test_and_set((int32*)lock, newValue, oldValue) != (int32)oldValue);
/haiku/headers/os/media/
H A DControllable.h59 int32 parameterID, void* newValue,
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupSlider.h59 virtual void ValueChanged(int32 newValue);
H A DInputSlider.cpp155 InputSlider::ValueChanged(int32 newValue) argument
157 PopupSlider::ValueChanged(newValue);
H A DPopupSlider.cpp261 PopupSlider::ValueChanged(int32 newValue) argument
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.h66 Value* newValue);
H A DExpressionEvaluationWindow.cpp251 CpuState* state, Value* newValue)
250 ValueNodeWriteRequested(ValueNode* node, CpuState* state, Value* newValue) argument
/haiku/src/add-ons/media/media-add-ons/tone_producer_demo/
H A DToneProducer.cpp730 float newValue = *((float*) event->user_data); local
731 if (mFrequency != newValue) // an actual change in the value?
733 mFrequency = newValue;
742 float newValue = *((float*) event->user_data); local
743 if (mGain != newValue)
745 mGain = newValue;
754 int32 newValue = *((int32*) event->user_data); local
755 if (mWaveform != newValue)
757 mWaveform = newValue;
/haiku/headers/os/interface/
H A DScrollBar.h55 virtual void ValueChanged(float newValue);
/haiku/src/kits/interface/
H A DSlider.cpp509 int32 newValue = Value();
514 newValue -= KeyIncrementValue();
519 newValue += KeyIncrementValue();
523 newValue = fMinValue;
527 newValue = fMaxValue;
535 if (newValue < fMinValue)
536 newValue = fMinValue;
538 if (newValue > fMaxValue)
539 newValue = fMaxValue;
541 if (newValue !
[all...]
H A DScrollBar.cpp769 BScrollBar::ValueChanged(float newValue) argument
771 TRACE("BScrollBar(%s)::ValueChanged(%.1f)\n", Name(), newValue);
776 // if vertical, check bounds top and scroll if different from newValue
777 if (fOrientation == B_VERTICAL && targetBounds.top != newValue)
778 fTarget->ScrollBy(0.0, newValue - targetBounds.top);
780 // if horizontal, check bounds left and scroll if different from newValue
781 if (fOrientation == B_HORIZONTAL && targetBounds.left != newValue)
782 fTarget->ScrollBy(newValue - targetBounds.left, 0.0);
785 TRACE(" -> %.1f\n", newValue);
787 SetValue(newValue);
[all...]
H A DSplitLayout.cpp1123 int32 newValue = previousSize + (previousCollapsed ? 0 : (int32)fSpacing); local
1124 if (newValue == fDraggingCurrentValue) {
1132 int32 splitterOffset = baseOffset + newValue;
1209 fDraggingCurrentValue = newValue;
H A DColumnListView.cpp1880 float newValue = currentValue; local
1883 newValue -= largeStep;
1885 newValue += largeStep;
1887 if (newValue > maxValue)
1888 newValue = maxValue;
1889 else if (newValue < minValue)
1890 newValue = minValue;
1892 fVerticalScrollBar->SetValue(newValue);
/haiku/headers/private/debugger/user_interface/
H A DUserInterface.h121 CpuState* state, Value* newValue) = 0;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.h179 Value* newValue) = 0;
/haiku/src/kits/media/
H A DControllable.cpp338 void* newValue, size_t valueSize)
342 newValue, valueSize);
337 BroadcastNewParameterValue(bigtime_t when, int32 id, void* newValue, size_t valueSize) argument
/haiku/headers/private/system/
H A Dsyscalls.h521 extern void _kern_atomic_set(int32 *value, int32 newValue);
522 extern int32 _kern_atomic_get_and_set(int32 *value, int32 newValue);
523 extern int32 _kern_atomic_test_and_set(int32 *value, int32 newValue,
532 extern void _kern_atomic_set64(int64 *value, int64 newValue);
533 extern int64 _kern_atomic_get_and_set64(int64 *value, int64 newValue);
534 extern int64 _kern_atomic_test_and_set64(int64 *value, int64 newValue,
/haiku/src/system/kernel/posix/
H A Dxsi_semaphore.cpp352 int newValue = current->undo_values[semaphoreNumber] + value; local
353 if (newValue > USHRT_MAX || newValue < -USHRT_MAX) {
354 TRACE_ERROR(("XsiSemaphoreSet::RecordUndo: newValue %d "
355 "out of range\n", newValue));
358 current->undo_values[semaphoreNumber] = newValue;
/haiku/src/system/kernel/locks/
H A Duser_mutex.cpp133 user_atomic_test_and_set(int32* value, int32 newValue, int32 testAgainst,
139 result = atomic_test_and_set(value, newValue, testAgainst);
145 result = atomic_test_and_set(value, newValue, testAgainst);
/haiku/src/kits/debugger/jobs/
H A DJobs.h219 Value* newValue);
/haiku/headers/private/debugger/controllers/
H A DTeamDebugger.h90 Value* newValue);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.h81 Unaligned<T>& operator=(const T& newValue) argument
83 value = newValue; return *this;
/haiku/src/kits/tracker/
H A DWidgetAttributeText.cpp599 int64 newValue = ReadValue(); local
600 if (newValue == fValue)
603 fValue = newValue;

Completed in 172 milliseconds

123