| /openbsd-src/gnu/llvm/compiler-rt/lib/BlocksRuntime/ |
| H A D | runtime.c | 105 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; in latching_incr_int() local 119 if ((old_value & BLOCK_REFCOUNT_MASK) == BLOCK_REFCOUNT_MASK) { in latching_incr_int() 122 if (OSAtomicCompareAndSwapInt(old_value, old_value+1, (volatile int *)where)) { in latching_incr_int() 123 return old_value+1; in latching_incr_int() 131 unsigned long int old_value = *(volatile int *)where; 132 if ((old_value & BLOCK_REFCOUNT_MASK) == BLOCK_REFCOUNT_MASK) { [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Atomic.cpp | 46 sys::cas_flag old_value) { in CompareAndSwap() argument 49 if (result == old_value) in CompareAndSwap() 53 return __sync_val_compare_and_swap(ptr, old_value, new_value); in CompareAndSwap() 55 return InterlockedCompareExchange(ptr, new_value, old_value); in CompareAndSwap()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Predicate.h | 96 const T old_value = m_value; in SetValue() local 99 Broadcast(old_value, broadcast_type); in SetValue() 213 void Broadcast(T old_value, PredicateBroadcastType broadcast_type) { in Broadcast() argument 216 ((broadcast_type == eBroadcastOnChange) && old_value != m_value); in Broadcast() 220 __FUNCTION__, old_value, broadcast_type, m_value, broadcast); in Broadcast()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | ThreadPlanTracer.h | 41 bool old_value = m_enabled; in EnableTracing() local 43 if (old_value == false && value == true) in EnableTracing() 45 else if (old_value == true && value == false) in EnableTracing() 48 return old_value; in EnableTracing()
|
| H A D | ThreadPlan.h | 399 bool old_value = m_is_controlling_plan; in SetIsControllingPlan() local 401 return old_value; in SetIsControllingPlan()
|
| H A D | Target.h | 1372 bool old_value = m_suppress_stop_hooks; in SetSuppresStopHooks() local 1374 return old_value; in SetSuppresStopHooks()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | ValueObjectCast.cpp | 66 Value old_value(m_value); in UpdateValue() local 76 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() || in UpdateValue() 77 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue()
|
| H A D | ValueObjectVariable.cpp | 162 Value old_value(m_value); in UpdateValue() local 227 SetValueDidChange(value_type != old_value.GetValueType() || in UpdateValue() 228 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue() 237 SetValueDidChange(value_type != old_value.GetValueType() || in UpdateValue() 238 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue()
|
| H A D | ValueObjectMemory.cpp | 166 Value old_value(m_value); in UpdateValue() local 204 SetValueDidChange(value_type != old_value.GetValueType() || in UpdateValue() 205 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue()
|
| H A D | ValueObjectDynamicValue.cpp | 203 Value old_value(m_value); in UpdateValue() local 254 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() || in UpdateValue() 255 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue()
|
| /openbsd-src/gnu/lib/libreadline/ |
| H A D | history.c | 276 HIST_ENTRY *temp, *old_value; local 282 old_value = the_history[which]; 288 return (old_value);
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_mac.cpp | 110 TSAN_INTERCEPTOR(bool, f, t old_value, t new_value, t volatile *ptr) { \ in OSATOMIC_INTERCEPTORS_ARITHMETIC() 111 SCOPED_TSAN_INTERCEPTOR(f, old_value, new_value, ptr); \ in OSATOMIC_INTERCEPTORS_ARITHMETIC() 113 (volatile tsan_t *)ptr, (tsan_t *)&old_value, (tsan_t)new_value, \ in OSATOMIC_INTERCEPTORS_ARITHMETIC() 117 TSAN_INTERCEPTOR(bool, f##Barrier, t old_value, t new_value, \ 119 SCOPED_TSAN_INTERCEPTOR(f##Barrier, old_value, new_value, ptr); \ 121 (volatile tsan_t *)ptr, (tsan_t *)&old_value, (tsan_t)new_value, \
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointName.h | 121 bool old_value = m_permissions[permission]; in SetPermission() local 124 return old_value; in SetPermission()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Atomic.h | 38 cas_flag old_value);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | ssa-ccp.c | 311 unsigned int old_value = REGNO (src); local 312 latticevalue old_lattice_value = values[old_value].lattice_val; 318 || values[new_value].const_value != values[old_value].const_value) 323 values[new_value].const_value = values[old_value].const_value;
|
| /openbsd-src/sys/ddb/ |
| H A D | db_command.c | 926 db_expr_t old_value; in db_write_cmd() 956 old_value = db_get_value(addr, size, 0); in db_write_cmd() 959 old_value, DB_FORMAT_N, 0, 8)); in db_write_cmd() 918 db_expr_t old_value; db_write_cmd() local
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_linux.cpp | 348 uptr old_value = *tls_ptr; in AndroidTestTlsSlot() local 357 *tls_ptr = old_value; in AndroidTestTlsSlot()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 502 const bool old_value = m_batch_command_mode; in SetBatchCommandMode() local 504 return old_value; in SetBatchCommandMode()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | target.c | 1554 struct section_table *old_value; in target_resize_to_sections() local 1557 old_value = target->to_sections; in target_resize_to_sections() 1577 if (old_value) in target_resize_to_sections() 1582 if ((*t)->to_sections == old_value) in target_resize_to_sections() 1590 if (current_target.to_sections == old_value) in target_resize_to_sections()
|
| H A D | sol-thread.c | 585 char old_value[MAX_REGISTER_SIZE]; in sol_thread_store_registers() local 588 regcache_raw_collect (current_regcache, regnum, old_value); in sol_thread_store_registers() 600 regcache_raw_supply (current_regcache, regnum, old_value); in sol_thread_store_registers()
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | class.c | 1168 tree old_value; in handle_using_decl() local 1172 old_value = lookup_member (t, name, /*protect=*/0, /*want_type=*/false); in handle_using_decl() 1173 if (old_value) in handle_using_decl() 1175 if (is_overloaded_fn (old_value)) in handle_using_decl() 1176 old_value = OVL_CURRENT (old_value); in handle_using_decl() 1178 if (DECL_P (old_value) && DECL_CONTEXT (old_value) == t) in handle_using_decl() 1181 old_value = NULL_TREE; in handle_using_decl() 1189 if (! old_value) in handle_using_decl() 1191 else if (is_overloaded_fn (old_value)) in handle_using_decl() 1200 OVL_CURRENT (old_value)); in handle_using_decl() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | class.c | 1180 tree old_value; local 1215 old_value = IDENTIFIER_CLASS_VALUE (name); 1216 if (old_value) 1218 if (is_overloaded_fn (old_value)) 1219 old_value = OVL_CURRENT (old_value); 1221 if (DECL_P (old_value) && DECL_CONTEXT (old_value) == t) 1224 old_value = NULL_TREE; 1230 if (! old_value) 1232 else if (is_overloaded_fn (old_value)) 1241 OVL_CURRENT (old_value)); [all …]
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/ |
| H A D | tc-d30v.c | 1551 valueT old_value; in d30v_align() local 1557 old_value = S_GET_VALUE (label); in d30v_align() 1574 && S_GET_VALUE (sym) == old_value) in d30v_align()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-d30v.c | 2142 valueT old_value; local 2148 old_value = S_GET_VALUE (label); 2165 && S_GET_VALUE (sym) == old_value)
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/ |
| H A D | Builder.pm | 1520 my $old_value = ${ $pack . '::TODO' }; 1522 return $old_value;
|