Searched refs:old_value (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DSaveAndRestore.h24 SaveAndRestore(T& x) : X(x), old_value(x) {}
25 SaveAndRestore(T& x, const T &new_value) : X(x), old_value(x) {
28 ~SaveAndRestore() { X = old_value; }
29 T get() { return old_value; }
32 T old_value; member in struct:llvm::SaveAndRestore
39 SaveOr(bool& x) : X(x), old_value(x) { x = false; }
40 ~SaveOr() { X |= old_value; }
43 const bool old_value; member in struct:llvm::SaveOr
H A DAtomic.h30 cas_flag old_value);
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanTracer.h57 bool old_value = m_enabled; local
59 if (old_value == false && value == true)
61 else if (old_value == true && value == false)
64 return old_value;
76 bool old_value = m_single_step; local
78 return old_value;
H A DThreadPlan.h395 bool old_value = m_is_master_plan; local
397 return old_value;
/freebsd-10.3-release/sys/ddb/
H A Ddb_write_cmd.c52 db_expr_t old_value; local
76 old_value = db_get_value(addr, size, FALSE);
78 db_printf("\t\t%#8lr\t=\t%#8lr\n", (long)old_value,(long)new_value);
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DPredicate.h127 const T old_value = m_value; local
130 Broadcast(old_value, broadcast_type);
155 const T old_value = m_value; local
158 Broadcast(old_value, broadcast_type);
183 const T old_value = m_value; local
186 Broadcast(old_value, broadcast_type);
480 /// depedning on the \a old_value and on the \a broadcast_type.
492 Broadcast (T old_value, PredicateBroadcastType broadcast_type) argument
494 bool broadcast = (broadcast_type == eBroadcastAlways) || ((broadcast_type == eBroadcastOnChange) && old_value != m_value);
496 printf("%s (old_value
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/include/private/
H A Dsvn_named_atomic.h126 * in @a *old_value. @a old_value may be NULL.
131 svn_named_atomic__write(apr_int64_t *old_value,
146 * @a new_value. Return the initial value in @a *old_value.
147 * @a old_value may be NULL.
152 svn_named_atomic__cmpxchg(apr_int64_t *old_value,
/freebsd-10.3-release/contrib/compiler-rt/BlocksRuntime/
H A Druntime.c105 unsigned long int old_value = *(volatile unsigned long int *)where;
106 if ((old_value & BLOCK_REFCOUNT_MASK) == BLOCK_REFCOUNT_MASK) {
109 if (OSAtomicCompareAndSwapLong(old_value, old_value+1, (volatile long int *)where)) {
110 return old_value+1;
118 int old_value = *(volatile int *)where; local
119 if ((old_value & BLOCK_REFCOUNT_MASK) == BLOCK_REFCOUNT_MASK) {
122 if (OSAtomicCompareAndSwapInt(old_value, old_value+1, (volatile int *)where)) {
123 return old_value
147 int old_value = *(volatile int *)where; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectCast.cpp98 Value old_value(m_value);
110 SetValueDidChange (m_value.GetValueType() != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
H A DValueObjectDynamicValue.cpp268 Value old_value(m_value);
329 SetValueDidChange (m_value.GetValueType() != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
H A DValueObjectMemory.cpp189 Value old_value(m_value);
233 SetValueDidChange (value_type != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
H A DValueObjectVariable.cpp154 Value old_value(m_value);
233 SetValueDidChange (value_type != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DAtomic.cpp44 sys::cas_flag old_value) {
47 if (result == old_value)
51 return __sync_val_compare_and_swap(ptr, old_value, new_value);
53 return InterlockedCompareExchange(ptr, new_value, old_value);
42 CompareAndSwap(volatile sys::cas_flag* ptr, sys::cas_flag new_value, sys::cas_flag old_value) argument
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_subr/
H A Dnamed_atomic.c140 apr_int64_t old_value = *mem; local
143 return old_value;
157 apr_int64_t old_value = *mem; local
158 if (old_value == comperand)
161 return old_value;
617 svn_named_atomic__write(apr_int64_t *old_value, argument
626 if (old_value)
627 *old_value = temp;
649 svn_named_atomic__cmpxchg(apr_int64_t *old_value, argument
661 if (old_value)
[all...]
/freebsd-10.3-release/contrib/apr/atomic/unix/
H A Dmutex.c112 apr_uint32_t old_value; local
115 old_value = *mem;
120 return old_value;
/freebsd-10.3-release/sys/sys/
H A Dtimers.h104 struct itimerspec * old_value);
/freebsd-10.3-release/contrib/libreadline/
H A Dhistory.c373 HIST_ENTRY *temp, *old_value; local
379 old_value = the_history[which];
383 temp->timestamp = savestring (old_value->timestamp);
386 return (old_value);
/freebsd-10.3-release/contrib/ntp/sntp/unity/
H A Dunity_fixture.c276 void * old_value; member in struct:_PointerPair
294 pointer_store[pointer_index].old_value = *pointer;
305 pointer_store[pointer_index].old_value;
/freebsd-10.3-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_recv.c260 HAL_BOOL old_value = ahp->ah_get_plcp_hdr == 0; local
263 return old_value;
273 return old_value;
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_repos/
H A Dfs-wrap.c348 const svn_string_t *old_value;
357 old_value = *old_value_p;
366 old_value = old_value2;
372 else if (! old_value)
382 /* ### currently not passing the old_value to hooks */
389 &old_value, new_value, pool));
393 author, name, old_value,
345 const svn_string_t *old_value; local
H A Drepos.h285 const svn_string_t *old_value,
H A Dhooks.c679 const svn_string_t *old_value,
697 if (old_value)
698 SVN_ERR(create_temp_file(&stdin_handle, old_value, pool));
673 svn_repos__hooks_post_revprop_change(svn_repos_t *repos, apr_hash_t *hooks_env, svn_revnum_t rev, const char *author, const char *name, const svn_string_t *old_value, char action, apr_pool_t *pool) argument
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h395 const bool old_value = m_batch_command_mode; local
397 return old_value;
/freebsd-10.3-release/sys/dev/aic7xxx/
H A Daic79xx_osm.c1487 db_expr_t old_value; local
1516 old_value = ahd_inb(ahd_ddb_softc, addr);
1520 old_value = ahd_inw(ahd_ddb_softc, addr);
1524 old_value = ahd_inl(ahd_ddb_softc, addr);
1530 (u_long)old_value, (u_long)new_value);
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_wc/
H A Dprops.c1729 svn_string_t *old_value = svn_hash_gets(prophash, SVN_PROP_KEYWORDS);
1732 if (old_value)
1735 old_value->data, TRUE,
1769 svn_string_t *old_value = svn_hash_gets(prophash, SVN_PROP_EOL_STYLE);
1771 if (((value == NULL) != (old_value == NULL))
1772 || (value && ! svn_string_compare(value, old_value)))
1727 svn_string_t *old_value = svn_hash_gets(prophash, SVN_PROP_KEYWORDS); local
1767 svn_string_t *old_value = svn_hash_gets(prophash, SVN_PROP_EOL_STYLE); local

Completed in 265 milliseconds

12