HomeSort by: relevance | last modified time | path
    Searched defs:values (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/tests/lib/libm/
t_acos.c 56 /* Values are too small for float */
62 ATF_LIBM_TEST(acos_inrange, "Test acos/acosf(x) for some valid values")
67 } values[] = { variable in typeref:typename:const struct __anon596148b20108[]
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);
t_atan.c 39 } values[] = { variable in typeref:typename:const struct __anon5a8d26b00108[]
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);
t_cosh.c 42 } values[] = { variable in typeref:typename:const struct __anon5ee6c2b90108[]
62 atf_tc_set_md_var(tc, "descr", "cosh(x) for some values");
70 for (i = 0; i < __arraycount(values); i++) {
71 double x = values[i].x;
72 double cosh_x = values[i].y;
159 atf_tc_set_md_var(tc, "descr", "coshf(x) for some values");
167 for (i = 0; i < __arraycount(values); i++) {
168 float x = values[i].x;
169 float cosh_x = values[i].y;
t_sinh.c 42 } values[] = { variable in typeref:typename:const struct __anon83c9fbde0108[]
61 atf_tc_set_md_var(tc, "descr", "sinh(x) for some values");
69 for (i = 0; i < __arraycount(values); i++) {
70 double x = values[i].x;
71 double sinh_x = values[i].y;
160 atf_tc_set_md_var(tc, "descr", "sinhf(x) for some values");
168 for (i = 0; i < __arraycount(values); i++) {
169 float x = values[i].x;
170 float sinh_x = values[i].y;
t_asin.c 39 } values[] = { variable in typeref:typename:const struct __anon5a7f71370108[]
116 atf_tc_set_md_var(tc, "descr", "Test asin(x) for some values");
124 for (i = 0; i < __arraycount(values); i++) {
125 double x = values[i].x;
126 double y = values[i].y;
130 values[i].x, values[i].y);
230 atf_tc_set_md_var(tc, "descr", "Test asinf(x) for some values");
238 for (i = 0; i < __arraycount(values); i++) {
239 float x = values[i].x
    [all...]
t_bit.c 23 } values[] = { variable in typeref:typename:const struct __anonb53769cb0108[]
63 for (i = 0; i < __arraycount(values); i++) {
64 const float iterator_f = values[i].input;
65 const double iterator_d = values[i].input;
66 const long double iterator_l = values[i].input;
68 if (signbit(iterator_f) != values[i].is_negative) {
73 if (signbit(iterator_d) != values[i].is_negative) {
78 if (signbit(iterator_l) != values[i].is_negative) {
t_casinh.c 7 * Testing special values of casinh
8 * Values from ISO/IEC 9899:201x G.6.2.2
23 } values[] = { variable in typeref:typename:const struct __anon7e284ec20108[]
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;
t_fe_round.c 54 } values[] = { variable in typeref:typename:const struct __anonca9389de0108[]
119 for (i = 0; i < __arraycount(values); i++) {
124 fesetround(values[i].round_mode);
131 received = llrint(values[i].input);
134 received = llrintf(values[i].input);
137 received = lrint(values[i].input);
140 received = lrintf(values[i].input);
152 ATF_CHECK_MSG((long int)received == values[i].expected,
154 i, rmname(values[i].round_mode), fnname[fn],
155 values[i].input
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_mode_object.h 39 * @properties: properties attached to this object, including values
47 * - It tracks attached properties and their values. This is used by &drm_crtc,
87 * @values: Array to store the property values, matching @properties. Do
88 * not read/write values directly, but use
92 * array, but only the decoded values in the corresponding state
104 uint64_t values[DRM_OBJECT_MAX_PROPERTY]; member in struct:drm_object_properties
drm_property.h 35 * struct drm_property_enum - symbolic values for enumerations
37 * @head: list of enum values, linked to &drm_property.enum_list
53 * of the property with the set of permissible values. This means that when a
93 * Range properties report their minimum and maximum admissible unsigned values.
94 * The KMS core verifies that values set by application fit in that
99 * Range properties report their minimum and maximum admissible unsigned values.
100 * The KMS core verifies that values set by application fit in that
106 * the number of enumerated values defined by the property minus one,
109 * numerical value to get and set property instance values. Enum
114 * restrict all enumerated values to the 0..63 range. Bitmask propert
179 uint64_t *values; member in struct:drm_property
    [all...]
  /src/sys/dev/fdt/
fdtvar.h 69 const u_int *values; member in struct:fdt_phandle_data
  /src/sys/arch/x68k/usr.bin/bellctrl/
bellctrl.c 33 static struct bell_info values = { variable in typeref:struct:bell_info
175 values.volume = percent;
182 values.pitch = pitch;
189 values.msec = duration;
229 if (values.volume == DEFAULT)
230 values.volume = param.volume;
231 if (values.pitch == DEFAULT)
232 values.pitch = param.pitch;
233 if (values.msec == DEFAULT)
234 values.msec = param.msec
    [all...]
  /src/sys/external/bsd/drm/dist/shared-core/
r300_cmdbuf.c 42 /* Values for R300_RE_CLIPRECT_CNTL depending on the number of cliprects
295 int values[64]; local in function:r300_emit_carefully_checked_packet0
303 ("Cannot emit more than 64 values at a time (reg=%04x sz=%d)\n",
308 values[i] = ((int *)cmdbuf->buf)[i];
313 if (!radeon_check_offset(dev_priv, (u32) values[i])) {
329 OUT_RING_TABLE(values, sz);
373 /* the rest of the data is safe to emit, whatever the values the user passed */
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_coherency.c 312 u32 *offsets, *values; local in function:igt_gem_coherency
330 values = offsets + ncachelines;
370 values[n] = prandom_u32_state(&prng);
373 err = over->set(&ctx, offsets[n], ~values[n]);
382 err = write->set(&ctx, offsets[n], values[n]);
400 if (found != values[n]) {
403 write->name, values[n],
405 ~values[n], offsets[n]);
  /src/usr.bin/mixerctl/
mixerctl.c 59 static mixer_ctrl_t *values; variable in typeref:typename:mixer_ctrl_t *
400 values = calloc(ndev, sizeof *values);
410 rfields[i].valp = &values[i];
415 values[i].dev = i;
416 values[i].type = infos[i].type;
418 values[i].un.value.num_channels = 2;
419 if (ioctl(fd, AUDIO_MIXER_READ, &values[i]) == -1) {
420 values[i].un.value.num_channels = 1;
421 if (ioctl(fd, AUDIO_MIXER_READ, &values[i]
    [all...]
  /src/share/examples/puffs/pgfs/
pgfs_db.c 829 const char *values[3]; local in function:pgfs_connectdb
847 values[i] = dbname;
852 values[i] = dbuser;
856 values[i] = "pgfs";
868 conn = PQconnectdbParams(keywords, values, 0);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_debugfs.c 639 uint32_t values[16]; local in function:amdgpu_debugfs_sensor_read
650 valuesize = sizeof(values);
656 r = amdgpu_dpm_read_sensor(adev, idx, &values[0], &valuesize);
671 r = put_user(values[x++], (int32_t *)buf);
amdgpu_dpm.h 122 u32 *values; member in struct:amdgpu_clock_array
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
selftest_workarounds.c 451 const u32 values[] = { local in function:check_dirty_whitelist
483 scratch = create_scratch(ce->vm, 2 * ARRAY_SIZE(values) + 1);
531 for (v = 0; v < ARRAY_SIZE(values); v++) {
535 *cs++ = values[v];
544 for (v = 0; v < ARRAY_SIZE(values); v++) {
548 *cs++ = ~values[v];
612 GEM_BUG_ON(values[ARRAY_SIZE(values) - 1] != 0xffffffff);
615 rsvd = results[ARRAY_SIZE(values)];
626 for (v = 0; v < ARRAY_SIZE(values); v++)
    [all...]
  /src/usr.bin/config/
gram.y 209 %type <loclist> values locdefaults
601 /* multiple locator default values */
603 '=' '{' values '}' { $$ = $3; }
988 | WORD values { $$ = namelocvals($1, $2); }
1085 /* comma-separated list of values */
1087 values: label
1089 | value ',' values { $$ = MKF2(loc, val, $1, $3); }
  /src/usr.sbin/npf/npfctl/
npf_show.c 58 char ** values; member in struct:__anon02366b2e0108
104 char **values; local in function:list_push
106 if ((values = calloc(n + 1, sizeof(char *))) == NULL) {
110 values[i] = list->values[i];
112 values[n] = val;
113 free(list->values);
114 list->values = values;
123 if (!join(buf, sizeof(buf), list->count, list->values, sep))
    [all...]
  /src/sys/dev/ic/
anx_dp.c 564 uint8_t values[3], power; local in function:anxdp_train_link
569 ret = drm_dp_dpcd_read(&sc->sc_dpaux, DP_DPCD_REV, values,
570 sizeof(values));
576 link.revision = values[0];
577 link.rate = drm_dp_bw_code_to_link_rate(values[1]);
578 link.num_lanes = values[2] & DP_MAX_LANE_COUNT_MASK;
579 if (values[2] & DP_ENHANCED_FRAME_CAP)
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
hwmgr.h 96 uint32_t values[1]; member in struct:phm_clock_array
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga3d_cmd.h 639 * ignore these values.
736 * values. This may be used by some applications that
797 uint8 indexBufferStride; /* Allowable values = 1, 2, or 4 */
1041 uint32 values[4]; member in struct:__anon411ade0f3108
1044 * Followed by a variable number of additional values.
  /src/sys/dev/stbi/
stb_image.c 172 // be promoted to floating point values, run through the inverse of
1116 uint8 values[256]; member in struct:__anon26c9e3660508
1240 return h->values[k];
1269 return h->values[c];
1323 // 0 all the ac values now so we can do it 32-bits at a time
1634 v = z->huff_dc[th].values;
1637 v = z->huff_ac[th].values;
3936 // Known values:

Completed in 40 milliseconds

1 2