Searched refs:newValue (Results 1 - 25 of 56) sorted by path

123

/haiku/headers/os/media/
H A DControllable.h59 int32 parameterID, void* newValue,
/haiku/headers/private/debugger/controllers/
H A DTeamDebugger.h90 Value* newValue);
/haiku/headers/private/debugger/user_interface/
H A DUserInterface.h121 CpuState* state, Value* newValue) = 0;
/haiku/headers/private/fs_shell/
H A Dfssh_atomic.h18 void fssh_atomic_set(int32_t* value, int32_t newValue);
19 int32_t fssh_atomic_get_and_set(int32_t* value, int32_t newValue);
20 int32_t fssh_atomic_test_and_set(int32_t *value, int32_t newValue,
27 void fssh_atomic_set64(int64_t* value, int64_t newValue);
28 int64_t fssh_atomic_get_and_set64(int64_t* value, int64_t newValue);
29 int64_t fssh_atomic_test_and_set64(int64_t *value, int64_t newValue,
/haiku/headers/private/kernel/arch/x86/32/
H A Datomic.h39 atomic_set_inline(int32* value, int32 newValue) argument
42 *(volatile int32*)value = newValue;
47 atomic_get_and_set_inline(int32* value, int32 newValue) argument
50 : "+r" (newValue)
53 return newValue;
58 atomic_test_and_set_inline(int32* value, int32 newValue, int32 testAgainst) argument
61 : "=a" (newValue)
62 : "0" (testAgainst), "r" (newValue), "r" (value)
64 return newValue;
69 atomic_add_inline(int32* value, int32 newValue) argument
82 int32 newValue = *(volatile int32*)value; local
[all...]
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskDeviceUtils.h49 set_string(char *&location, const char *newValue) argument
58 if (newValue) {
59 location = strdup(newValue);
/haiku/headers/private/kernel/
H A Duser_atomic.h16 void _user_atomic_set(int32 *value, int32 newValue);
17 int32 _user_atomic_get_and_set(int32 *value, int32 newValue);
18 int32 _user_atomic_test_and_set(int32 *value, int32 newValue, int32 testAgainst);
24 void _user_atomic_set64(int64 *value, int64 newValue);
25 int64 _user_atomic_get_and_set64(int64 *value, int64 newValue);
26 int64 _user_atomic_test_and_set64(int64 *value, int64 newValue, int64 testAgainst);
/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/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp251 CpuState* state, Value* newValue)
250 ValueNodeWriteRequested(ValueNode* node, CpuState* state, Value* newValue) argument
H A DExpressionEvaluationWindow.h66 Value* newValue);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.h179 Value* newValue) = 0;
/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);
H A DVariableEditWindow.h44 virtual void TableCellEditEnded(Value* newValue);
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellValueEditor.cpp73 TableCellValueEditor::NotifyEditCompleted(Value* newValue) argument
77 listener->TableCellEditEnded(newValue);
103 TableCellValueEditor::Listener::TableCellEditEnded(Value* newValue) argument
H A DTableCellValueEditor.h34 void NotifyEditCompleted(Value* newValue);
52 virtual void TableCellEditEnded(Value* newValue);
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DInputSlider.cpp155 InputSlider::ValueChanged(int32 newValue) argument
157 PopupSlider::ValueChanged(newValue);
H A DInputSlider.h38 virtual void ValueChanged(int32 newValue);
H A DPopupSlider.cpp261 PopupSlider::ValueChanged(int32 newValue) argument
H A DPopupSlider.h59 virtual void ValueChanged(int32 newValue);
/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/terminal/
H A DTermScrollView.cpp27 virtual void ValueChanged(float newValue) argument
30 target->ScrollTo(0, newValue);
/haiku/src/bin/desklink/
H A DVolumeControl.cpp223 int32 newValue = ValueForPoint(where); local
224 if (oldValue == newValue) {
230 if ((oldValue < 0 && newValue >= 0) || (oldValue > 0 && newValue <= 0)) {
238 if (oldValue > newValue) {
280 int32 newValue = currentValue - int32(deltaY) * 3; local
282 if (newValue != currentValue) {
283 SetValue(newValue);
/haiku/src/build/libroot/
H A Datomic.cpp14 atomic_set(int32 *value, int32 newValue) argument
16 *value = newValue;
21 atomic_get_and_set(int32 *value, int32 newValue) argument
24 *value = newValue;
30 atomic_test_and_set(int32 *value, int32 newValue, int32 testAgainst) argument
34 *value = newValue;
74 atomic_set64(int64 *value, int64 newValue) argument
76 *value = newValue;
81 atomic_get_and_set64(int64 *value, int64 newValue) argument
84 *value = newValue;
89 atomic_test_and_set64(int64 *value, int64 newValue, int64 testAgainst) argument
[all...]
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp1075 Value* newValue)
1081 fTeam->GetTeamTypeInformation(), node, newValue), this);
1074 ValueNodeWriteRequested(ValueNode* node, CpuState* state, Value* newValue) argument
/haiku/src/kits/debugger/jobs/
H A DJobs.h219 Value* newValue);

Completed in 122 milliseconds

123