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

123

/freebsd-10.1-release/sys/ddb/
H A Ddb_write_cmd.c56 db_expr_t new_value; local
78 while (db_expression(&new_value)) {
81 db_printf("\t\t%#8lr\t=\t%#8lr\n", (long)old_value,(long)new_value);
82 db_put_value(addr, size, new_value);
/freebsd-10.1-release/contrib/subversion/subversion/include/private/
H A Dsvn_named_atomic.h125 /** Set the data in @a atomic to @a new_value and return its old content
132 apr_int64_t new_value,
136 * @a *new_value. @a new_value may be null.
141 svn_named_atomic__add(apr_int64_t *new_value,
146 * @a new_value. Return the initial value in @a *old_value.
153 apr_int64_t new_value,
H A Dsvn_dav_protocol.h61 const svn_string_t *new_value; member in struct:svn_dav__two_props_t
/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DSaveAndRestore.h25 SaveAndRestore(T& x, const T &new_value) : X(x), old_value(x) { argument
26 X = new_value;
H A DAtomic.h29 cas_flag new_value,
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DAtomic.cpp43 sys::cas_flag new_value,
48 *ptr = new_value;
51 return __sync_val_compare_and_swap(ptr, old_value, new_value);
53 return InterlockedCompareExchange(ptr, new_value, old_value);
42 CompareAndSwap(volatile sys::cas_flag* ptr, sys::cas_flag new_value, sys::cas_flag old_value) argument
/freebsd-10.1-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, const TimeValue *abstime = NULL, bool *timed_out = NULL) argument
391 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);
403 m_value = new_value;
428 /// @param[out] new_value
440 WaitForValueNotEqualTo (T value, T &new_value, cons argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp334 OptionValue::SetBooleanValue (bool new_value) argument
339 option_value->SetCurrentValue(new_value);
408 OptionValue::SetFormatValue (lldb::Format new_value) argument
413 option_value->SetCurrentValue(new_value);
439 OptionValue::SetSInt64Value (int64_t new_value) argument
444 option_value->SetCurrentValue(new_value);
460 OptionValue::SetStringValue (const char *new_value) argument
465 option_value->SetCurrentValue(new_value);
481 OptionValue::SetUInt64Value (uint64_t new_value) argument
486 option_value->SetCurrentValue(new_value);
[all...]
H A DOptionValueProperties.cpp363 OptionValueProperties::SetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) argument
371 value->SetBooleanValue(new_value);
401 OptionValueProperties::SetPropertyAtIndexAsEnumeration (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
408 return value->SetEnumerationValue(new_value);
495 OptionValueProperties::SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) argument
502 return value->SetSInt64Value(new_value);
521 OptionValueProperties::SetPropertyAtIndexAsString (const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value) argument
528 return value->SetStringValue(new_value);
557 OptionValueProperties::SetPropertyAtIndexAsUInt64 (const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) argument
564 return value->SetUInt64Value(new_value);
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValue.h304 SetBooleanValue (bool new_value);
325 SetFormatValue (lldb::Format new_value);
334 SetSInt64Value (int64_t new_value);
340 SetStringValue (const char *new_value);
346 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);
204 SetPropertyAtIndexAsSInt64 (const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value);
210 SetPropertyAtIndexAsUInt64 (const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value);
216 SetPropertyAtIndexAsString (const ExecutionContext *exe_ctx, uint32_t idx, const char *new_value);
/freebsd-10.1-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-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DABI.h53 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) = 0;
H A DThreadPlanRunToAddress.h56 SetStopOthers (bool new_value);
H A DThreadPlanStepInRange.h61 SetDefaultFlagValue (uint32_t new_value);
H A DThreadPlanCallFunction.h56 SetStopOthers (bool new_value);
/freebsd-10.1-release/sys/sys/
H A Dtimers.h103 struct itimerspec * new_value,
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dnamed_atomic.c618 apr_int64_t new_value,
624 NA_SYNCHRONIZE(atomic, temp = synched_write(&atomic->data->value, new_value));
633 svn_named_atomic__add(apr_int64_t *new_value, argument
642 if (new_value)
643 *new_value = temp;
650 apr_int64_t new_value,
658 new_value,
617 svn_named_atomic__write(apr_int64_t *old_value, apr_int64_t new_value, svn_named_atomic__t *atomic) argument
649 svn_named_atomic__cmpxchg(apr_int64_t *old_value, apr_int64_t new_value, apr_int64_t comperand, svn_named_atomic__t *atomic) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.h40 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.h50 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.h44 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
/freebsd-10.1-release/sys/xen/interface/xsm/
H A Dflask_op.h94 uint8_t new_value; member in struct:xen_flask_boolean
/freebsd-10.1-release/contrib/subversion/subversion/include/
H A Dsvn_subst.h665 * @a *new_value. Recognized line endings are: "\n", "\r", and "\r\n".
667 * Set @a *new_value to the translated string, allocated in @a result_pool.
674 svn_subst_translate_string2(svn_string_t **new_value,
689 svn_error_t *svn_subst_translate_string(svn_string_t **new_value,
699 * Set @a *new_value to the translated string, allocated in @a pool.
701 svn_error_t *svn_subst_detranslate_string(svn_string_t **new_value,
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_wc/
H A Dprops.c729 svn_wc_notify_state_t new_value)
762 if (new_value == ordering[i])
766 *state = new_value;
1697 const svn_string_t *new_value;
1703 SVN_ERR(svn_wc_canonicalize_svn_prop(&new_value, name, value,
1708 value = new_value;
2064 svn_stringbuf_t *new_value = NULL;
2081 new_value = svn_stringbuf_create_from_string(propval, pool);
2082 svn_stringbuf_strip_whitespace(new_value);
2083 svn_subst_eol_style_from_value(&eol_style, &ignored_eol, new_value
726 set_prop_merge_state(svn_wc_notify_state_t *state, svn_wc_notify_state_t new_value) argument
1695 const svn_string_t *new_value; local
2062 svn_stringbuf_t *new_value = NULL; local
[all...]
/freebsd-10.1-release/sys/dev/nand/
H A Dnandsim.c612 nandsim_log_level = mod->new_value;
615 sim_conf->erase_time = sim_chip->erase_delay = mod->new_value;
618 sim_conf->prog_time = sim_chip->prog_delay = mod->new_value;
621 sim_conf->read_time = sim_chip->read_delay = mod->new_value;
624 sim_conf->error_ratio = mod->new_value;
625 sim_chip->error_ratio = mod->new_value;

Completed in 302 milliseconds

123