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

12345678

/freebsd-10-stable/contrib/netbsd-tests/lib/libm/
H A Dt_acos.c62 ATF_LIBM_TEST(acos_inrange, "Test acos/acosf(x) for some valid values")
67 } values[] = { variable in typeref:struct:__anon3984
85 for (i = 0; i < __arraycount(values); i++) {
86 T_LIBM_CHECK(i, acos, values[i].x, values[i].y, 1.0e-15);
87 T_LIBM_CHECK(i, acosf, values[i].x, values[i].y, 1.0e-5);
H A Dt_atan.c39 } values[] = { variable in typeref:struct:__anon3986
68 ATF_LIBM_TEST(atan_inrange, "Test atan/atanf(x) for some values")
72 for (i = 0; i < __arraycount(values); i++) {
73 T_LIBM_CHECK(i, atan, values[i].x, values[i].y, 1.0e-15);
74 T_LIBM_CHECK(i, atanf, values[i].x, values[i].y, 1.0e-7);
H A Dt_fe_round.c25 } values[] = { variable in typeref:struct:__anon287
77 for (unsigned int i = 0; i < __arraycount(values); i++) {
78 fesetround(values[i].round_mode);
80 received = lrint(values[i].input);
82 (labs(received - values[i].expected) < EPSILON),
85 values[i].input, i, received, values[i].expected);
89 (fegetround() == values[i].round_mode),
92 i, fegetround(), values[i].round_mode);
H A Dt_casinh.c7 * Testing special values of casinh
23 } values[] = { variable in typeref:struct:__anon283
58 atf_tc_set_md_var(tc, "descr","Check casinh family - special values");
66 for (i = 0; i < __arraycount(values); i++) {
67 RE(input) = values[i].input_re;
68 IM(input) = values[i].input_im;
69 RE(result) = values[i].result_re;
70 IM(result) = values[i].result_im;
H A Dt_cosh.c42 } values[] = { variable in typeref:struct:__anon3988
62 atf_tc_set_md_var(tc, "descr", "cosh(x) for some values");
72 for (i = 0; i < __arraycount(values); i++) {
73 x = values[i].x;
74 y = values[i].y;
75 eps = 1e-15 * values[i].e;
160 atf_tc_set_md_var(tc, "descr", "coshf(x) for some values");
170 for (i = 0; i < __arraycount(values); i++) {
171 x = values[i].x;
172 y = values[
[all...]
H A Dt_asin.c38 } values[] = { variable in typeref:struct:__anon3985
115 atf_tc_set_md_var(tc, "descr", "Test asin(x) for some values");
124 for (i = 0; i < __arraycount(values); i++) {
125 y = asin(values[i].x);
126 if (fabs(y - values[i].y) > eps)
128 values[i].x, values[i].y);
228 atf_tc_set_md_var(tc, "descr", "Test asinf(x) for some values");
238 for (i = 0; i < __arraycount(values); i++) {
239 x = values[
[all...]
H A Dt_sinh.c42 } values[] = { variable in typeref:struct:__anon3993
61 atf_tc_set_md_var(tc, "descr", "sinh(x) for some values");
71 for (i = 0; i < __arraycount(values); i++) {
72 x = values[i].x;
73 y = values[i].y;
74 eps = 1e-15 * values[i].e;
161 atf_tc_set_md_var(tc, "descr", "sinhf(x) for some values");
171 for (i = 0; i < __arraycount(values); i++) {
172 x = values[i].x;
173 y = values[
[all...]
/freebsd-10-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dt_statvfs.sh30 # correct values) over a tmpfs mount point.
33 atf_test_case values
35 atf_set "descr" "Tests that statvfs(2) returns correct values"
66 atf_add_test_case values
/freebsd-10-stable/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-stable/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-stable/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-stable/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-stable/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-stable/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-stable/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]))
623 /* Initialize attribute values array */
625 values[n].flags = SDP_ATTR_INVALID;
626 values[n].attr = 0;
627 values[n].vlen = BSIZE;
628 values[n].value = buffer[n];
632 n = sdp_search(xs, 1, &service, attrs_len, attrs, values_len, values);
636 /* Print attributes values */
[all...]
/freebsd-10-stable/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...]
/freebsd-10-stable/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-stable/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);
/freebsd-10-stable/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[], void *baton) argument
/freebsd-10-stable/sys/dev/sfxge/common/
H A Dmcdi_mon.h66 __inout_ecount(EFX_MON_NSTATS) efx_mon_stat_value_t *values);
/freebsd-10-stable/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
/freebsd-10-stable/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-stable/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...]

Completed in 214 milliseconds

12345678