Searched refs:value (Results 226 - 250 of 3901) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/isci/scil/
H A Dsci_util.h100 * type. The lower U32 value is "clipped" or "wrapped" back through
103 #define sci_physical_address_add(physical_address, value) \
108 if (lower + (value) < lower) \
111 lower += (value); \
117 * type. The lower U32 value is "clipped" or "wrapped" back through
120 #define sci_physical_address_subtract(physical_address, value) \
125 if (lower - (value) > lower) \
128 lower -= (value); \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanTracer.h40 bool EnableTracing(bool value) { argument
42 m_enabled = value;
43 if (old_value == false && value == true)
45 else if (old_value == true && value == false)
53 bool EnableSingleStep(bool value) { argument
55 m_single_step = value;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h23 OptionValueFileSpec(const FileSpec &value, bool resolve = true);
38 SetValueFromString(llvm::StringRef value,
65 void SetCurrentValue(const FileSpec &value, bool set_value_was_set) { argument
66 m_current_value = value;
72 void SetDefaultValue(const FileSpec &value) { m_default_value = value; } argument
/freebsd-11-stable/contrib/bsnmp/snmp_mibII/
H A DmibII_ipaddr.c220 op_ipaddr(struct snmp_context *ctx, struct snmp_value *value, argument
229 which = value->var.subs[sub - 1];
236 if ((ifa = NEXT_OBJECT_OID(&mibifa_list, &value->var, sub)) == NULL)
238 index_append(&value->var, sub, &ifa->index);
242 if ((ifa = FIND_OBJECT_OID(&mibifa_list, &value->var, sub)) == NULL)
247 if (index_decode(&value->var, sub, iidx, ipaddr))
249 ifa = FIND_OBJECT_OID(&mibifa_list, &value->var, sub);
268 if (value->v.integer < 0 ||
269 value->v.integer > 0x07fffffff)
272 if (ifa->ifindex != (u_int)value
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-sysinfo.c215 unsigned long long value; local
216 sscanf(valueS, "%lli", &value);
219 system_info->system_dram_size = value << 20;
221 system_info->phy_mem_desc_addr = value;
223 system_info->cpu_clock_hz = value;
225 system_info->dram_data_rate_hz = value * 2;
227 system_info->board_type = value;
229 system_info->board_rev_major = value;
231 system_info->board_rev_minor = value;
243 system_info->mac_addr_count = value;
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dr600_audio.c73 uint32_t value; local
75 value = RREG32(R600_AUDIO_RATE_BPS_CHANNEL);
78 status.channels = (value & 0x7) + 1;
81 switch ((value & 0xF0) >> 4) {
99 (int)value);
104 if (value & 0x4000)
108 status.rate *= ((value >> 11) & 0x7) + 1;
109 status.rate /= ((value >> 8) & 0x7) + 1;
111 value = RREG32(R600_AUDIO_STATUS_BITS);
114 status.status_bits = value
155 u32 value = 0; local
[all...]
H A Dradeon_kms.c145 * @value: value
152 uint32_t *value)
155 if (*value == 1) {
159 } else if (*value == 0) {
164 *value = *owner == applier ? 1 : 0;
188 uint32_t value, *value_ptr; local
193 /* TIMESTAMP is a 64-bit value, needs special handling. */
196 value_ptr64 = (uint64_t*)((unsigned long)info->value);
214 value_ptr = (uint32_t *)((unsigned long)info->value);
149 radeon_set_filp_rights(struct drm_device *dev, struct drm_file **owner, struct drm_file *applier, uint32_t *value) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp197 llvm::StringRef value) {
209 error = value_sp->SetValueFromString(value, op);
214 error.SetErrorStringWithFormat("invalid value path '%s'", name.str().c_str());
286 OptionValue *value = property->GetValue().get(); local
287 if (value) {
288 const OptionValueArray *array = value->GetAsArray();
292 const OptionValueDictionary *dict = value->GetAsDictionary();
305 OptionValue *value = property->GetValue().get(); local
306 if (value) {
307 OptionValueArray *array = value
194 SetSubValue(const ExecutionContext *exe_ctx, VarSetOperationType op, llvm::StringRef name, llvm::StringRef value) argument
324 OptionValue *value = property->GetValue().get(); local
335 OptionValue *value = property->GetValue().get(); local
357 OptionValue *value = property->GetValue().get(); local
368 OptionValue *value = property->GetValue().get(); local
380 OptionValue *value = property->GetValue().get(); local
392 OptionValue *value = property->GetValue().get(); local
403 OptionValue *value = property->GetValue().get(); local
415 OptionValue *value = property->GetValue().get(); local
427 OptionValue *value = property->GetValue().get(); local
438 OptionValue *value = property->GetValue().get(); local
449 OptionValue *value = property->GetValue().get(); local
460 OptionValue *value = property->GetValue().get(); local
472 OptionValue *value = property->GetValue().get(); local
483 OptionValue *value = property->GetValue().get(); local
502 OptionValue *value = property->GetValue().get(); local
513 OptionValue *value = property->GetValue().get(); local
527 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
[all...]
/freebsd-11-stable/sys/mips/rmi/
H A Drmi_mips_exts.h64 write_xlr_ctrl_register(int block, int reg, uint64_t value) argument
74 : "r" (value), "r" ((block << 8) | reg)
103 write_xlr_ctrl_register(int block, int reg, uint64_t value) argument
106 high = value >> 32;
107 low = value & 0xffffffff;
141 #define write_c0_register32(reg, sel, value) \
147 : : "r" (value), "i" (reg), "i" (sel) );
161 #define write_c2_register32(reg, sel, value) \
167 : : "r" (value), "i" (reg), "i" (sel) );
185 #define write_c0_register64(reg, sel, value) \
402 xlr_ldaddwu(unsigned int value, unsigned int *addr) argument
[all...]
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_hast/
H A Dhast_snmp.c372 op_hastConfig(struct snmp_context *context, struct snmp_value *value, argument
377 which = value->var.subs[sub - 1];
383 return (string_get(value, cfgpath, -1));
390 return (string_save(value, context, -1,
406 struct snmp_value *value, u_int sub, u_int iidx __unused, enum snmp_op op)
415 which = value->var.subs[sub - 1];
419 res = NEXT_OBJECT_INT(&resources, &value->var, sub);
422 value->var.len = sub + 1;
423 value->var.subs[sub] = res->index;
426 if (value
405 op_hastResourceTable(struct snmp_context *context __unused, struct snmp_value *value, u_int sub, u_int iidx __unused, enum snmp_op op) argument
[all...]
/freebsd-11-stable/contrib/ldns/compat/
H A Dsnprintf.c105 print_dec(char* buf, int max, unsigned int value) argument
108 if(value == 0) {
113 } else while(value && i < max) {
114 buf[i++] = '0' + value % 10;
115 value /= 10;
122 print_dec_l(char* buf, int max, unsigned long value) argument
125 if(value == 0) {
130 } else while(value && i < max) {
131 buf[i++] = '0' + value % 10;
132 value /
139 print_dec_ll(char* buf, int max, unsigned long long value) argument
156 print_hex(char* buf, int max, unsigned int value) argument
174 print_hex_l(char* buf, int max, unsigned long value) argument
192 print_hex_ll(char* buf, int max, unsigned long long value) argument
295 print_num_d(char** at, size_t* left, int* ret, int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
310 print_num_ld(char** at, size_t* left, int* ret, long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
325 print_num_lld(char** at, size_t* left, int* ret, long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
340 print_num_u(char** at, size_t* left, int* ret, unsigned int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
354 print_num_lu(char** at, size_t* left, int* ret, unsigned long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
368 print_num_llu(char** at, size_t* left, int* ret, unsigned long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
382 print_num_x(char** at, size_t* left, int* ret, unsigned int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
396 print_num_lx(char** at, size_t* left, int* ret, unsigned long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
410 print_num_llx(char** at, size_t* left, int* ret, unsigned long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
424 print_num_llp(char** at, size_t* left, int* ret, void* value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
462 unsigned long long value; local
490 print_float(char* buf, int max, double value, int prec) argument
508 print_num_f(char** at, size_t* left, int* ret, double value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
525 print_float_g(char* buf, int max, double value, int prec) argument
553 print_num_g(char** at, size_t* left, int* ret, double value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
[all...]
/freebsd-11-stable/contrib/unbound/compat/
H A Dsnprintf.c106 print_dec(char* buf, int max, unsigned int value) argument
109 if(value == 0) {
114 } else while(value && i < max) {
115 buf[i++] = '0' + value % 10;
116 value /= 10;
123 print_dec_l(char* buf, int max, unsigned long value) argument
126 if(value == 0) {
131 } else while(value && i < max) {
132 buf[i++] = '0' + value % 10;
133 value /
140 print_dec_ll(char* buf, int max, unsigned long long value) argument
157 print_hex(char* buf, int max, unsigned int value) argument
175 print_hex_l(char* buf, int max, unsigned long value) argument
193 print_hex_ll(char* buf, int max, unsigned long long value) argument
296 print_num_d(char** at, size_t* left, int* ret, int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
311 print_num_ld(char** at, size_t* left, int* ret, long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
326 print_num_lld(char** at, size_t* left, int* ret, long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
341 print_num_u(char** at, size_t* left, int* ret, unsigned int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
355 print_num_lu(char** at, size_t* left, int* ret, unsigned long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
369 print_num_llu(char** at, size_t* left, int* ret, unsigned long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
383 print_num_x(char** at, size_t* left, int* ret, unsigned int value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
397 print_num_lx(char** at, size_t* left, int* ret, unsigned long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
411 print_num_llx(char** at, size_t* left, int* ret, unsigned long long value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
425 print_num_llp(char** at, size_t* left, int* ret, void* value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
463 unsigned long long value; local
491 print_float(char* buf, int max, double value, int prec) argument
509 print_num_f(char** at, size_t* left, int* ret, double value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
526 print_float_g(char* buf, int max, double value, int prec) argument
554 print_num_g(char** at, size_t* left, int* ret, double value, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space) argument
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Ddb_iterator.c92 * Store the latest value of an environment variable in my_vars[] so we can
101 char *value; local
103 if ((value = getenv(name)) == 0 || (value = strdup(value)) == 0) {
106 FreeIfNeeded(my_vars[which].value);
108 my_vars[which].value = value;
110 } else if ((my_vars[which].value != 0) ^ (value !
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Dinfo_nisplus.c62 char *value; member in struct:nisplus_search_callback_data
67 nisplus_callback(const nis_name key, const nis_object *value, voidp opaquedata) argument
69 char *kp = strnsave(ENTRY_VAL(value, 0), ENTRY_LEN(value, 0));
70 char *vp = strnsave(ENTRY_VAL(value, 1), ENTRY_LEN(value, 1));
138 nisplus_search_callback(const nis_name key, const nis_object *value, voidp opaquedata) argument
142 dlog("NISplus search callback for <%s>", ENTRY_VAL(value, 0));
143 dlog("NISplus search callback value <%s>", ENTRY_VAL(value,
213 nis_object *value = result->objects.objects_val; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp39 // Read the value for the form into value and follow and DW_FORM_indirect
46 m_value.value.uval =
50 m_value.value.uval = data.GetU8(offset_ptr);
54 m_value.value.uval = data.GetU16(offset_ptr);
58 m_value.value.uval = data.GetU32(offset_ptr);
62 m_value.value.uval = 16;
67 m_value.value.uval = data.GetULEB128(offset_ptr);
71 m_value.value.cstr = data.GetCStr(offset_ptr);
74 m_value.value
514 uint64_t value = m_value.value.uval; local
559 uint64_t value = m_value.value.uval; local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dcontext.c67 OM_uint32 value, gss_buffer_t string)
86 if (value != mg->maj_stat || mg->maj_error.length == 0)
88 string->value = malloc(mg->maj_error.length + 1);
90 memcpy(string->value, mg->maj_error.value, mg->maj_error.length);
91 ((char *) string->value)[string->length] = '\0';
95 if (value != mg->min_stat || mg->min_error.length == 0)
97 string->value = malloc(mg->min_error.length + 1);
99 memcpy(string->value, mg->min_error.value, m
66 _gss_mg_get_error(const gss_OID mech, OM_uint32 type, OM_uint32 value, gss_buffer_t string) argument
[all...]
/freebsd-11-stable/usr.bin/tip/tip/
H A Dremote.c164 setboolean(value(RAISE), 1);
166 setboolean(value(ECHOCHECK), 1);
168 setboolean(value(BEAUTIFY), 1);
170 setboolean(value(BEAUTIFY), 0);
172 setboolean(value(SCRIPT), 1);
174 setboolean(value(TABEXPAND), 1);
176 setboolean(value(VERBOSE), 1);
178 setboolean(value(VERBOSE), 0);
180 setboolean(value(TAND), 1);
182 setboolean(value(TAN
[all...]
/freebsd-11-stable/sys/dev/evdev/
H A Devdev.h162 evdev_push_key(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
165 return (evdev_push_event(evdev, EV_KEY, code, value != 0));
169 evdev_push_rel(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
172 return (evdev_push_event(evdev, EV_REL, code, value));
176 evdev_push_abs(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
179 return (evdev_push_event(evdev, EV_ABS, code, value));
183 evdev_push_msc(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
186 return (evdev_push_event(evdev, EV_MSC, code, value));
190 evdev_push_led(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
193 return (evdev_push_event(evdev, EV_LED, code, value !
197 evdev_push_snd(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
204 evdev_push_sw(struct evdev_dev *evdev, uint16_t code, int32_t value) argument
[all...]
/freebsd-11-stable/usr.sbin/autofs/
H A Ddefined.c86 const char *value; local
183 value = defined_find(name);
184 if (value == NULL) {
193 before_len, string, value, string + after_off);
204 i = before_len + strlen(value);
219 defined_add(const char *name, const char *value) argument
228 log_debugx("defining variable %s=%s", name, value);
234 d->d_value = checked_strdup(value);
242 char *name, *value; local
244 value
[all...]
/freebsd-11-stable/contrib/bmake/
H A Dsetenv.c50 * Returns pointer to value associated with name, if any, else NULL.
51 * Sets offset to be the offset of the name/value combination in the
78 * Set the value of the environmental variable "name" to be
79 * "value". If rewrite is set, replace any current value.
81 setenv(name, value, rewrite)
83 register const char *value;
92 if (*value == '=') /* no `=' in value */
93 ++value;
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dunique.c69 uint64_t value = unique_insert(0); local
70 unique_remove(value);
71 return (value);
75 unique_insert(uint64_t value) argument
80 un->un_value = value;
99 unique_remove(uint64_t value) argument
104 un_tofind.un_value = value;
/freebsd-11-stable/sbin/reboot/
H A Dnextboot.sh39 local var value
43 value=${2%\"*}
44 value=${value#*\"}
50 kenv="${kenv}${var}=\"${value}\""
55 Usage: nextboot [-af] [-e variable=value] [-k kernel] [-o options]
70 value=${OPTARG#*=}
71 if [ -z "$var" -o -z "$value" ]; then
75 add_kenv "$var" "$value"
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_getdate.c58 struct token { int token; time_t value; }; member in struct:token
114 gds->Hour = gds->tokenp[0].value;
115 gds->Minutes = gds->tokenp[2].value;
116 gds->Seconds = gds->tokenp[4].value;
124 gds->Hour = gds->tokenp[0].value;
125 gds->Minutes = gds->tokenp[2].value;
133 gds->Hour = gds->tokenp[0].value;
146 if (gds->tokenp[0].value == tPM)
155 gds->Timezone = - ((gds->tokenp[1].value / 100) * HOUR
156 + (gds->tokenp[1].value
523 time_t value; member in struct:LEXICON
873 nexttoken(const char **in, time_t *value) argument
[all...]
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtabs.c90 int value = 0; local
99 value *= 10;
100 value += (ch - '0');
102 result[n] = value + prior;
106 prg_name, value, result[n - 1]);
112 value = 0;
122 * If there is only one value, then it is an option such as "-8".
124 if ((n == 0) && (value > 0)) {
125 int step = value;
126 value
259 add_to_tab_list(char **append, const char *value) argument
327 skip_list(char *value) argument
[all...]
/freebsd-11-stable/lib/libfigpar/
H A Dfigpar.c72 figpar_dummy_config.value.u_num = 0;
90 char *directive, char *value), uint16_t processing_options)
105 char *value; local
134 directive = value = 0;
224 /* Move to what may be the start of the value */
239 /* If no value, allocate a dummy value and jump to action */
242 /* Initialize the value if not already done */
243 if (value == NULL && (value
88 parse_config(struct figpar_config options[], const char *path, int (*unknown)(struct figpar_config *option, uint32_t line, char *directive, char *value), uint16_t processing_options) argument
[all...]

Completed in 400 milliseconds

1234567891011>>