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

1234

/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/include/llvm/Support/
H A DAtomic.h29 cas_flag new_value,
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DAtomic.cpp44 sys::cas_flag new_value,
49 *ptr = new_value;
52 return __sync_val_compare_and_swap(ptr, old_value, new_value);
54 return InterlockedCompareExchange(ptr, new_value, old_value);
43 CompareAndSwap(volatile sys::cas_flag* ptr, sys::cas_flag new_value, sys::cas_flag old_value) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DPredicate.h108 /// Set the contained \a m_value to \a new_value in a thread safe
349 /// value and then sets \a m_value to \a new_value. If \a m_value
351 /// set \a m_value to \a new_value and return without waiting.
363 /// @param[in] new_value
380 WaitForValueEqualToAndSetValueTo(T wait_value, T new_value, argument
393 printf("%s (wait_value = 0x%8.8x, new_value = 0x%8.8x, abstime = %p), m_value = 0x%8.8x\n", __FUNCTION__, wait_value, new_value, abstime, m_value);
405 m_value = new_value;
429 /// @param[out] new_value
441 WaitForValueNotEqualTo(T value, T &new_value, cons argument
[all...]
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/sys/
H A Dt_mlock.c61 vm_max_wired_sysctl(int *old_value, int *new_value) argument
64 size_t new_len = (new_value == NULL ? 0 : sizeof(int));
67 printf("Setting the new value to %d\n", *new_value);
70 new_value, new_len) == 0,
75 new_value, new_len) == 0,
83 set_vm_max_wired(int new_value) argument
102 vm_max_wired_sysctl(NULL, &new_value);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp381 OptionValue::SetBooleanValue (bool new_value) argument
386 option_value->SetCurrentValue(new_value);
402 OptionValue::SetCharValue(char new_value) argument
407 option_value->SetCurrentValue(new_value);
476 OptionValue::SetFormatValue (lldb::Format new_value) argument
481 option_value->SetCurrentValue(new_value);
537 OptionValue::SetSInt64Value (int64_t new_value) argument
542 option_value->SetCurrentValue(new_value);
558 OptionValue::SetStringValue (const char *new_value) argument
563 option_value->SetCurrentValue(new_value);
579 SetUInt64Value(uint64_t new_value) argument
[all...]
H A DOptionValueProperties.cpp383 OptionValueProperties::SetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) argument
391 value->SetBooleanValue(new_value);
421 OptionValueProperties::SetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
428 return value->SetEnumerationValue(new_value);
527 OptionValueProperties::SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
534 return value->SetSInt64Value(new_value);
553 OptionValueProperties::SetPropertyAtIndexAsString (const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value) argument
560 return value->SetStringValue(new_value);
589 OptionValueProperties::SetPropertyAtIndexAsUInt64 (const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) argument
596 return value->SetUInt64Value(new_value);
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValue.h331 SetBooleanValue (bool new_value);
335 char SetCharValue(char new_value);
356 SetFormatValue (lldb::Format new_value);
374 SetSInt64Value (int64_t new_value);
380 SetStringValue (const char *new_value);
386 SetUInt64Value (uint64_t new_value);
H A DOptionValueProperties.h183 SetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool new_value);
192 SetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value);
207 SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value);
213 SetPropertyAtIndexAsUInt64 (const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value);
219 SetPropertyAtIndexAsString (const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value);
/freebsd-11.0-release/contrib/llvm/projects/libunwind/src/
H A DUnwind-sjlj.c370 uintptr_t new_value) {
372 , context, index, new_value);
374 ufc->resumeParameters[index] = new_value;
402 uintptr_t new_value) {
404 context, new_value);
406 ufc->resumeLocation = new_value - 1;
369 _Unwind_SetGR(struct _Unwind_Context *context, int index, uintptr_t new_value) argument
401 _Unwind_SetIP(struct _Unwind_Context *context, uintptr_t new_value) argument
/freebsd-11.0-release/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.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanRunToAddress.h54 SetStopOthers(bool new_value) override;
H A DThreadPlanCallFunction.h132 SetStopOthers(bool new_value) override;
H A DThreadPlanStepInRange.h61 SetDefaultFlagValue (uint32_t new_value);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/
H A DABIMacOSX_arm64.h114 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.h42 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/
H A DABISysV_arm64.h40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/sys/sys/
H A Dtimers.h103 struct itimerspec * new_value,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.h40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/
H A DABISysV_arm.h40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
H A DABISysV_hexagon.h51 lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/
H A DABISysV_i386.h44 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/
H A DABISysV_mips.h41 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
H A DABISysV_mips64.h41 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override;

Completed in 145 milliseconds

1234