Home
last modified time | relevance | path

Searched refs:oldValue (Results 1 – 25 of 4704) sorted by relevance

12345678910>>...189

/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Threading/
H A DInterlocked.cs88 long oldValue; in Exchange()
93 } while (CompareExchange(ref location1, value, oldValue) != oldValue); in Exchange()
132 } while (CompareExchange(ref location1, value, oldValue) != oldValue); in Exchange()
175 long oldValue; in Increment()
180 } while (CompareExchange(ref location, oldValue + 1, oldValue) != oldValue); in Increment()
210 long oldValue; in Decrement()
215 } while (CompareExchange(ref location, oldValue - 1, oldValue) != oldValue); in Decrement()
250 } while (CompareExchange(ref location1, oldValue + value, oldValue) != oldValue); in Add()
341 int oldValue;
463 } while (CompareExchange(ref location1, oldValue + value, oldValue) != oldValue);
[all …]
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/
H A DBitMsg.h129 int ReadDeltaInt( int oldValue ) const;
325 WriteDelta( oldValue, newValue, -8 ); in WriteDeltaChar()
329 WriteDelta( oldValue, newValue, 8 ); in WriteDeltaByte()
333 WriteDelta( oldValue, newValue, -16 ); in WriteDeltaShort()
337 WriteDelta( oldValue, newValue, 32 ); in WriteDeltaInt()
419 return ReadDelta( oldValue, 32 ); in ReadDeltaInt()
584 WriteDelta( oldValue, newValue, -8 ); in WriteDeltaChar()
588 WriteDelta( oldValue, newValue, 8 ); in WriteDeltaByte()
592 WriteDelta( oldValue, newValue, -16 ); in WriteDeltaShort()
596 WriteDelta( oldValue, newValue, 32 ); in WriteDeltaInt()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/qadevOOo/runner/util/
H A DValueChanger.java42 oldValue = AnyConverter.toObject(((Any) oldValue).getType(), in changePValue()
43 oldValue); in changePValue()
48 if (oldValue == null) in changePValue()
94 if (oldValue.equals(AO1)) in changePValue()
96 if (oldValue.equals(AO2)) in changePValue()
98 if (oldValue.equals(AO3)) in changePValue()
100 if (oldValue.equals(AO4)) in changePValue()
106 if (oldValue.equals(OR1)) in changePValue()
126 if (oldValue.equals(PA1)) in changePValue()
147 if (oldValue.equals(GL1)) in changePValue()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/qadevOOo/runner/util/
H A DValueChanger.java42 oldValue = AnyConverter.toObject(((Any) oldValue).getType(), in changePValue()
43 oldValue); in changePValue()
48 if (oldValue == null) in changePValue()
94 if (oldValue.equals(AO1)) in changePValue()
96 if (oldValue.equals(AO2)) in changePValue()
98 if (oldValue.equals(AO3)) in changePValue()
100 if (oldValue.equals(AO4)) in changePValue()
106 if (oldValue.equals(OR1)) in changePValue()
126 if (oldValue.equals(PA1)) in changePValue()
147 if (oldValue.equals(GL1)) in changePValue()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/src/runtime/
H A Darch_cortexm.go35 oldValue := *ptr
38 return oldValue
44 oldValue := *ptr
47 return oldValue
53 oldValue := *ptr
56 return oldValue
62 oldValue := *ptr
65 return oldValue
71 oldValue := *ptr
76 return oldValue
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentMap.java365 V oldValue; in computeIfPresent() local
366 while((oldValue = get(key)) != null) { in computeIfPresent()
371 } else if (remove(key, oldValue)) in computeIfPresent()
374 return oldValue; in computeIfPresent()
419 V oldValue = get(key); in compute() local
432 oldValue = get(key); in compute()
439 if (oldValue != null) { in compute()
447 oldValue = get(key); in compute()
499 V oldValue = get(key); in merge() local
501 if (oldValue != null) { in merge()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace() argument
328 V oldValue, newValue; in computeIfAbsent() local
329 return ((oldValue = get(key)) == null in computeIfAbsent()
333 : oldValue; in computeIfAbsent()
370 for (V oldValue; (oldValue = get(key)) != null; ) { in computeIfPresent()
373 ? remove(key, oldValue) in computeIfPresent()
418 V oldValue = get(key); in compute() local
423 if (oldValue != null) { in compute()
430 } else if (oldValue == null || remove(key, oldValue)) { in compute()
480 V oldValue = get(key); in merge() local
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentMap.java365 V oldValue; in computeIfPresent() local
366 while((oldValue = get(key)) != null) { in computeIfPresent()
371 } else if (remove(key, oldValue)) in computeIfPresent()
374 return oldValue; in computeIfPresent()
419 V oldValue = get(key); in compute() local
432 oldValue = get(key); in compute()
439 if (oldValue != null) { in compute()
447 oldValue = get(key); in compute()
499 V oldValue = get(key); in merge() local
501 if (oldValue != null) { in merge()
[all …]
/dports/games/gogui/Quaqua/src/ch/randelshofer/quaqua/
H A DDefaultColumnCellRenderer.java79 public void firePropertyChange(String propertyName, short oldValue, short newValue) {} in DefaultColumnCellRenderer()
80 public void firePropertyChange(String propertyName, int oldValue, int newValue) {} in DefaultColumnCellRenderer()
81 public void firePropertyChange(String propertyName, long oldValue, long newValue) {} in DefaultColumnCellRenderer()
82 public void firePropertyChange(String propertyName, float oldValue, float newValue) {} in DefaultColumnCellRenderer()
96 super.firePropertyChange(propertyName, oldValue, newValue); in DefaultColumnCellRenderer()
98 public void firePropertyChange(String propertyName, short oldValue, short newValue) {} in DefaultColumnCellRenderer()
99 public void firePropertyChange(String propertyName, int oldValue, int newValue) {} in DefaultColumnCellRenderer()
100 public void firePropertyChange(String propertyName, long oldValue, long newValue) {} in DefaultColumnCellRenderer()
114 super.firePropertyChange(propertyName, oldValue, newValue); in DefaultColumnCellRenderer()
117 public void firePropertyChange(String propertyName, int oldValue, int newValue) {} in DefaultColumnCellRenderer()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/
H A DWorkingCopyPreferences.java136 String oldValue = null; in put() local
143 if (!value.equals(oldValue)) { in put()
182 Object oldValue = null; in remove() local
188 if (oldValue == null) { in remove()
214 String oldValue = null; in putInt() local
222 if (!newValue.equals(oldValue)) { in putInt()
248 String oldValue = null; in putLong() local
282 String oldValue = null; in putBoolean() local
308 String oldValue = null; in putFloat() local
342 String oldValue = null; in putDouble() local
[all …]
/dports/devel/quantum/quantum-2.2/quantum/util/impl/
H A Dquantum_spinlock_util_impl.h68 uint32_t oldValue = set(0, 0); in lockWrite() local
73 if (owners(oldValue) != 0) in lockWrite()
118 uint32_t oldValue = set(0, 1); in upgradeToWriteImpl() local
160 if (owners(oldValue) > 1) in upgradeToWriteImpl()
174 assert((owners(oldValue) == 0) || (owners(oldValue) == 1)); in upgradeToWriteImpl()
189 uint32_t oldValue = set(0, 0); in lockRead() local
193 if ((upgrades(oldValue) > 0) || (owners(oldValue) == -1)) in lockRead()
214 uint32_t oldValue = set(0, 1); in unlockRead() local
218 if (owners(oldValue) >= 1) in unlockRead()
224 else if ((owners(oldValue) == 0) || ((owners(oldValue) == -1))) in unlockRead()
[all …]
/dports/print/limereport/LimeReport-1.5.35/limereport/items/
H A Dlrbarcodeitem.cpp113 QString oldValue = m_content; in setContent() local
128 QString oldValue = m_datasource; in setDatasource() local
143 QString oldValue = m_field; in setField() local
146 notify("field", oldValue, field); in setField()
193 int oldValue = m_whitespace; in setWhitespace() local
208 AngleType oldValue = m_angle; in setAngle() local
225 int oldValue = m_barcodeHeight; in setBarcodeHeight() local
242 int oldValue = m_securityLevel; in setSecurityLevel() local
259 int oldValue = m_pdf417CodeWords; in setPdf417CodeWords() local
276 InputMode oldValue = m_inputMode; in setInputMode() local
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/model/
H A DAdventure.java41 Object oldValue = name; in setName() local
43 firePropertyChange("name", oldValue, name); in setName()
51 int oldValue = maxNumberOfPeople; in setMaxNumberOfPeople() local
70 Object oldValue = defaultLodging;
72 firePropertyChange("defaultLodging", oldValue, defaultLodging);
76 double oldValue = price;
86 boolean oldValue = petsAllowed;
97 Object oldValue = description;
99 firePropertyChange("description", oldValue, description);
103 Object oldValue = location;
[all …]
/dports/graphics/jogamp-jogl/gluegen/src/java/com/jogamp/common/util/
H A DArrayHashMap.java195 final V oldValue; in put() local
207 oldValue = map.put(key, value); in put()
208 if( !data.remove(oldValue) ) { in put()
217 if( !data.remove(oldValue) ) { in put()
225 return oldValue; in put()
248 final V oldValue = map.remove(key); in remove() local
249 if ( !data.remove(oldValue) ) { in remove()
252 return oldValue; in remove()
255 final V oldValue; in remove() local
258 if ( !data.remove(oldValue) ) { in remove()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DPagerSettings.cs61 if (oldValue != value) {
89 if (oldValue != value) {
141 if (oldValue != value) {
169 if (oldValue != value) {
198 PagerButtons oldValue = Mode;
199 if (oldValue != value) {
229 if (oldValue != value) {
257 if (oldValue != value) {
289 if (oldValue != value) {
346 if (oldValue != value) {
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/java/beans/
H A DPropertyChangeSupport.java264 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { in firePropertyChange() argument
265 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
285 public void firePropertyChange(String propertyName, int oldValue, int newValue) { in firePropertyChange() argument
286 if (oldValue != newValue) { in firePropertyChange()
306 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { in firePropertyChange() argument
307 if (oldValue != newValue) { in firePropertyChange()
323 Object oldValue = event.getOldValue(); in firePropertyChange() local
325 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
363 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in fireIndexedPropertyChange()
385 if (oldValue != newValue) { in fireIndexedPropertyChange()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/java/beans/
H A DPropertyChangeSupport.java264 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { in firePropertyChange() argument
265 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
285 public void firePropertyChange(String propertyName, int oldValue, int newValue) { in firePropertyChange() argument
286 if (oldValue != newValue) { in firePropertyChange()
306 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { in firePropertyChange() argument
307 if (oldValue != newValue) { in firePropertyChange()
323 Object oldValue = event.getOldValue(); in firePropertyChange() local
325 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
363 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in fireIndexedPropertyChange()
385 if (oldValue != newValue) { in fireIndexedPropertyChange()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/beans/
H A DPropertyChangeSupport.java261 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { in firePropertyChange() argument
262 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
281 public void firePropertyChange(String propertyName, int oldValue, int newValue) { in firePropertyChange() argument
282 if (oldValue != newValue) { in firePropertyChange()
301 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { in firePropertyChange() argument
302 if (oldValue != newValue) { in firePropertyChange()
317 Object oldValue = event.getOldValue(); in firePropertyChange() local
319 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in firePropertyChange()
357 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { in fireIndexedPropertyChange()
379 if (oldValue != newValue) { in fireIndexedPropertyChange()
[all …]

12345678910>>...189