Searched refs:values (Results 1 - 25 of 137) sorted by relevance

123456

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dlinespec.c478 struct symtabs_and_lines values, return_values; local
486 values.sals = (struct symtab_and_line *)
505 init_sal (&values.sals[i]);
508 values.sals[i] = find_function_start_sal (sym_arr[i], funfirstline);
509 if (values.sals[i].symtab)
513 values.sals[i].symtab->filename,
514 values.sals[i].line);
519 values.sals[i].line);
565 memcpy (return_values.sals, values.sals,
579 if (values
716 struct symtabs_and_lines values; local
944 struct symtabs_and_lines values; local
1076 struct symtabs_and_lines values; local
1163 struct symtabs_and_lines values; local
1402 struct symtabs_and_lines values; local
1564 struct symtabs_and_lines values; local
1650 struct symtabs_and_lines values; local
1780 struct symtabs_and_lines values; local
1836 struct symtabs_and_lines values; local
[all...]
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Dsc_machdep.c79 sc_get_bios_values(bios_values_t *values) argument
81 values->cursor_start = 0;
82 values->cursor_end = 32;
83 values->shift_state = 0;
/freebsd-9.3-release/usr.sbin/nscd/
H A Dhashtable.h53 type *values; \
85 (table)->entries[var].field.values = malloc( \
88 assert((table)->entries[var].field.values != NULL);\
99 free((table)->entries[var].field.values); \
118 for ((var) = &((entry)->field.values[0]); \
119 (var) < &((entry)->field.values[(entry)->field.size]); \
134 (entry)->field.values = realloc((entry)->field.values, \
141 (entry)->field.values = realloc((entry)->field.values, \
[all...]
/freebsd-9.3-release/usr.sbin/bluetooth/bthidcontrol/
H A Dsdp.c67 static sdp_attr_t values[8]; variable
68 #define nvalues (sizeof(values)/sizeof(values[0]))
103 values[i].flags = SDP_ATTR_INVALID;
104 values[i].attr = 0;
105 values[i].vlen = sizeof(buffer[i]);
106 values[i].value = buffer[i];
113 if (sdp_search(ss, 1, &service, nattrs, attrs, nvalues, values) != 0)
120 if (values[i].flags != SDP_ATTR_OK)
123 switch (values[
[all...]
/freebsd-9.3-release/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c60 static sdp_attr_t values[NRECS * attrs_len]; variable
61 #define values_len (sizeof(values)/sizeof(values[0]))
589 /* Initialize attribute values array */
591 values[n].flags = SDP_ATTR_INVALID;
592 values[n].attr = 0;
593 values[n].vlen = BSIZE;
594 values[n].value = buffer[n];
598 n = sdp_search(xs, 1, &service, attrs_len, attrs, values_len, values);
602 /* Print attributes values */
[all...]
/freebsd-9.3-release/sys/isa/
H A Dsyscons_isa.c205 sc_get_bios_values(bios_values_t *values) argument
210 values->cursor_start = *(uint8_t *)BIOS_PADDRTOVADDR(0x461);
211 values->cursor_end = *(uint8_t *)BIOS_PADDRTOVADDR(0x460);
213 values->shift_state = ((shift & BIOS_CLKED) != 0 ? CLKED : 0) |
218 values->cursor_start = 0;
219 values->cursor_end = 32;
220 values->shift_state = 0;
222 values->bell_pitch = BELL_PITCH;
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_pcons.c73 STACK_OF(CONF_VALUE) *values);
108 STACK_OF(CONF_VALUE) *values)
117 for (i = 0; i < sk_CONF_VALUE_num(values); i++) {
118 val = sk_CONF_VALUE_value(values, i);
H A Dv3_bcons.c73 STACK_OF(CONF_VALUE) *values);
105 STACK_OF(CONF_VALUE) *values)
114 for (i = 0; i < sk_CONF_VALUE_num(values); i++) {
115 val = sk_CONF_VALUE_value(values, i);
H A Dv3_akey.c73 STACK_OF(CONF_VALUE) *values);
118 STACK_OF(CONF_VALUE) *values)
132 for (i = 0; i < sk_CONF_VALUE_num(values); i++) {
133 cnf = sk_CONF_VALUE_value(values, i);
116 v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values) argument
/freebsd-9.3-release/contrib/gcc/
H A Dpointer-set.c200 void **values;
214 result->values = XCNEWVEC (void *, result->n_slots);
222 XDELETEVEC (pmap->values);
238 return &pmap->values[n];
273 new_values[n] = pmap->values[i];
277 XDELETEVEC (pmap->values);
281 pmap->values = new_values;
291 return &pmap->values[n];
303 if (pmap->keys[i] && !fn (pmap->keys[i], &pmap->values[i], data))
199 void **values; member in struct:pointer_map_t
H A Dlibgcov.c189 cs_ptr->sum_all += ci_ptr->values[c_num];
190 if (cs_ptr->run_max < ci_ptr->values[c_num])
191 cs_ptr->run_max = ci_ptr->values[c_num];
197 /* Get file name relocation prefix. Non-absolute values are ignored. */
206 /* Do not consider negative values. */
231 gcov_type *values[GCOV_COUNTERS]; local
277 cs_ptr->sum_all += ci_ptr->values[c_num];
278 if (cs_ptr->run_max < ci_ptr->values[c_num])
279 cs_ptr->run_max = ci_ptr->values[c_num];
289 values[c_i
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dtable.py41 def addline(self, sortkey, values):
42 """values is a dict from field name to value"""
46 v = str(values[f])
/freebsd-9.3-release/sys/pc98/cbus/
H A Dsyscons_cbus.c167 sc_get_bios_values(bios_values_t *values) argument
169 values->cursor_start = 15;
170 values->cursor_end = 16;
171 values->shift_state = 0;
172 values->bell_pitch = BELL_PITCH;
/freebsd-9.3-release/usr.bin/make/
H A Dfor.c145 * Skip to values
227 * The values of the variables forLst, forVar and forBuf are freed.
234 Lst values; /* list of values for the variable */ local
247 Lst_Init(&values);
248 Lst_Concat(&values, &forLst, LST_CONCLINK);
253 LST_FOREACH(ln, &values) {
265 Lst_Destroy(&values, free);
/freebsd-9.3-release/contrib/gcc/config/
H A Dvxlib.c93 array which is used to store TLS values. A TLS key is simply an
124 void *values[MAX_KEYS]; member in struct:tls_data
206 dtor (data->values[key]);
288 functions for any live values for this key. */
336 return data->values[key];
382 data->values[key] = value;
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzprop_common.c73 int objset_types, const char *values, const char *colname,
92 pd->pd_values = values;
104 zprop_attr_t attr, int objset_types, const char *values,
108 objset_types, values, colname, B_FALSE, B_TRUE, NULL);
114 zprop_attr_t attr, int objset_types, const char *values,
118 objset_types, values, colname, B_TRUE, B_TRUE, NULL);
123 zprop_attr_t attr, int objset_types, const char *values,
127 objset_types, values, colname, B_TRUE, B_TRUE, idx_tbl);
396 * For fixed-width values, make sure the width is large enough to hold
71 zprop_register_impl(int prop, const char *name, zprop_type_t type, uint64_t numdefault, const char *strdefault, zprop_attr_t attr, int objset_types, const char *values, const char *colname, boolean_t rightalign, boolean_t visible, const zprop_index_t *idx_tbl) argument
103 zprop_register_string(int prop, const char *name, const char *def, zprop_attr_t attr, int objset_types, const char *values, const char *colname) argument
113 zprop_register_number(int prop, const char *name, uint64_t def, zprop_attr_t attr, int objset_types, const char *values, const char *colname) argument
122 zprop_register_index(int prop, const char *name, uint64_t def, zprop_attr_t attr, int objset_types, const char *values, const char *colname, const zprop_index_t *idx_tbl) argument
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DCommandFlags.h44 cl::values(
59 cl::values(clEnumValN(CodeModel::Default, "default",
79 cl::values(
142 cl::values(
155 cl::values(
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DMemory.inc27 // are not a bitwise combination of RWX values
/freebsd-9.3-release/crypto/heimdal/lib/hdb/
H A Dhdb-ldap.c389 char **values; local
401 values = ldap_get_values(HDB2LDAP(db), msg, "objectClass");
402 if (values) {
403 int num_objectclasses = ldap_count_values(values);
405 if (strcasecmp(values[i], "sambaSamAccount") == 0) {
407 } else if (strcasecmp(values[i], structural_object) == 0) {
409 } else if (strcasecmp(values[i], "krb5Principal") == 0) {
411 } else if (strcasecmp(values[i], "krb5KDCEntry") == 0) {
415 ldap_value_free(values);
605 values
733 char **values; local
898 char **values; local
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dcheck-der.c71 int values[] = {0, 127, 128, 256, -128, -129, -1, -255, 255, local
77 tests[i].val = &values[i];
78 asprintf (&tests[i].name, "integer %d", values[i]);
193 unsigned int values[] = {0, 127, 128, 256, 512, 32768, local
199 tests[i].val = &values[i];
200 asprintf (&tests[i].name, "unsigned %u", values[i]);
394 time_t values[] = {0, 500159187}; local
399 tests[i].val = &values[i];
400 asprintf (&tests[i].name, "time %d", (int)values[i]);
436 heim_oid values[] local
475 heim_bit_string values[] = { local
518 heim_integer values[] = { local
575 int values[] = { 1, 0 }; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-stack.c34 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
137 values. */
150 || strcmp (argv[0], "--no-values") == 0)
153 || strcmp (argv[0], "--all-values") == 0)
156 || strcmp (argv[0], "--simple-values") == 0)
159 error ("Unknown value for PRINT_VALUES: must be: 0 or \"--no-values\", 1 or \"--all-values\", 2 or \"--simple-values\"");
166 values. */
227 of the variables, if an argument of 1 is passed, print the values
230 list_args_or_locals(int locals, int values, struct frame_info *fi) argument
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper-check-defines.h94 #error CVMX_HELPER_INPUT_TAG_* values for determining tag hash inputs must be defined in executive-config.h
/freebsd-9.3-release/sys/boot/ficl/
H A Dloader.c66 int names, values; local
73 values = stackPopINT(pVM->pStack);
82 value = (char*) ficlMalloc(values+1);
85 strncpy(value, valuep, values);
86 value[values] = '\0';
103 int names, values, overwrite; local
111 values = stackPopINT(pVM->pStack);
120 value = (char*) ficlMalloc(values+1);
123 strncpy(value, valuep, values);
124 value[values]
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/store/
H A Dstr_lib.c1200 } values[STORE_ATTR_TYPE_NUM + 1]; member in struct:STORE_attr_info_st
1263 return attrs->values[code].cstring;
1277 return attrs->values[code].sha1string;
1291 return attrs->values[code].dn;
1305 return attrs->values[code].number;
1319 if ((attrs->values[code].cstring = BUF_strndup(cstr, cstr_size)))
1337 if ((attrs->values[code].sha1string =
1356 if ((attrs->values[code].dn = X509_NAME_dup(dn)))
1374 if ((attrs->values[code].number = BN_dup(number)))
1392 OPENSSL_free(attrs->values[cod
[all...]
/freebsd-9.3-release/contrib/groff/src/devices/xditview/
H A Ddraw.c401 XGCValues values; local
402 values.line_width = DeviceToX(dw, desired_line_width);
403 if (values.line_width == 0)
404 values.line_width = 1;
406 GCLineWidth, &values); local
419 XGCValues values; local
421 values.foreground = dw->dvi.background;
422 values.fill_style = FillSolid;
424 values.foreground = dw->dvi.foreground;
425 values
432 XChangeGC(XtDisplay (dw), dw->dvi.fill_GC, mask, &values); local
[all...]

Completed in 179 milliseconds

123456