Home
last modified time | relevance | path

Searched refs:new_value (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT-586_util.cpp20 kmp_int8 old_value, new_value; in __kmp_test_then_or8() local
23 new_value = old_value | d; in __kmp_test_then_or8()
25 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) { in __kmp_test_then_or8()
28 new_value = old_value | d; in __kmp_test_then_or8()
34 kmp_int8 old_value, new_value; in __kmp_test_then_and8() local
37 new_value = old_value & d; in __kmp_test_then_and8()
39 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) { in __kmp_test_then_and8()
42 new_value = old_value & d; in __kmp_test_then_and8()
48 kmp_uint32 old_value, new_value; in __kmp_test_then_or32() local
51 new_value = old_value | d; in __kmp_test_then_or32()
[all …]
H A Dkmp_atomic.cpp792 TYPE old_value, new_value; \
794 new_value = (TYPE)(old_value OP rhs); \
797 *VOLATILE_CAST(kmp_int##BITS *) & new_value)) { \
801 new_value = (TYPE)(old_value OP rhs); \
818 struct _sss old_value, new_value; \
820 new_value.vvv = (kmp_int##BITS *)&new_value.cmp; \
822 new_value.cmp = (TYPE)(old_value.cmp OP rhs); \
825 *VOLATILE_CAST(kmp_int##BITS *) new_value.vvv)) { \
829 new_value.cmp = (TYPE)(old_value.cmp OP rhs); \
845 struct _sss old_value, new_value; \
[all …]
H A Dz_Linux_util.cpp327 kmp_int8 old_value, new_value; in __kmp_test_then_or8() local
330 new_value = old_value | d; in __kmp_test_then_or8()
332 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) { in __kmp_test_then_or8()
335 new_value = old_value | d; in __kmp_test_then_or8()
341 kmp_int8 old_value, new_value; in __kmp_test_then_and8() local
344 new_value = old_value & d; in __kmp_test_then_and8()
346 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) { in __kmp_test_then_and8()
349 new_value = old_value & d; in __kmp_test_then_and8()
355 kmp_uint32 old_value, new_value; in __kmp_test_then_or32() local
358 new_value = old_value | d; in __kmp_test_then_or32()
[all …]
/freebsd/lib/libc/tests/sys/
H A Dmlock_helper.c42 vm_max_wired_sysctl(u_long *old_value, u_long *new_value) in vm_max_wired_sysctl() argument
45 size_t new_len = (new_value == NULL ? 0 : sizeof(*new_value)); in vm_max_wired_sysctl()
48 printf("Setting the new value to %lu\n", *new_value); in vm_max_wired_sysctl()
51 new_value, new_len) == 0, in vm_max_wired_sysctl()
56 new_value, new_len) == 0, in vm_max_wired_sysctl()
64 set_vm_max_wired(u_long new_value) in set_vm_max_wired() argument
83 vm_max_wired_sysctl(NULL, &new_value); in set_vm_max_wired()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueString.cpp78 std::string new_value(m_current_value); in SetValueFromString() local
83 new_value.append(str); in SetValueFromString()
85 new_value.append(std::string(value)); in SetValueFromString()
88 error = m_validator(new_value.c_str(), m_validator_baton); in SetValueFromString()
92 m_current_value.assign(new_value); in SetValueFromString()
133 std::string new_value(m_current_value); in AppendToCurrentValue() local
134 new_value.append(value); in AppendToCurrentValue()
138 m_current_value.assign(new_value); in AppendToCurrentValue()
H A DOptionValue.cpp280 bool OptionValue::SetBooleanValue(bool new_value) { in SetCharValue()
283 option_value->SetCurrentValue(new_value); in GetEnumerationValue()
296 bool OptionValue::SetCharValue(char new_value) { in GetFileSpecValue()
299 option_value->SetCurrentValue(new_value); in GetFileSpecValue()
360 bool OptionValue::SetFormatValue(lldb::Format new_value) { in GetRegexValue()
363 option_value->SetCurrentValue(new_value);
406 bool OptionValue::SetSInt64Value(int64_t new_value) { in GetUUIDValue()
409 option_value->SetCurrentValue(new_value); in GetUUIDValue()
422 bool OptionValue::SetStringValue(llvm::StringRef new_value) { in GetArchSpecValue()
425 option_value->SetCurrentValue(new_value);
260 SetBooleanValue(bool new_value) SetBooleanValue() argument
274 SetCharValue(char new_value) SetCharValue() argument
330 SetFormatValue(lldb::Format new_value) SetFormatValue() argument
370 SetSInt64Value(int64_t new_value) SetSInt64Value() argument
384 SetStringValue(llvm::StringRef new_value) SetStringValue() argument
398 SetUInt64Value(uint64_t new_value) SetUInt64Value() argument
[all...]
/freebsd/sys/ddb/
H A Ddb_write_cmd.c50 db_expr_t new_value; in db_write_cmd() local
72 while (db_expression(&new_value)) { in db_write_cmd()
75 db_printf("\t\t%#8lr\t=\t%#8lr\n", (long)old_value,(long)new_value); in db_write_cmd()
76 db_put_value(addr, size, new_value); in db_write_cmd()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAtomic.cpp45 sys::cas_flag new_value, in CompareAndSwap() argument
50 *ptr = new_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()
/freebsd/sys/kern/
H A Dsys_timerfd.c509 const struct itimerspec *new_value, struct itimerspec *old_value) in kern_timerfd_settime() argument
518 if (!timespecvalid_interval(&new_value->it_value) || in kern_timerfd_settime()
519 !timespecvalid_interval(&new_value->it_interval)) in kern_timerfd_settime()
540 tfd->tfd_time = *new_value; in kern_timerfd_settime()
592 struct itimerspec new_value, old_value; in sys_timerfd_settime() local
595 error = copyin(uap->new_value, &new_value, sizeof(new_value)); in sys_timerfd_settime()
600 &new_value, NULL); in sys_timerfd_settime()
603 &new_value, &old_value); in sys_timerfd_settime()
/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c429 uintptr_t new_value) { in _Unwind_SetGR()
432 (void *)context, index, new_value); in _Unwind_SetGR()
434 ufc->resumeParameters[index] = new_value; in _Unwind_SetGR()
463 uintptr_t new_value) { in _Unwind_SetIP()
465 (void *)context, new_value); in _Unwind_SetIP()
467 ufc->resumeLocation = new_value - 1; in _Unwind_SetIP()
428 _Unwind_SetGR(struct _Unwind_Context * context,int index,uintptr_t new_value) _Unwind_SetGR() argument
462 _Unwind_SetIP(struct _Unwind_Context * context,uintptr_t new_value) _Unwind_SetIP() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h357 bool SetBooleanValue(bool new_value);
360 bool SetCharValue(char new_value);
371 bool SetSInt64Value(int64_t new_value);
374 bool SetUInt64Value(uint64_t new_value);
377 bool SetFormatValue(lldb::Format new_value);
383 bool SetStringValue(llvm::StringRef new_value);
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Duser_property_002_pos.ksh115 new_value=$(user_property_value 16)
116 log_must eval "zfs set $prop_name='$new_value' $fs"
117 log_must eval "check_user_prop $fs $prop_name '$new_value'"
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_set/
H A Duser_property_002_pos.ksh126 new_value=$(user_property_value 16)
127 log_must eval "$ZFS set $prop_name='$new_value' $fs"
128 log_must eval "check_user_prop $fs $prop_name '$new_value'"
/freebsd/contrib/llvm-project/libunwind/include/
H A Dunwind_itanium.h68 uintptr_t new_value);
70 extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanPython.h50 void SetStopOthers(bool new_value) override { m_stop_others = new_value; } in SetStopOthers() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp111 TSAN_INTERCEPTOR(bool, f, t old_value, t new_value, t volatile *ptr) { \ in OSATOMIC_INTERCEPTORS_ARITHMETIC()
112 SCOPED_TSAN_INTERCEPTOR(f, old_value, new_value, ptr); \ in OSATOMIC_INTERCEPTORS_ARITHMETIC()
114 (volatile tsan_t *)ptr, (tsan_t *)&old_value, (tsan_t)new_value, \ in OSATOMIC_INTERCEPTORS_ARITHMETIC()
118 TSAN_INTERCEPTOR(bool, f##Barrier, t old_value, t new_value, \
120 SCOPED_TSAN_INTERCEPTOR(f##Barrier, old_value, new_value, ptr); \
122 (volatile tsan_t *)ptr, (tsan_t *)&old_value, (tsan_t)new_value, \
/freebsd/contrib/kyua/utils/config/
H A Dnodes_test.cpp53 validate(const value_type& new_value) const in validate()
55 if (new_value == 12345) in validate()
69 validate(const value_type& new_value) const in validate()
71 for (value_type::const_iterator iter = new_value.begin(); in validate()
72 iter != new_value.end(); ++iter) in validate()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DAtomic.h37 cas_flag new_value,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp164 void ThreadPlanRunToAddress::SetStopOthers(bool new_value) { in SetStopOthers() argument
165 m_stop_others = new_value; in SetStopOthers()
/freebsd/sys/sys/
H A Dtimerfd.h55 int timerfd_settime(int fd, int flags, const struct itimerspec *new_value,
H A Dtimers.h77 struct itimerspec * new_value,
/freebsd/sys/dev/ocs_fc/
H A Docs_ioctl.c917 uint32_t new_value; in ocs_sysctl_config_topology() local
928 rc = sysctl_handle_int(oidp, &new_value, 0, req); in ocs_sysctl_config_topology()
932 if (new_value == old_value) { in ocs_sysctl_config_topology()
936 snprintf(buf, sizeof(buf), "%d",new_value); in ocs_sysctl_config_topology()
947 uint32_t new_value; in ocs_sysctl_config_speed() local
958 rc = sysctl_handle_int(oidp, &new_value, 0, req); in ocs_sysctl_config_speed()
962 if (new_value == old_value) { in ocs_sysctl_config_speed()
966 snprintf(buf, sizeof(buf), "%d",new_value); in ocs_sysctl_config_speed()
/freebsd/usr.sbin/bsdconfig/share/
H A Dstruct.subr108 # f_struct $name set $property $new_value
123 # For setting properties of a struct, sets the value of $property to $new_value
139 set) local new_value="$4"
140 setvar "_struct_value_${__name}_$__property" "$new_value" ;;
H A Dsysrc.subr455 # f_sysrc_set $varname $new_value
468 # -v new_value="new_value"
520 t1, new_value, t2, value
527 local varname="$1" new_value="$2"
568 echo "$varname=\"$new_value\"" >> "$file"
621 -v new_value="$new_value" "$f_sysrc_set_awk" )
629 echo "$varname=\"$new_value\"" >> "$tmpfile"
/freebsd/sys/contrib/xen/
H A Dvm_event.h305 uint64_t new_value; member
327 uint64_t new_value; member

1234