Searched refs:value (Results 51 - 75 of 2924) sorted by relevance

1234567891011>>

/freebsd-10.0-release/crypto/openssh/
H A Dbufbn.c59 buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value) argument
61 int bits = BN_num_bits(value);
67 /* Get the value of in binary */
68 oi = BN_bn2bin(value, buf);
89 buffer_put_bignum(Buffer *buffer, const BIGNUM *value) argument
91 if (buffer_put_bignum_ret(buffer, value) == -1)
99 buffer_get_bignum_ret(Buffer *buffer, BIGNUM *value) argument
121 if (BN_bin2bn(bin, bytes, value) == NULL) {
133 buffer_get_bignum(Buffer *buffer, BIGNUM *value) argument
135 if (buffer_get_bignum_ret(buffer, value)
143 buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value) argument
181 buffer_put_bignum2(Buffer *buffer, const BIGNUM *value) argument
188 buffer_get_bignum2_ret(Buffer *buffer, BIGNUM *value) argument
219 buffer_get_bignum2(Buffer *buffer, BIGNUM *value) argument
[all...]
/freebsd-10.0-release/sys/mips/malta/
H A Dyamon.c39 char *value; local
42 value = NULL;
45 value = p->value;
50 return (value);
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscic_sds_controller_registers.h81 #define scic_sds_controller_smu_register_write(controller, reg, value) \
85 (value) \
93 #define scu_afe_register_write(controller, reg, value) \
97 (value) \
117 #define scu_sgpio_peg0_register_write(controller, reg, value) \
121 (value) \
129 #define scu_controller_viit_register_write(controller, index, reg, value) \
133 value \
146 #define scu_controller_scratch_ram_register_write(controller, index, value) \
150 value \
[all...]
/freebsd-10.0-release/contrib/bsnmp/snmp_mibII/
H A DmibII_begemot.c40 op_begemot_mibII(struct snmp_context *ctx __unused, struct snmp_value *value, argument
52 switch (value->var.subs[sub - 1]) {
60 mibif_force_hc_update_interval = value->v.uint32;
65 mibII_poll_ticks = value->v.uint32;
71 switch (value->var.subs[sub - 1]) {
84 switch (value->var.subs[sub - 1]) {
101 switch (value->var.subs[sub - 1]) {
104 value->v.counter64 = mibif_maxspeed;
108 value->v.uint32 = mibif_hc_update_interval;
112 value
[all...]
H A DmibII_interfaces.c140 * 32-bit value. If the timeval is 0 then return 0.
159 op_interfaces(struct snmp_context *ctx __unused, struct snmp_value *value, argument
178 switch (value->var.subs[sub - 1]) {
181 value->v.integer = mib_if_number;
191 op_ifentry(struct snmp_context *ctx, struct snmp_value *value, argument
202 if ((ifp = NEXT_OBJECT_INT(&mibif_list, &value->var, sub)) == NULL)
204 value->var.len = sub + 1;
205 value->var.subs[sub] = ifp->index;
209 if (value->var.len - sub != 1)
211 if ((ifp = mib_find_if(value
366 op_ifxtable(struct snmp_context *ctx, struct snmp_value *value, u_int sub, u_int iidx __unused, enum snmp_op op) argument
[all...]
/freebsd-10.0-release/sys/ddb/
H A Ddb_access.c63 register db_expr_t value; local
72 value = 0;
79 value = (value << 8) + (data[i] & 0xFF);
83 if (is_signed && (value & db_extend[size]) != 0)
84 value |= db_extend[size];
86 return (value);
90 db_put_value(addr, size, value)
93 register db_expr_t value;
104 data[i] = value
[all...]
H A Ddb_examine.c78 db_expr_t value; local
120 value = db_get_value(addr, size, TRUE);
122 db_printf("%+-*lr", width, (long)value);
125 value = db_get_value(addr, size, FALSE);
127 db_printf("%-*lx", width, (long)value);
130 value = db_get_value(addr, size, TRUE);
132 db_printf("%-*ly", width, (long)value);
135 value = db_get_value(addr, size, TRUE);
137 db_printf("%-*ld", width, (long)value);
140 value
206 db_expr_t value; local
267 db_expr_t value; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueRegex.h27 OptionValueRegex (const char *value = NULL, uint32_t regex_flags = 0) :
29 m_regex (value, regex_flags)
52 SetValueFromCString (const char *value,
78 SetCurrentValue (const char *value, uint32_t regex_flags) argument
80 if (value && value[0])
81 m_regex.Compile (value, regex_flags);
H A DOptionValueSInt64.h33 OptionValueSInt64 (int64_t value) : argument
35 m_current_value (value),
36 m_default_value (value),
80 SetValueFromCString (const char *value,
99 operator = (int64_t value) argument
101 m_current_value = value;
118 SetCurrentValue (int64_t value) argument
120 if (value >= m_min_value && value <= m_max_value)
122 m_current_value = value;
129 SetDefaultValue(int64_t value) argument
[all...]
H A DOptionValueString.h57 OptionValueString (const char *value) : argument
65 if (value && value[0])
67 m_current_value.assign (value);
68 m_default_value.assign (value);
87 OptionValueString (const char *value, argument
97 if (value && value[0])
99 m_current_value.assign (value);
100 m_default_value.assign (value);
171 operator =(const char *value) argument
196 SetDefaultValue(const char *value) argument
[all...]
H A DOptionValueUInt64.h31 OptionValueUInt64 (uint64_t value) : argument
33 m_current_value (value),
34 m_default_value (value)
54 // string isn't a uint64_t value or any other error occurs, return an
73 SetValueFromCString (const char *value,
92 operator = (uint64_t value) argument
94 m_current_value = value;
116 SetCurrentValue (uint64_t value) argument
118 m_current_value = value;
122 SetDefaultValue (uint64_t value) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value o
250 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc)(unsigned long value, void *in), void *arg) argument
253 unsigned long value; local
287 in_utf8(unsigned long value, void *arg) argument
297 out_utf8(unsigned long value, void *arg) argument
309 type_str(unsigned long value, void *arg) argument
328 cpy_asc(unsigned long value, void *arg) argument
340 cpy_bmp(unsigned long value, void *arg) argument
353 cpy_univ(unsigned long value, void *arg) argument
368 cpy_utf8(unsigned long value, void *arg) argument
380 is_printable(unsigned long value) argument
[all...]
/freebsd-10.0-release/contrib/atf/atf-c/
H A Dconfig.c45 const char *value; member in struct:var
98 PRE(var->value == NULL);
103 var->value = val;
105 var->value = var->default_value;
107 var->value = var->default_value;
109 POST(var->value != NULL);
139 const char *value; local
146 value = NULL;
147 for (var = vars; value == NULL && var->name != NULL; var++)
149 value
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_tgoto.c78 int *value = param; local
108 *value %= 100;
112 *value %= 1000;
115 *value += UChar(*++string);
123 if (*value == 0) {
125 *value += 1;
128 *value = 0200; /* tputs will treat this as \0 */
131 result[used++] = (char) *value++;
146 if (*value > string[1])
147 *value
[all...]
H A DMKcodes.awk29 function large_item(value) {
31 offset = offset + length(value) + 1;
39 bigstr = bigstr sprintf("\"%s\\0\" ", value);
40 bigcol = bigcol + length(value) + 5;
48 function small_item(value) {
49 return sprintf("\t\t\"%s\",\n", value);
52 function print_strings(name,value) {
54 print value
60 function print_offsets(name,value) {
62 printf "%s", value
[all...]
/freebsd-10.0-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_begemot.c40 op_begemot(struct snmp_context *ctx, struct snmp_value *value, argument
47 switch (value->var.subs[sub - 1]) {
50 value->v.uint32 = storage_tbl_refresh;
54 value->v.uint32 = fs_tbl_refresh;
58 value->v.uint32 = disk_storage_tbl_refresh;
62 value->v.uint32 = network_tbl_refresh;
66 value->v.uint32 = swins_tbl_refresh;
70 value->v.uint32 = swrun_tbl_refresh;
74 return (string_get(value, pkg_dir, -1));
82 switch (value
[all...]
/freebsd-10.0-release/sys/netgraph/bluetooth/common/
H A Dng_bluetooth.c72 u_int32_t value; local
75 value = bluetooth_hci_command_timeout_value;
76 error = sysctl_handle_int(oidp, &value, 0, req);
78 if (value > 0)
79 bluetooth_hci_command_timeout_value = value;
96 u_int32_t value; local
99 value = bluetooth_hci_connect_timeout_value;
100 error = sysctl_handle_int(oidp, &value, 0, req);
102 if (0 < value && value <
131 u_int32_t value; local
156 u_int32_t value; local
234 u_int32_t value; local
[all...]
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Dsiena_mac.c356 efx_qword_t value; local
368 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value);
369 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value);
370 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value);
371 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value);
373 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value);
374 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value);
376 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value);
377 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value);
379 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value);
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dwrapper.c20 #include "value.h"
46 struct value **argp;
47 struct value **args;
51 struct value **result_ptr;
105 gdb_evaluate_expression (struct expression *exp, struct value **value) argument
117 *value = (struct value *) args.result.pointer;
132 gdb_value_fetch_lazy (struct value *value) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Dset_sec_context_option.c41 const gss_buffer_t value,
44 if (value->value == NULL || value->length != 1) {
48 *flag = *((const char *)value->value) != 0;
54 const gss_buffer_t value,
57 if (value == NULL || value->length == 0) {
60 *str = malloc(value
40 get_bool(OM_uint32 *minor_status, const gss_buffer_t value, int *flag) argument
53 get_string(OM_uint32 *minor_status, const gss_buffer_t value, char **str) argument
72 get_int32(OM_uint32 *minor_status, const gss_buffer_t value, OM_uint32 *ret) argument
88 set_int32(OM_uint32 *minor_status, const gss_buffer_t value, OM_uint32 set) argument
102 _gsskrb5_set_sec_context_option(OM_uint32 *minor_status, gss_ctx_id_t *context_handle, const gss_OID desired_object, const gss_buffer_t value) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h42 Flags (uint32_t value) : argument
43 m_flags (value)
76 SetCascades (bool value = true)
78 if (value)
92 SetSkipPointers (bool value = true)
94 if (value)
108 SetSkipReferences (bool value = true)
110 if (value)
124 SetValue (uint32_t value) argument
126 m_flags = value;
160 SetCascades(bool value) argument
166 SetSkipsPointers(bool value) argument
172 SetSkipsReferences(bool value) argument
196 SetOptions(uint32_t value) argument
[all...]
/freebsd-10.0-release/contrib/binutils/opcodes/
H A Dmep-ibld.c82 unsigned long value,
99 x = (x & ~(mask << shift)) | ((value & mask) << shift);
109 WORD_OFFSET is the offset in bits from the start of the insn of the value.
110 WORD_LENGTH is the length of the word in bits in which the value resides.
124 long value,
137 /* If LENGTH is zero, this operand doesn't contribute to the value. */
159 if ((value > 0 && (unsigned long) value > maxval)
160 || value < minval)
165 value, minva
80 insert_1(CGEN_CPU_DESC cd, unsigned long value, int start, int length, int word_length, unsigned char *bufp) argument
122 insert_normal(CGEN_CPU_DESC cd, long value, unsigned int attrs, unsigned int word_offset, unsigned int start, unsigned int length, unsigned int word_length, unsigned int total_length, CGEN_INSN_BYTES_PTR buffer) argument
247 unsigned long value; local
295 put_insn_int_value(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, CGEN_INSN_BYTES_PTR buf, int length, int insn_length, CGEN_INSN_INT value) argument
434 long value, mask; local
626 long value = fields->f_8s24a2; local
633 long value = fields->f_8s24a4; local
640 long value = fields->f_8s24a8; local
850 long value = fields->f_12s4a2; local
857 long value = fields->f_17s16a2; local
879 long value = fields->f_8s8a2; local
971 long value = fields->f_7u9a2; local
978 long value = fields->f_7u9a4; local
1014 long value = fields->f_7u9a4; local
1103 long value; local
1111 long value; local
1119 long value; local
1275 long value; local
1283 long value; local
1300 long value; local
1393 long value; local
1401 long value; local
1433 long value; local
1475 int value; local
1750 bfd_vma value; local
2029 mep_cgen_set_int_operand(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, int opindex, CGEN_FIELDS * fields, int value) argument
2278 mep_cgen_set_vma_operand(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, int opindex, CGEN_FIELDS * fields, bfd_vma value) argument
[all...]
/freebsd-10.0-release/contrib/libyaml/tests/
H A Dexample-deconstructor-alt.c114 int properties, key, value, map, seq; local
146 value = yaml_document_add_scalar(&output_document, NULL,
148 if (!value) goto document_error;
150 properties, key, value)) goto document_error;
162 value = yaml_document_add_scalar(&output_document, NULL,
167 if (!value) goto document_error;
169 properties, key, value)) goto document_error;
181 value = yaml_document_add_scalar(&output_document, NULL,
183 if (!value) goto document_error;
185 properties, key, value)) got
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.vfork.d39 this->value = (int *)alloca(sizeof (int));
40 *this->value = 1;
41 copyout(this->value, arg0, sizeof (int));
/freebsd-10.0-release/contrib/gcc/
H A Dparams.c59 set_param_value (const char *name, int value) argument
63 /* Make sure nobody tries to set a parameter to an invalid value. */
64 gcc_assert (value != INVALID_PARAM_VAL);
70 if (value < compiler_params[i].min_value)
71 error ("minimum value of parameter %qs is %u",
75 && value > compiler_params[i].max_value)
76 error ("maximum value of parameter %qs is %u",
80 compiler_params[i].value = value;

Completed in 312 milliseconds

1234567891011>>