Searched refs:new_value (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT-586_util.cpp20 kmp_int8 old_value, new_value; local
23 new_value = old_value | d;
25 while (!__kmp_compare_and_store8(p, old_value, new_value)) {
28 new_value = old_value | d;
34 kmp_int8 old_value, new_value; local
37 new_value = old_value & d;
39 while (!__kmp_compare_and_store8(p, old_value, new_value)) {
42 new_value = old_value & d;
48 kmp_uint32 old_value, new_value; local
51 new_value
63 kmp_uint32 old_value, new_value; local
78 kmp_int64 old_value, new_value; local
92 kmp_int64 old_value, new_value; local
106 kmp_uint64 old_value, new_value; local
121 kmp_uint64 old_value, new_value; local
[all...]
H A Dkmp_atomic.cpp775 TYPE old_value, new_value; \
777 new_value = old_value OP rhs; \
780 *VOLATILE_CAST(kmp_int##BITS *) & new_value)) { \
784 new_value = old_value OP rhs; \
801 struct _sss old_value, new_value; \
803 new_value.vvv = (kmp_int##BITS *)&new_value.cmp; \
805 new_value.cmp = old_value.cmp OP rhs; \
808 *VOLATILE_CAST(kmp_int##BITS *) new_value.vvv)) { \
812 new_value
3338 kmp_int8 old_value, new_value; local
3385 kmp_int16 old_value, new_value; local
3434 kmp_int32 old_value, new_value; local
3484 kmp_int64 old_value, new_value; local
[all...]
H A Dz_Linux_util.cpp337 kmp_int8 old_value, new_value; local
340 new_value = old_value | d;
342 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) {
345 new_value = old_value | d;
351 kmp_int8 old_value, new_value; local
354 new_value = old_value & d;
356 while (!KMP_COMPARE_AND_STORE_REL8(p, old_value, new_value)) {
359 new_value = old_value & d;
365 kmp_uint32 old_value, new_value; local
368 new_value
379 kmp_uint32 old_value, new_value; local
394 kmp_int8 old_value, new_value; local
408 kmp_int64 old_value, new_value; local
423 kmp_uint64 old_value, new_value; local
436 kmp_uint64 old_value, new_value; local
1388 int new_value = __kmp_fork_count + 1; local
[all...]
/freebsd-11-stable/lib/libc/tests/sys/
H A Dmlock_helper.c45 vm_max_wired_sysctl(int *old_value, int *new_value) argument
48 size_t new_len = (new_value == NULL ? 0 : sizeof(int));
51 printf("Setting the new value to %d\n", *new_value);
54 new_value, new_len) == 0,
59 new_value, new_len) == 0,
67 set_vm_max_wired(int new_value) argument
86 vm_max_wired_sysctl(NULL, &new_value);
/freebsd-11-stable/sys/ddb/
H A Ddb_write_cmd.c51 db_expr_t new_value; local
73 while (db_expression(&new_value)) {
76 db_printf("\t\t%#8lr\t=\t%#8lr\n", (long)old_value,(long)new_value);
77 db_put_value(addr, size, new_value);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAtomic.cpp45 sys::cas_flag new_value,
50 *ptr = new_value;
53 return __sync_val_compare_and_swap(ptr, old_value, new_value);
55 return InterlockedCompareExchange(ptr, new_value, old_value);
44 CompareAndSwap(volatile sys::cas_flag* ptr, sys::cas_flag new_value, sys::cas_flag old_value) argument
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_dav_protocol.h61 const svn_string_t *new_value; member in struct:svn_dav__two_props_t
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAtomic.h37 cas_flag new_value,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DCFString.cpp46 CFStringRef new_value = NULL; local
48 new_value =
50 reset(new_value);
55 CFStringRef new_value = NULL; local
61 new_value = (CFStringRef)::CFRetain(cf_type);
63 new_value =
67 reset(new_value);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp280 bool OptionValue::SetBooleanValue(bool new_value) { argument
283 option_value->SetCurrentValue(new_value);
296 char OptionValue::SetCharValue(char new_value) { argument
299 option_value->SetCurrentValue(new_value);
351 bool OptionValue::SetFormatValue(lldb::Format new_value) { argument
354 option_value->SetCurrentValue(new_value);
398 bool OptionValue::SetSInt64Value(int64_t new_value) { argument
401 option_value->SetCurrentValue(new_value);
414 bool OptionValue::SetStringValue(llvm::StringRef new_value) { argument
417 option_value->SetCurrentValue(new_value);
430 SetUInt64Value(uint64_t new_value) argument
[all...]
H A DOptionValueProperties.cpp332 const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) {
337 value->SetBooleanValue(new_value);
365 const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) {
370 return value->SetEnumerationValue(new_value);
457 const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) {
462 return value->SetSInt64Value(new_value);
480 const ExecutionContext *exe_ctx, uint32_t idx, llvm::StringRef new_value) {
485 return value->SetStringValue(new_value);
510 const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) {
515 return value->SetUInt64Value(new_value);
331 SetPropertyAtIndexAsBoolean( const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) argument
364 SetPropertyAtIndexAsEnumeration( const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
456 SetPropertyAtIndexAsSInt64( const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
479 SetPropertyAtIndexAsString( const ExecutionContext *exe_ctx, uint32_t idx, llvm::StringRef new_value) argument
509 SetPropertyAtIndexAsUInt64( const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h251 bool SetBooleanValue(bool new_value);
255 char SetCharValue(char new_value);
270 bool SetFormatValue(lldb::Format new_value);
283 bool SetSInt64Value(int64_t new_value);
288 bool SetStringValue(llvm::StringRef new_value);
292 bool SetUInt64Value(uint64_t new_value);
H A DOptionValueProperties.h130 uint32_t idx, bool new_value);
141 uint32_t idx, int64_t new_value);
159 int64_t new_value);
165 uint64_t new_value);
172 llvm::StringRef new_value);
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-windata.c253 Opaque new_value; local
260 has changed (data_element_ptr, frame, &new_value)
262 data_element_ptr->value = new_value;
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c416 uintptr_t new_value) {
419 (void *)context, index, new_value);
421 ufc->resumeParameters[index] = new_value;
450 uintptr_t new_value) {
452 (void *)context, new_value);
454 ufc->resumeLocation = new_value - 1;
415 _Unwind_SetGR(struct _Unwind_Context *context, int index, uintptr_t new_value) argument
449 _Unwind_SetIP(struct _Unwind_Context *context, uintptr_t new_value) argument
/freebsd-11-stable/sys/sys/
H A Dtimers.h103 struct itimerspec * new_value,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanRunToAddress.h40 void SetStopOthers(bool new_value) override;
H A DThreadPlanCallFunction.h97 void SetStopOthers(bool new_value) override;
H A DThreadPlanStepInRange.h48 static void SetDefaultFlagValue(uint32_t new_value);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/
H A DABISysV_mips64.h31 lldb::ValueObjectSP &new_value) override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.h31 lldb::ValueObjectSP &new_value) override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/
H A DABISysV_i386.h33 lldb::ValueObjectSP &new_value) override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/
H A DABISysV_mips.h31 lldb::ValueObjectSP &new_value) override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/
H A DABISysV_ppc64.h31 lldb::ValueObjectSP &new_value) override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/
H A DABISysV_ppc.h31 lldb::ValueObjectSP &new_value) override;

Completed in 203 milliseconds

1234