Home
last modified time | relevance | path

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

1234

/freebsd-14.2/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()
28 new_value = old_value | d; in __kmp_test_then_or8()
37 new_value = old_value & d; in __kmp_test_then_and8()
42 new_value = old_value & d; in __kmp_test_then_and8()
51 new_value = old_value | d; in __kmp_test_then_or32()
66 new_value = old_value & d; in __kmp_test_then_and32()
82 new_value = old_value + d; in __kmp_test_then_add8()
96 new_value = old_value + d; in __kmp_test_then_add64()
111 new_value = old_value | d; in __kmp_test_then_or64()
[all …]
H A Dkmp_atomic.cpp820 new_value.vvv = (kmp_int##BITS *)&new_value.cmp; \
847 new_value.vvv = (kmp_int##BITS *)&new_value.cmp; \
2235 return new_value;
2249 return new_value;
2650 return new_value;
2946 return new_value;
3426 kmp_int8 old_value, new_value; in __kmpc_atomic_1() local
3429 (*f)(&new_value, &old_value, rhs); in __kmpc_atomic_1()
3473 kmp_int16 old_value, new_value; in __kmpc_atomic_2() local
3522 kmp_int32 old_value, new_value; in __kmpc_atomic_4() local
[all …]
H A Dz_Linux_util.cpp314 new_value = old_value | d; in __kmp_test_then_or8()
319 new_value = old_value | d; in __kmp_test_then_or8()
328 new_value = old_value & d; in __kmp_test_then_and8()
333 new_value = old_value & d; in __kmp_test_then_and8()
342 new_value = old_value | d; in __kmp_test_then_or32()
347 new_value = old_value | d; in __kmp_test_then_or32()
356 new_value = old_value & d; in __kmp_test_then_and32()
371 new_value = old_value + d; in __kmp_test_then_add8()
385 new_value = old_value + d; in __kmp_test_then_add64()
400 new_value = old_value | d; in __kmp_test_then_or64()
[all …]
/freebsd-14.2/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-14.2/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 SetBooleanValue() argument
283 option_value->SetCurrentValue(new_value); in SetBooleanValue()
296 bool OptionValue::SetCharValue(char new_value) { in SetCharValue() argument
299 option_value->SetCurrentValue(new_value); in SetCharValue()
360 bool OptionValue::SetFormatValue(lldb::Format new_value) { in SetFormatValue() argument
363 option_value->SetCurrentValue(new_value); in SetFormatValue()
406 bool OptionValue::SetSInt64Value(int64_t new_value) { in SetSInt64Value() argument
409 option_value->SetCurrentValue(new_value); in SetSInt64Value()
425 option_value->SetCurrentValue(new_value); in SetStringValue()
438 bool OptionValue::SetUInt64Value(uint64_t new_value) { in SetUInt64Value() argument
[all …]
/freebsd-14.2/sys/ddb/
H A Ddb_write_cmd.c51 db_expr_t new_value; in db_write_cmd() local
73 while (db_expression(&new_value)) { in db_write_cmd()
76 db_printf("\t\t%#8lr\t=\t%#8lr\n", (long)old_value,(long)new_value); in db_write_cmd()
77 db_put_value(addr, size, new_value); in db_write_cmd()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c429 uintptr_t new_value) { in _Unwind_SetGR() argument
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() argument
465 (void *)context, new_value); in _Unwind_SetIP()
467 ufc->resumeLocation = new_value - 1; in _Unwind_SetIP()
/freebsd-14.2/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-14.2/tests/sys/cddl/zfs/tests/cli_root/zfs_set/
H A Duser_property_002_pos.ksh129 new_value=$(user_property_value 16)
130 log_must eval "$ZFS set $prop_name='$new_value' $fs"
131 log_must eval "check_user_prop $fs $prop_name '$new_value'"
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanPython.h49 void SetStopOthers(bool new_value) override { m_stop_others = new_value; } in SetStopOthers() argument
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DAtomic.h37 cas_flag new_value,
/freebsd-14.2/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-14.2/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-14.2/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-14.2/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-14.2/sys/contrib/xen/
H A Dvm_event.h305 uint64_t new_value; member
327 uint64_t new_value; member

1234