Searched refs:rh (Results 1 - 25 of 47) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/libdm/
H A Dlibdm-report.c83 struct dm_report *rh; member in struct:row
88 static const struct dm_report_object_type *_find_type(struct dm_report *rh, argument
93 for (t = rh->types; t->data_fn; t++)
104 int dm_report_field_string(struct dm_report *rh, argument
109 if (!(repstr = dm_pool_strdup(rh->mem, *data))) {
120 int dm_report_field_int(struct dm_report *rh, argument
127 if (!(repstr = dm_pool_zalloc(rh->mem, 13))) {
132 if (!(sortval = dm_pool_alloc(rh->mem, sizeof(int64_t)))) {
149 int dm_report_field_uint32(struct dm_report *rh, argument
156 if (!(repstr = dm_pool_zalloc(rh
178 dm_report_field_int32(struct dm_report *rh, struct dm_report_field *field, const int32_t *data) argument
207 dm_report_field_uint64(struct dm_report *rh, struct dm_report_field *field, const uint64_t *data) argument
248 _display_fields(struct dm_report *rh) argument
290 _copy_field(struct dm_report *rh, struct field_properties *dest, uint32_t field_num) argument
308 _add_field(struct dm_report *rh, uint32_t field_num, uint32_t flags) argument
366 _all_match(struct dm_report *rh, const char *field, size_t flen) argument
401 _add_all_fields(struct dm_report *rh, uint32_t type) argument
412 _field_match(struct dm_report *rh, const char *field, size_t flen, unsigned report_type_only) argument
441 _add_sort_key(struct dm_report *rh, uint32_t field_num, uint32_t flags, unsigned report_type_only) argument
476 _key_match(struct dm_report *rh, const char *key, size_t len, unsigned report_type_only) argument
509 _parse_fields(struct dm_report *rh, const char *format, unsigned report_type_only) argument
538 _parse_keys(struct dm_report *rh, const char *keys, unsigned report_type_only) argument
570 struct dm_report *rh; local
644 dm_report_free(struct dm_report *rh) argument
661 dm_report_set_output_field_name_prefix(struct dm_report *rh, const char *output_field_name_prefix) argument
678 _report_get_field_data(struct dm_report *rh, struct field_properties *fp, void *object) argument
689 dm_report_object(struct dm_report *rh, void *object) argument
756 _report_headings(struct dm_report *rh) argument
862 _sort_rows(struct dm_report *rh) argument
889 _output_field(struct dm_report *rh, struct dm_report_field *field) argument
971 _output_as_rows(struct dm_report *rh) argument
1030 _output_as_columns(struct dm_report *rh) argument
1081 dm_report_output(struct dm_report *rh) argument
[all...]
H A Dlibdevmapper.h971 int (*report_fn)(struct dm_report *rh, struct dm_pool *mem,
996 int dm_report_object(struct dm_report *rh, void *object);
997 int dm_report_output(struct dm_report *rh);
998 void dm_report_free(struct dm_report *rh);
1003 int dm_report_set_output_field_name_prefix(struct dm_report *rh,
1010 int dm_report_field_string(struct dm_report *rh, struct dm_report_field *field,
1012 int dm_report_field_int32(struct dm_report *rh, struct dm_report_field *field,
1014 int dm_report_field_uint32(struct dm_report *rh, struct dm_report_field *field,
1016 int dm_report_field_int(struct dm_report *rh, struct dm_report_field *field,
1018 int dm_report_field_uint64(struct dm_report *rh, struc
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Dmod_1_1.c60 mp_limb_t rh, rl, bi, q, ph, pl, r; local
72 add_ssaaaa (rh, rl, ph, pl, 0, ap[n - 2]);
83 umul_ppmm (rh, rl, rh, B2modb);
84 add_ssaaaa (rh, rl, rh, rl, ph, pl);
91 rh = (rh << cnt) | (rl >> (GMP_LIMB_BITS - cnt));
93 mask = -(mp_limb_t) (rh >= b);
94 rh
[all...]
H A Dmod_1_2.c73 mp_limb_t rh, rl, bi, q, ph, pl, ch, cl, r; local
98 umul_ppmm (rh, rl, ap[n - 1], B2modb);
99 add_ssaaaa (rh, rl, rh, rl, ph, pl);
104 umul_ppmm (rh, rl, ap[n - 1], B1modb);
105 add_ssaaaa (rh, rl, rh, rl, 0, ap[n - 2]);
121 umul_ppmm (rh, rl, rh, B3modb);
122 add_ssaaaa (rh, r
[all...]
H A Dmod_1_3.c75 mp_limb_t rh, rl, bi, q, ph, pl, ch, cl, r; local
95 umul_ppmm (rh, rl, ap[n - 1], B2modb);
96 add_ssaaaa (rh, rl, rh, rl, ph, pl);
100 rh = 0;
106 add_ssaaaa (rh, rl, ph, pl, 0, ap[n - 2]);
128 umul_ppmm (rh, rl, rh, B4modb);
129 add_ssaaaa (rh, rl, rh, r
[all...]
H A Dsbpi1_bdiv_qr.c50 mp_limb_t rh; local
59 rh = 0;
74 rh += mpn_add (np + dn, np + dn, qn, np, dn);
91 rh += mpn_add_n (np + dn, np + dn, np, qn);
97 ASSERT (rh == 0);
105 ASSERT (cy >= rh);
106 return cy - rh;
H A Dbdiv_qr.c41 mp_limb_t rh; local
48 rh = mpn_sbpi1_bdiv_qr (qp, tp, nn, dp, dn, di);
55 rh = mpn_dcpi1_bdiv_qr (qp, tp, nn, dp, dn, di);
60 rh = mpn_mu_bdiv_qr (qp, rp, np, nn, dp, dn, tp);
63 return rh;
H A Dmod_1_4.c77 mp_limb_t rh, rl, bi, q, ph, pl, ch, cl, r; local
97 umul_ppmm (rh, rl, ap[n - 1], B3modb);
98 add_ssaaaa (rh, rl, rh, rl, ph, pl);
102 rh = 0;
108 add_ssaaaa (rh, rl, ph, pl, 0, ap[n - 2]);
114 umul_ppmm (rh, rl, ap[n - 1], B2modb);
115 add_ssaaaa (rh, rl, rh, rl, ph, pl);
141 umul_ppmm (rh, r
[all...]
H A Ddcpi1_bdiv_qr.c56 mp_limb_t rh; local
69 rh = mpn_sub (np + lo, np + lo, n + hi, tp, n);
79 rh += mpn_sub_n (np + n, np + n, tp, n);
81 return rh;
/netbsd-6-1-5-RELEASE/include/rpc/
H A Dclnt.h199 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
200 * CLIENT *rh;
208 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
209 ((*(rh)->cl_ops->cl_call)(rh, proc, (xdrproc_t)xargs, \
212 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
213 ((*(rh)->cl_ops->cl_call)(rh, proc, (xdrproc_t)xargs, \
219 * CLNT_ABORT(rh);
220 * CLIENT *rh;
[all...]
/netbsd-6-1-5-RELEASE/sys/netinet6/
H A Droute6.c62 struct ip6_rthdr *rh; local
66 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
67 if (rh == NULL) {
72 switch (rh->ip6r_type) {
90 rhlen = (rh->ip6r_len + 1) << 3;
99 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
100 if (rh == NULL) {
104 if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
110 if (rh
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/report/
H A Dreport.c60 static int _string_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), argument
64 return dm_report_field_string(rh, field, (const char **) data);
67 static int _dev_name_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), argument
73 return dm_report_field_string(rh, field, &name);
151 static int _devices_disp(struct dm_report *rh __attribute((unused)), struct dm_pool *mem,
158 static int _peranges_disp(struct dm_report *rh __attribute((unused)), struct dm_pool *mem,
165 static int _tags_disp(struct dm_report *rh __attribute((unused)), struct dm_pool *mem,
195 static int _modules_disp(struct dm_report *rh, struct dm_pool *mem, argument
210 return _tags_disp(rh, mem, field, modules, private);
213 static int _vgfmt_disp(struct dm_report *rh, struc argument
227 _pvfmt_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
242 _lvkmaj_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
255 _lvkmin_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
468 _loglv_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
486 _lvname_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
520 _origin_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
533 _movepv_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
552 _convertlv_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
634 _lvreadahead_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
648 _lvkreadahead_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
662 _vgsize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
674 _segstart_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
686 _segstartpe_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
697 _segsize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
709 _chunksize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
724 _originsize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
741 _pvused_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
757 _pvfree_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
773 _pvsize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
789 _devsize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
802 _vgfree_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
832 _uint32_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
839 _int32_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
846 _pvmdas_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
859 _vgmdas_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
871 _pvmdafree_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
914 _pvmdasize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
929 _vgmdasize_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
941 _vgmdafree_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
963 _lvcount_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
975 _lvsegcount_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
987 _snapcount_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
1177 void *rh; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dpr33466.c8 long double rh = 0.5rh; /* { dg-error "invalid suffix" } */ variable
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tests/mpn/
H A Dt-bdiv.c57 check_one (mp_ptr qp, mp_srcptr rp, mp_limb_t rh, argument
83 cmp = cy != rh || mpn_cmp (tp, np, nn) != 0;
98 printf ("Rb= %d, Cy=%d\n", (int) cy, (int) rh);
140 mp_limb_t rh; local
259 rh = mpn_sbpi1_bdiv_qr (qp, rp, nn, dp, dn, -dinv);
262 check_one (qp, rp + nn - dn, rh, np, nn, dp, dn, "mpn_sbpi1_bdiv_qr");
282 rh = mpn_dcpi1_bdiv_qr (qp, rp, nn, dp, dn, -dinv);
285 check_one (qp, rp + nn - dn, rh, np, nn, dp, dn, "mpn_dcpi1_bdiv_qr");
313 rh = mpn_mu_bdiv_qr (qp, rp, np, nn, dp, dn, scratch);
317 check_one (qp, rp, rh, n
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/mantools/
H A Dsrctoman42 "") sh='[:#]'; r='#'; rh=$r; awk='#'; mk='#';
160 .rh ratfor #
/netbsd-6-1-5-RELEASE/tests/lib/libc/db/
H A Dh_db.c574 static RECNOINFO rh; local
634 rh.flags = atoi(eq);
635 return &rh;
638 rh.cachesize = atoi(eq);
639 return &rh;
642 rh.lorder = atoi(eq);
643 return &rh;
646 rh.reclen = atoi(eq);
647 return &rh;
650 rh
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-udp.c216 struct rtcphdr *rh = (struct rtcphdr *)hdr; local
221 if ((u_char *)(rh + 1) > ep) {
225 len = (EXTRACT_16BITS(&rh->rh_len) + 1) * 4;
226 flags = EXTRACT_16BITS(&rh->rh_flags);
230 sr = (struct rtcp_sr *)(rh + 1);
232 if (len != cnt * sizeof(*rr) + sizeof(*sr) + sizeof(*rh))
235 printf(" %u", EXTRACT_32BITS(&rh->rh_ssrc));
249 if (len != cnt * sizeof(*rr) + sizeof(*rh))
251 rr = (struct rtcp_rr *)(rh + 1);
253 printf(" %u", EXTRACT_32BITS(&rh
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/net/
H A Drthdr.c406 const struct ip6_rthdr *rh; local
412 rh = (const struct ip6_rthdr *)bp;
414 switch (rh->ip6r_type) {
435 const struct ip6_rthdr *rh; local
441 rh = (const struct ip6_rthdr *)bp;
443 switch (rh->ip6r_type) {
/netbsd-6-1-5-RELEASE/sys/dev/marvell/
H A Dmvsdio.c323 uint16_t rh[MVSDIO_NRH + 1]; local
328 rh[i + 1] = bus_space_read_4(sc->sc_iot,
330 rh[0] = 0;
333 rh[i - 1] << 30 |
334 rh[i + 0] << 14 |
335 rh[i + 1] >> 2;
340 rh[i] = bus_space_read_4(sc->sc_iot,
343 ((rh[0] & 0x03ff) << 22) |
344 ((rh[1] ) << 6) |
345 ((rh[
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/
H A Dconfig.guess.long41 echo ${GCONFIG}-rh${long}
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/include/
H A Dlibdevmapper.h971 int (*report_fn)(struct dm_report *rh, struct dm_pool *mem,
996 int dm_report_object(struct dm_report *rh, void *object);
997 int dm_report_output(struct dm_report *rh);
998 void dm_report_free(struct dm_report *rh);
1003 int dm_report_set_output_field_name_prefix(struct dm_report *rh,
1010 int dm_report_field_string(struct dm_report *rh, struct dm_report_field *field,
1012 int dm_report_field_int32(struct dm_report *rh, struct dm_report_field *field,
1014 int dm_report_field_uint32(struct dm_report *rh, struct dm_report_field *field,
1016 int dm_report_field_int(struct dm_report *rh, struct dm_report_field *field,
1018 int dm_report_field_uint64(struct dm_report *rh, struc
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/ndiscvt/
H A Dinf.c66 static struct reg_head rh; variable in typeref:struct:reg_head
88 TAILQ_INIT(&rh);
417 TAILQ_FOREACH(reg, &rh, link) {
449 TAILQ_FOREACH(reg, &rh, link) {
465 TAILQ_FOREACH(reg, &rh, link) {
487 TAILQ_FOREACH(reg, &rh, link) {
506 TAILQ_FOREACH(reg, &rh, link) {
524 TAILQ_FOREACH(reg, &rh, link) {
541 TAILQ_FOREACH(reg, &rh, link) {
718 TAILQ_INSERT_TAIL(&rh, re
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ec/
H A Decp_smpl.c946 BIGNUM *rh, *tmp, *Z4, *Z6; local
964 rh = BN_CTX_get(ctx);
976 * To test this, we add up the right-hand side in 'rh'.
979 /* rh := X^2 */
980 if (!field_sqr(group, rh, &point->X, ctx)) goto err;
988 /* rh := (rh + a*Z^4)*X */
993 if (!BN_mod_sub_quick(rh, rh, tmp, p)) goto err;
994 if (!field_mul(group, rh, r
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/usb/
H A Duthum.c346 int temp, rh; local
364 rh = uthum_sht1x_rh(humidity_tick, temp);
366 sc->sc_sensor[UTHUM_HUMIDITY].value_cur = rh / 1000;
418 int rh_l, rh; local
421 rh = ((temp - 2500) * (1 + (ticks >> 7)) + rh_l) / 10;
422 return rh;
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/tools/
H A Ddmsetup.c1947 static int _int32_disp(struct dm_report *rh, argument
1954 return dm_report_field_int32(rh, field, &value);
1957 static int _uint32_disp(struct dm_report *rh, argument
1964 return dm_report_field_uint32(rh, field, &value);
1967 static int _dm_name_disp(struct dm_report *rh, argument
1974 return dm_report_field_string(rh, field, &name);
1977 static int _dm_uuid_disp(struct dm_report *rh, argument
1987 return dm_report_field_string(rh, field, &uuid);
1990 static int _dm_read_ahead_disp(struct dm_report *rh, argument
2000 return dm_report_field_uint32(rh, fiel
2003 _dm_info_status_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2021 _dm_info_table_loaded_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2045 _dm_info_suspended_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2061 _dm_info_read_only_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2078 _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2110 _dm_tree_names(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private, unsigned inverted) argument
2155 _dm_deps_names_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2163 _dm_tree_parents_names_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2171 _dm_tree_parents_devs_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2221 _dm_tree_parents_count_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2232 _dm_deps_disp(struct dm_report *rh, struct dm_pool *mem, struct dm_report_field *field, const void *data, void *private) argument
2276 _dm_subsystem_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2284 _dm_vg_name_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2293 _dm_lv_name_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
2302 _dm_lv_layer_name_disp(struct dm_report *rh, struct dm_pool *mem __attribute((unused)), struct dm_report_field *field, const void *data, void *private __attribute((unused))) argument
[all...]

Completed in 310 milliseconds

12