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

1234567

/freebsd-10.1-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-10.1-release/sys/arm/arm/
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-10.1-release/sys/mips/mips/
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-10.1-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-10.1-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-10.1-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-10.1-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-10.1-release/contrib/apr-util/dbd/
H A Dapr_dbd_sqlite3.c446 static void dbd_sqlite3_bind(apr_dbd_prepared_t *statement, const char **values) argument
452 if (values[j] == NULL) {
460 char *data = (char *)values[j];
461 int size = atoi((char*)values[++j]);
470 sqlite3_bind_text(stmt, i + 1, values[j],
471 strlen(values[j]), SQLITE_STATIC);
482 const char **values)
495 dbd_sqlite3_bind(statement, values);
513 const char **values; local
520 values
480 dbd_sqlite3_pquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const char **values) argument
529 dbd_sqlite3_pselect(apr_pool_t *pool, apr_dbd_t *sql, apr_dbd_results_t **results, apr_dbd_prepared_t *statement, int seek, const char **values) argument
565 const char **values; local
581 dbd_sqlite3_bbind(apr_dbd_prepared_t * statement, const void **values) argument
660 dbd_sqlite3_pbquery(apr_pool_t * pool, apr_dbd_t * sql, int *nrows, apr_dbd_prepared_t * statement, const void **values) argument
694 const void **values; local
710 dbd_sqlite3_pbselect(apr_pool_t * pool, apr_dbd_t * sql, apr_dbd_results_t ** results, apr_dbd_prepared_t * statement, int seek, const void **values) argument
746 const void **values; local
[all...]
H A Dapr_dbd_pgsql.c610 const char **values,
632 values, len, fmt, 0);
636 values, len, fmt, 0);
690 const char **values,
696 if (values[j] == NULL) {
703 val[i] = (char *)values[j];
704 len[i] = atoi(values[++j]);
711 val[i] = values[j];
722 const char **values)
735 dbd_pgsql_bind(statement, values, va
608 dbd_pgsql_pquery_internal(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const char **values, const int *len, const int *fmt) argument
689 dbd_pgsql_bind(apr_dbd_prepared_t *statement, const char **values, const char **val, int *len, int *fmt) argument
720 dbd_pgsql_pquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const char **values) argument
745 const char **values; local
761 dbd_pgsql_pselect_internal(apr_pool_t *pool, apr_dbd_t *sql, apr_dbd_results_t **results, apr_dbd_prepared_t *statement, int seek, const char **values, const int *len, const int *fmt) argument
923 dbd_pgsql_pselect(apr_pool_t *pool, apr_dbd_t *sql, apr_dbd_results_t **results, apr_dbd_prepared_t *statement, int seek, const char **values) argument
950 const char **values; local
966 dbd_pgsql_bbind(apr_pool_t *pool, apr_dbd_prepared_t * statement, const void **values, const char **val, int *len, int *fmt) argument
1043 dbd_pgsql_pbquery(apr_pool_t * pool, apr_dbd_t * sql, int *nrows, apr_dbd_prepared_t * statement, const void **values) argument
1068 const void **values; local
1084 dbd_pgsql_pbselect(apr_pool_t * pool, apr_dbd_t * sql, apr_dbd_results_t ** results, apr_dbd_prepared_t * statement, int seek, const void **values) argument
1111 const void **values; local
[all...]
H A Dapr_dbd_mysql.c611 const char **values, MYSQL_BIND *bind)
620 if (values[j] == NULL) {
628 bind[i].buffer = (void*)values[j];
629 bind[i].buffer_length = atol(values[++j]);
636 bind[i].buffer = (void*)values[j];
637 bind[i].buffer_length = strlen(values[j]);
670 const char **values)
681 dbd_mysql_bind(statement, values, bind);
694 const char **values; local
701 values
610 dbd_mysql_bind(apr_dbd_prepared_t *statement, const char **values, MYSQL_BIND *bind) argument
668 dbd_mysql_pquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const char **values) argument
804 const char **values; local
820 dbd_mysql_bbind(apr_pool_t *pool, apr_dbd_prepared_t *statement, const void **values, MYSQL_BIND *bind) argument
954 dbd_mysql_pbquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const void **values) argument
980 const void **values; local
1025 const void **values; local
[all...]
H A Dapr_dbd_freetds.c245 int seek, const char **values)
248 statement->nargs, values);
256 const char **values; local
263 values = apr_palloc(pool, sizeof(*values) * statement->nargs);
266 values[i] = va_arg(args, const char*);
269 return dbd_freetds_pselect(pool, sql, results, statement, seek, values);
274 const char **values)
277 statement->nargs, values);
283 const char **values; local
242 dbd_freetds_pselect(apr_pool_t *pool, apr_dbd_t *sql, apr_dbd_results_t **results, apr_dbd_prepared_t *statement, int seek, const char **values) argument
272 dbd_freetds_pquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t *statement, const char **values) argument
739 dbd_freetds_pbquery(apr_pool_t *pool, apr_dbd_t *sql, int *nrows, apr_dbd_prepared_t * statement, const void **values) argument
753 dbd_freetds_pbselect(apr_pool_t *pool, apr_dbd_t *sql, apr_dbd_results_t **results, apr_dbd_prepared_t *statement, int seek, const void **values) argument
[all...]
/freebsd-10.1-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-10.1-release/crypto/openssl/crypto/x509v3/
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_pcons.c72 STACK_OF(CONF_VALUE) *values);
106 STACK_OF(CONF_VALUE) *values)
115 for (i = 0; i < sk_CONF_VALUE_num(values); i++) {
116 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-10.1-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-10.1-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-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h27 // This map is useful for mapping unique C string names to values of
30 // Any other string table that has guaranteed unique values can also
111 // not change during while using the returned values.
131 // can easily copy when accessing values by index.
139 // don't want to copy when accessing values by index.
159 // T values and only if there is a sensible failure value that can
160 // be returned and that won't match any existing values.
223 GetValues (const char *unique_cstr, std::vector<T> &values) const
225 const size_t start_size = values.size();
232 values
[all...]
/freebsd-10.1-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-10.1-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-10.1-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db_util.c86 svn_sqlite__value_t *values[],
92 if (argc == 1 && svn_sqlite__value_type(values[0]) == SVN_SQLITE__TEXT)
93 path = svn_sqlite__value_text(values[0]);
83 relpath_depth_sqlite(svn_sqlite__context_t *sctx, int argc, svn_sqlite__value_t *values[], apr_pool_t *scratch_pool) argument
/freebsd-10.1-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-10.1-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-10.1-release/usr.bin/dtc/
H A Dfdt.hh115 * property values should exist for a property.
225 * label, and optionally one or more values.
238 * The values in this property.
240 std::vector<property_value> values; member in class:dtc::fdt::property
251 * Parses one or more 32-bit values enclosed in angle brackets.
295 property(property &p) : key(p.key), label(p.label), values(p.values),
315 * Iterator type used for accessing the values of a property.
323 return values.begin();
330 return values
[all...]

Completed in 161 milliseconds

1234567