Searched refs:newValue (Results 1 - 25 of 42) sorted by relevance

12

/haiku-fatelf/src/system/libroot/os/
H A Datomic.c15 atomic_set(vint32 *value, int32 newValue) argument
17 return _kern_atomic_set(value, newValue);
21 atomic_test_and_set(vint32 *value, int32 newValue, int32 testAgainst) argument
23 return _kern_atomic_test_and_set(value, newValue, testAgainst);
55 atomic_set64(vint64 *value, int64 newValue) argument
57 return _kern_atomic_set64(value, newValue);
61 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
63 return _kern_atomic_test_and_set64(value, newValue, testAgainst);
/haiku-fatelf/src/tools/fs_shell/
H A Datomic.cpp14 fssh_atomic_set(vint32_t *value, int32_t newValue) argument
16 return atomic_set((vint32*)value, newValue);
21 fssh_atomic_test_and_set(vint32_t *value, int32_t newValue, int32_t testAgainst) argument
23 return atomic_test_and_set((vint32*)value, newValue, testAgainst);
56 fssh_atomic_set64(vint64_t *value, int64_t newValue) argument
58 return atomic_set64((vint64*)value, newValue);
63 fssh_atomic_test_and_set64(vint64_t *value, int64_t newValue, int64_t testAgainst) argument
65 return atomic_test_and_set64((vint64 *)value, newValue, testAgainst);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/FileSharing-Windows/
H A Dfolderview.h124 void put_BackColor(unsigned long newValue) argument
127 InvokeHelper(DISPID_BACKCOLOR, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
135 void put_ForeColor(unsigned long newValue) argument
138 InvokeHelper(DISPID_FORECOLOR, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
152 void put_Appearance(long newValue) argument
155 InvokeHelper(DISPID_APPEARANCE, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
163 void put_BorderStyle(long newValue) argument
166 InvokeHelper(DISPID_BORDERSTYLE, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
174 void put_HasLines(BOOL newValue) argument
177 InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
185 put_HasButtons(BOOL newValue) argument
196 put_HasLinesAtRoot(BOOL newValue) argument
207 put_ShowSelAlways(BOOL newValue) argument
224 put_HasCheckBoxes(BOOL newValue) argument
235 put_DisplayShareName(BOOL newValue) argument
252 put_OverlayIcons(BOOL newValue) argument
270 put_SelectedFolder(VARIANT newValue) argument
281 put_EnableShellMenu(BOOL newValue) argument
292 put_AutoUpdate(BOOL newValue) argument
316 put_HiddenFolders(BOOL newValue) argument
327 put_FirstVisibleFolder(LPDISPATCH newValue) argument
347 put_Enabled(BOOL newValue) argument
365 put_IconsVisible(BOOL newValue) argument
382 put_Version(LPCTSTR newValue) argument
393 put_ExploreFromHere(LPCTSTR newValue) argument
408 put_LicenseKey(LPCTSTR newValue) argument
432 put_AllowDropFiles(BOOL newValue) argument
443 put_Font(LPDISPATCH newValue) argument
454 putref_Font(LPDISPATCH newValue) argument
[all...]
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_atomic.h18 int32_t fssh_atomic_set(vint32_t *value, int32_t newValue);
19 int32_t fssh_atomic_test_and_set(vint32_t *value, int32_t newValue,
26 int64_t fssh_atomic_set64(vint64_t *value, int64_t newValue);
27 int64_t fssh_atomic_test_and_set64(vint64_t *value, int64_t newValue,
/haiku-fatelf/headers/private/kernel/
H A Duser_atomic.h16 int32 _user_atomic_set(vint32 *value, int32 newValue);
17 int32 _user_atomic_test_and_set(vint32 *value, int32 newValue, int32 testAgainst);
23 int64 _user_atomic_set64(vint64 *value, int64 newValue);
24 int64 _user_atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst);
/haiku-fatelf/src/build/libroot/
H A Datomic.cpp10 atomic_set(vint32 *value, int32 newValue) argument
13 *value = newValue;
19 atomic_test_and_set(vint32 *value, int32 newValue, int32 testAgainst) argument
23 *value = newValue;
63 atomic_set64(vint64 *value, int64 newValue) argument
66 *value = newValue;
71 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
75 *value = newValue;
/haiku-fatelf/src/kits/tracker/
H A DSettings.cpp67 StringValueSetting::ValueChanged(const char* newValue) argument
69 fValue = newValue;
120 EnumeratedStringValueSetting::ValueChanged(const char* newValue) argument
129 if (strcmp(fValues[index], newValue) != 0)
137 StringValueSetting::ValueChanged(newValue);
185 ScalarValueSetting::ValueChanged(int32 newValue) argument
187 ASSERT(newValue > fMin);
188 ASSERT(newValue < fMax);
189 fValue = newValue;
213 int32 newValue;
[all...]
H A DSettings.h55 void ValueChanged(const char* newValue);
77 void ValueChanged(const char* newValue);
92 void ValueChanged(int32 newValue);
/haiku-fatelf/src/apps/codycam/
H A DSettings.cpp39 StringValueSetting::ValueChanged(const char* newValue) argument
41 if (newValue == fValue)
46 fValue = strdup(newValue);
100 EnumeratedStringValueSetting::ValueChanged(const char* newValue) argument
104 ASSERT(_ValidateString(newValue));
106 StringValueSetting::ValueChanged(newValue);
162 ScalarValueSetting::ValueChanged(int32 newValue) argument
164 ASSERT(newValue > fMin);
165 ASSERT(newValue < fMax);
166 fValue = newValue;
[all...]
H A DSettings.h19 void ValueChanged(const char* newValue);
48 void ValueChanged(const char* newValue);
67 void ValueChanged(int32 newValue);
/haiku-fatelf/src/tests/add-ons/kernel/drivers/hpet/
H A Dmain.cpp19 uint64 value, newValue; local
24 read(hpetFD, &newValue, sizeof(uint64));
25 printf("HPET counter value difference (1 sec): %lld\n", newValue - value);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DUtility.h76 // _atomic_test_and_set(value, newValue, testAgainst)
77 // sets "value" to "newValue", if "value" is equal to "testAgainst"
78 // _atomic_set(value, newValue)
79 // sets "value" to "newValue"
86 _atomic_test_and_set(volatile int32 *value, int32 newValue, int32 testAgainst) argument
90 *value = newValue;
96 _atomic_set(volatile int32 *value, int32 newValue) argument
98 *value = newValue;
102 _atomic_test_and_set(volatile int32 *value, int32 newValue, int32 testAgainst) argument
106 : "=a" (oldValue) : "a" (testAgainst), "c" (newValue), "
111 _atomic_set(volatile int32 *value, int32 newValue) argument
131 _atomic_test_and_set(volatile int32 *value, int32 newValue, int32 testAgainst) argument
[all...]
/haiku-fatelf/src/apps/terminal/
H A DTermScrollView.cpp27 virtual void ValueChanged(float newValue) argument
30 target->ScrollTo(0, newValue);
/haiku-fatelf/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-fatelf/src/apps/icon-o-matic/generic/gui/popup_control/
H A DInputSlider.h38 virtual void ValueChanged(int32 newValue);
H A DPopupSlider.h59 virtual void ValueChanged(int32 newValue);
/haiku-fatelf/src/system/kernel/arch/m68k/
H A Darch_atomic.cpp28 atomic_set64(vint64 *value, int64 newValue)
35 *value = newValue;
42 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst)
50 *value = newValue;
112 _user_atomic_set64(vint64 *value, int64 newValue)
123 *value = newValue;
135 _user_atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst)
147 *value = newValue;
/haiku-fatelf/src/system/kernel/arch/mipsel/
H A Darch_atomic.cpp19 atomic_set64(vint64 *value, int64 newValue) argument
26 *value = newValue;
33 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
41 *value = newValue;
103 _user_atomic_set64(vint64 *value, int64 newValue) argument
114 *value = newValue;
126 _user_atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
138 *value = newValue;
/haiku-fatelf/src/system/kernel/arch/ppc/
H A Darch_atomic.cpp19 atomic_set64(vint64 *value, int64 newValue) argument
26 *value = newValue;
33 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
41 *value = newValue;
103 _user_atomic_set64(vint64 *value, int64 newValue) argument
114 *value = newValue;
126 _user_atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst) argument
138 *value = newValue;
/haiku-fatelf/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-fatelf/headers/os/support/
H A DSupportDefs.h195 extern int32 atomic_set(vint32 *value, int32 newValue);
196 extern int32 atomic_test_and_set(vint32 *value, int32 newValue, int32 testAgainst);
202 extern int64 atomic_set64(vint64 *value, int64 newValue);
203 extern int64 atomic_test_and_set64(vint64 *value, int64 newValue, int64 testAgainst);
231 #define atomic_test_and_set(valuePointer, newValue, testAgainst) \
232 __sync_val_compare_and_swap(valuePointer, testAgainst, newValue)
/haiku-fatelf/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-fatelf/headers/build/
H A DHaikuBuildCompatibility.h121 extern int32 atomic_set(vint32 *value, int32 newValue);
122 extern int32 atomic_test_and_set(vint32 *value, int32 newValue,
125 extern int64 atomic_set64(vint64 *value, int64 newValue);
126 extern int64 atomic_test_and_set64(vint64 *value, int64 newValue,
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/
H A DACPICAHaiku.cpp1233 uint32 newValue; local
1238 newValue = ((oldValue & ~GL_BIT_MASK) | GL_BIT_OWNED) |
1240 atomic_test_and_set((int32*)lock, newValue, oldValue);
1242 return ((newValue < GL_BIT_MASK) ? GL_ACQUIRED : GL_BUSY);
1256 uint32 newValue; local
1261 newValue = oldValue & ~GL_BIT_MASK;
1262 atomic_test_and_set((int32*)lock, newValue, oldValue);
/haiku-fatelf/headers/os/media/
H A DControllable.h59 int32 parameterID, void* newValue,

Completed in 172 milliseconds

12