Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 1662) sorted by relevance

12345678910>>...67

/freebsd/lib/libifconfig/
H A Dsfp.lua54 values = {
104 values = {
136 values = {
152 values = {
168 values = {
181 values = {
198 values = {
214 values = {
230 values = {
246 values = {
[all …]
/freebsd/contrib/netbsd-tests/lib/libm/
H A Dt_fe_round.c25 } values[] = { variable
78 fesetround(values[i].round_mode); in ATF_TC_BODY()
80 received = lrint(values[i].input); in ATF_TC_BODY()
85 values[i].input, i, received, values[i].expected); in ATF_TC_BODY()
89 (fegetround() == values[i].round_mode), in ATF_TC_BODY()
92 i, values[i].round_mode, fegetround()); in ATF_TC_BODY()
107 fesetround(values[i].round_mode); in ATF_TC_BODY()
109 received = nearbyint(values[i].input); in ATF_TC_BODY()
114 values[i].input, i, received, values[i].expected); in ATF_TC_BODY()
118 (fegetround() == values[i].round_mode), in ATF_TC_BODY()
[all …]
H A Dt_bit.c20 } values[] = { variable
63 for (unsigned int i = 0; i < __arraycount(values); i++) { in ATF_TC_BODY()
64 iterator_d = values[i].input; in ATF_TC_BODY()
65 iterator_f = (float) values[i].input; in ATF_TC_BODY()
66 if (signbit(iterator_f) != values[i].is_negative) in ATF_TC_BODY()
70 if (signbit(iterator_d) != values[i].is_negative) in ATF_TC_BODY()
76 long double iterator_l = values[i].input; in ATF_TC_BODY()
77 if (signbit(iterator_l) != values[i].is_negative) in ATF_TC_BODY()
H A Dt_acos.c67 } values[] = { variable
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
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_casinh.c23 } values[] = { variable
66 for (i = 0; i < __arraycount(values); i++) { in ATF_TC_BODY()
67 RE(input) = values[i].input_re; in ATF_TC_BODY()
68 IM(input) = values[i].input_im; in ATF_TC_BODY()
69 RE(result) = values[i].result_re; in ATF_TC_BODY()
70 IM(result) = values[i].result_im; in ATF_TC_BODY()
H A Dt_asin.c39 } values[] = { variable
124 for (i = 0; i < __arraycount(values); i++) { in ATF_TC_BODY()
125 double x = values[i].x; in ATF_TC_BODY()
126 double y = values[i].y; in ATF_TC_BODY()
130 values[i].x, values[i].y); in ATF_TC_BODY()
238 for (i = 0; i < __arraycount(values); i++) { in ATF_TC_BODY()
239 float x = values[i].x; in ATF_TC_BODY()
240 float y = values[i].y; in ATF_TC_BODY()
/freebsd/usr.sbin/bluetooth/bthidcontrol/
H A Dsdp.c84 static sdp_attr_t values[8]; variable
85 #define nvalues nitems(values)
108 values[i].flags = SDP_ATTR_INVALID; in hid_init_return_values()
109 values[i].attr = 0; in hid_init_return_values()
110 values[i].vlen = sizeof(buffer[i]); in hid_init_return_values()
111 values[i].value = buffer[i]; in hid_init_return_values()
143 if (values[i].flags != SDP_ATTR_OK) in hid_sdp_query()
146 switch (values[i].attr) { in hid_sdp_query()
195 if (values[i].vlen != 3) in hid_sdp_query()
199 v = values[i].value; in hid_sdp_query()
[all …]
/freebsd/contrib/cortex-strings/scripts/
H A Dlibplot.py29 values = list(set(create_column_tuple(x, name) for x in records))
31 values = list(set(getattr(x, name) for x in records))
33 if not values:
34 return values
35 elif type(values[0]) == str:
36 return sorted(values, key=lambda x: '%-06d|%s' % (-prefer.find(x), x))
38 return sorted(values)
74 values = list(record)
75 values[-2] -= cost
76 out.append(Record(*values))
/freebsd/usr.sbin/nscd/
H A Dhashtable.h51 type *values; \
83 (table)->entries[var].field.values = malloc( \
86 assert((table)->entries[var].field.values != NULL);\
97 free((table)->entries[var].field.values); \
116 for ((var) = &((entry)->field.values[0]); \
117 (var) < &((entry)->field.values[(entry)->field.size]); \
132 (entry)->field.values = realloc((entry)->field.values, \
139 (entry)->field.values = realloc((entry)->field.values, \
173 qsort(the_entry->field.values, the_entry->field.size, \
180 return ((type *)bsearch(key, the_entry->field.values, \
[all …]
/freebsd/sys/contrib/ck/src/
H A Dck_array.c104 target->values[array->n_entries++] = value; in ck_array_put()
124 target->values[array->n_entries++] = value; in ck_array_put()
136 v = array->transaction->values; in ck_array_put_unique()
138 v = array->active->values; in ck_array_put_unique()
159 if (target->values[i] == value) { in ck_array_remove()
160 target->values[i] = target->values[--array->n_entries]; in ck_array_remove()
171 if (target->values[i] == value) in ck_array_remove()
180 ck_pr_store_ptr(&target->values[i], target->values[--array->n_entries]); in ck_array_remove()
193 memcpy(target->values, array->active->values, sizeof(void *) * array->n_entries); in ck_array_remove()
196 target->values[i] = target->values[--array->n_entries]; in ck_array_remove()
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Ddb_iterator.c290 const char *values[dbdLAST]; in _nc_first_db() local
298 values[j] = 0; in _nc_first_db()
304 values[dbdTIC] = TicDirectory; in _nc_first_db()
311 values[dbdCfgOnce] = TERMINFO; in _nc_first_db()
316 values[dbdCfgList2] = TERMPATH; in _nc_first_db()
330 if (values[dbdEnvOnce2] != 0 in _nc_first_db()
331 && *values[dbdEnvOnce2] != '/') { in _nc_first_db()
332 values[dbdEnvOnce2] = 0; in _nc_first_db()
339 if (values[j] == 0) in _nc_first_db()
340 values[j] = ""; in _nc_first_db()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/
H A Dzpool_get_002_pos.ksh53 rm -f $values
59 typeset values=$TEST_BASE_DIR/values.$$
66 zpool get all $TESTPOOL > $values
69 log_must grep -q ^"NAME " $values
75 log_must grep -q "$TESTPOOL *${properties[$i]}" $values
82 COUNT=$(wc -l < $values)
H A Dzpool_get_003_pos.ksh46 rm -f $values
57 typeset values=$TEST_BASE_DIR/values.$$
62 log_must eval "zpool get ${properties[$i]} $TESTPOOL > $values"
63 log_must grep -q "${properties[$i]}" $values
66 if [ $i -eq 0 ] && ! grep -q "^NAME " $values
/freebsd/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c64 #define values_len nitems(values)
629 values[n].attr = 0; in do_sdp_search()
630 values[n].vlen = BSIZE; in do_sdp_search()
631 values[n].value = buffer[n]; in do_sdp_search()
644 switch (values[n].attr) { in do_sdp_search()
647 if (values[n].vlen == 5) { in do_sdp_search()
660 values[n].vlen); in do_sdp_search()
666 values[n].value + values[n].vlen); in do_sdp_search()
672 values[n].value + values[n].vlen); in do_sdp_search()
678 values[n].value + values[n].vlen); in do_sdp_search()
[all …]
/freebsd/contrib/ntp/scripts/monitoring/
H A Dloopwatch.config.SAMPLE15 # showoffs: yes/no control display of offset values
18 # showfreq: yes/no control display of frequency values
21 # showcmpl: yes/no control display of compliance values
24 # showoreg: yes/no control display of linear regression of offset values
32 # values are interpreted using local time zone
34 # parts omitted from end default to lowest permitted values
40 # if a number is given, subtract this from sampling values for display
42 # offset values
48 # offset values
70 # limit display (y-axis) to values not larger than <number>
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_020_pos.ksh51 rm -f $values
58 typeset values=$TEST_BASE_DIR/values.$$
75 zpool get all $TESTPOOL > $values
78 log_must grep -q "$TESTPOOL[ ]*cachefile[ ]*none" $values
81 log_must grep -q "$TESTPOOL[ ]*altroot[ ]*/${TESTPOOL}.root" $values
83 rm $values
/freebsd/contrib/lib9p/pytest/
H A Dnumalloc.py256 def free_multi(self, values): argument
258 values = list(values)
259 values.sort()
260 self._free_multi('free_multi', values)
262 def _free_multi(self, how, values): argument
266 if len(values) == 0:
269 while values:
273 highval = values.pop()
275 while len(values) and values[-1] == val - 1:
276 val = values.pop()
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_get/
H A Dzpool_get_002_pos.ksh69 $ZPOOL get all $TESTPOOL > $TMPDIR/values.${TESTCASE_ID}
72 $GREP ^"NAME " $TMPDIR/values.${TESTCASE_ID} > /dev/null 2>&1
82 $GREP "$TESTPOOL *${properties[$i]}" $TMPDIR/values.${TESTCASE_ID} > /dev/null 2>&1
94 COUNT=$($WC $TMPDIR/values.${TESTCASE_ID})
102 $RM $TMPDIR/values.${TESTCASE_ID}
/freebsd/contrib/libucl/tests/basic/
H A D18.res4 many = "values here";
10 many = "values here";
15 many = "values here";
21 many = "values here";
/freebsd/sys/contrib/device-tree/Bindings/powerpc/opal/
H A Dpower-mgt.txt41 Array of unsigned 32-bit values containing the values of the
61 Array of unsigned 32-bit values containing the values of the
66 Array of unsigned 32-bit values containing the values of the
74 Array of unsigned 64-bit values containing the values for the
79 Array of unsigned 64-bit values containing the masks
90 values.
101 For all the other values of the entry in
107 Array of unsigned 64-bit values containing the pmicr values
115 Array of unsigned 64-bit values containing the mask indicating
/freebsd/contrib/wpa/hostapd/
H A Dhlr_auc_gw.milenage_db2 # The example Ki, OPc, and AMF values here are from 3GPP TS 35.208 v6.0.0
4 # These values can be used for both UMTS (EAP-AKA) and GSM (EAP-SIM)
5 # authentication. In case of GSM/EAP-SIM, AMF and SQN values are not used, but
6 # stub values will need to be included in this file.
13 # These values are from Test Set 19 which has the AMF separation bit set to 1
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dwlf,arizona.yaml30 A list of INn_MODE register values, where n is the number of input
31 signals. Valid values are 0 (Differential), 1 (Single-ended) and
33 default. If present, values must be specified less than or equal
34 to the number of input signals. If values less than the number of
48 A list of boolean values indicating whether each output is mono
51 value indicates a mono output. If present, the number of values
52 should be less than or equal to the number of outputs, if less values
67 of values should be less than or equal to the number of inputs,
95 the datasheet for values. The second cell is ignored for codecs that
104 the datasheet for values. The second cell is ignored for codecs that
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_set/
H A Duser_property_001_pos.ksh53 typeset -a values=()
58 values+=("long-property-name")
68 values+=("$(awk -v max="$ZFS_MAXPROPLEN" 'BEGIN { while (c++ < (max - 1)) printf "A" }')")
75 values+=("$(user_property_value $len)")
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Duser_property_001_pos.ksh54 typeset -a values=()
58 values+=("too-long-property-name")
61 values+=("$(awk 'BEGIN { while (c++ < 8191) printf "A" }')")
68 values+=("$(user_property_value $len)")

12345678910>>...67