Home
last modified time | relevance | path

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

12345678910>>...70

/freebsd-13.1/lib/libifconfig/
H A Dsfp.lua56 values = {
106 values = {
138 values = {
154 values = {
170 values = {
183 values = {
200 values = {
216 values = {
232 values = {
248 values = {
[all …]
/freebsd-13.1/contrib/apr-util/dbd/
H A Dapr_dbd_sqlite3.c452 if (values[j] == NULL) { in dbd_sqlite3_bind()
513 const char **values; in dbd_sqlite3_pvquery() local
520 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_sqlite3_pvquery()
565 const char **values; in dbd_sqlite3_pvselect() local
572 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_sqlite3_pvselect()
635 sqlite3_bind_text(stmt, i + 1, values[j], strlen(values[j]), in dbd_sqlite3_bbind()
641 char *data = (char*)values[j]; in dbd_sqlite3_bbind()
694 const void **values; in dbd_sqlite3_pvbquery() local
701 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_sqlite3_pvbquery()
746 const void **values; in dbd_sqlite3_pvbselect() local
[all …]
H A Dapr_dbd_pgsql.c696 if (values[j] == NULL) { in dbd_pgsql_bind()
711 val[i] = values[j]; in dbd_pgsql_bind()
745 const char **values; in dbd_pgsql_pvquery() local
752 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_pgsql_pvquery()
950 const char **values; in dbd_pgsql_pvselect() local
957 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_pgsql_pvselect()
1022 val[i] = values[j]; in dbd_pgsql_bbind()
1068 const void **values; in dbd_pgsql_pvbquery() local
1075 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_pgsql_pvbquery()
1111 const void **values; in dbd_pgsql_pvbselect() local
[all …]
H A Dapr_dbd_mysql.c620 if (values[j] == NULL) { in dbd_mysql_bind()
681 dbd_mysql_bind(statement, values, bind); in dbd_mysql_pquery()
694 const char **values; in dbd_mysql_pvquery() local
701 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_mysql_pvquery()
804 const char **values; in dbd_mysql_pvselect() local
811 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_mysql_pvselect()
828 arg = (void *)values[j]; in dbd_mysql_bbind()
980 const void **values; in dbd_mysql_pvbquery() local
987 values = apr_palloc(pool, sizeof(*values) * statement->nvals); in dbd_mysql_pvbquery()
1025 const void **values; in dbd_mysql_pvbselect() local
[all …]
/freebsd-13.1/usr.sbin/bluetooth/bthidcontrol/
H A Dsdp.c85 static sdp_attr_t values[8]; variable
86 #define nvalues (sizeof(values)/sizeof(values[0]))
109 values[i].flags = SDP_ATTR_INVALID; in hid_init_return_values()
110 values[i].attr = 0; in hid_init_return_values()
111 values[i].vlen = sizeof(buffer[i]); in hid_init_return_values()
112 values[i].value = buffer[i]; in hid_init_return_values()
144 if (values[i].flags != SDP_ATTR_OK) in hid_sdp_query()
147 switch (values[i].attr) { in hid_sdp_query()
196 if (values[i].vlen != 3) in hid_sdp_query()
200 v = values[i].value; in hid_sdp_query()
[all …]
/freebsd-13.1/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_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_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_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-13.1/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-13.1/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, \
175 qsort(the_entry->field.values, the_entry->field.size, \
182 return ((type *)bsearch(key, the_entry->field.values, \
[all …]
/freebsd-13.1/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-13.1/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-13.1/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c64 #define values_len (sizeof(values)/sizeof(values[0]))
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-13.1/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 grep ^"NAME " $values > /dev/null 2>&1
79 grep "$TESTPOOL *${properties[$i]}" $values > /dev/null 2>&1
91 COUNT=$(wc $values | awk '{print $1}')
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 grep "${properties[$i]}" $values > /dev/null 2>&1
68 grep "^NAME " $values > /dev/null 2>&1
/freebsd-13.1/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-13.1/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 grep "$TESTPOOL[ ]*cachefile[ ]*none" $values > /dev/null 2>&1
85 grep "$TESTPOOL[ ]*altroot[ ]*/${TESTPOOL}.root" $values > /dev/null 2>&1
91 rm $values
/freebsd-13.1/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-13.1/tests/sys/cddl/zfs/tests/cli_root/zpool_get/
H A Dzpool_get_002_pos.ksh74 $ZPOOL get all $TESTPOOL > $TMPDIR/values.${TESTCASE_ID}
77 $GREP ^"NAME " $TMPDIR/values.${TESTCASE_ID} > /dev/null 2>&1
87 $GREP "$TESTPOOL *${properties[$i]}" $TMPDIR/values.${TESTCASE_ID} > /dev/null 2>&1
99 COUNT=$($WC $TMPDIR/values.${TESTCASE_ID})
107 $RM $TMPDIR/values.${TESTCASE_ID}
/freebsd-13.1/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-13.1/contrib/libucl/tests/basic/
H A D18.res4 many = "values here";
10 many = "values here";
15 many = "values here";
21 many = "values here";
/freebsd-13.1/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

12345678910>>...70