/minix/include/rpc/ |
H A D | clnt.h | 208 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument 209 ((*(rh)->cl_ops->cl_call)(rh, proc, (xdrproc_t)xargs, \ 213 ((*(rh)->cl_ops->cl_call)(rh, proc, (xdrproc_t)xargs, \ 222 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 223 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 230 #define CLNT_GETERR(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument 231 #define clnt_geterr(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument 241 #define CLNT_FREERES(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp)) argument 242 #define clnt_freeres(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp)) argument 284 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh)) argument [all …]
|
/minix/tests/lib/libc/db/ |
H A D | h_db.c | 574 static RECNOINFO rh; in setinfo() local 634 rh.flags = atoi(eq); in setinfo() 635 return &rh; in setinfo() 639 return &rh; in setinfo() 642 rh.lorder = atoi(eq); in setinfo() 643 return &rh; in setinfo() 647 return &rh; in setinfo() 650 rh.bval = atoi(eq); in setinfo() 651 return &rh; in setinfo() 654 rh.psize = atoi(eq); in setinfo() [all …]
|
/minix/external/bsd/llvm/dist/clang/test/CodeGen/ |
H A D | arm-asm-variable.c | 10 register uint32_t rh asm("r2"); in foo() 17 : [_rl] "=&r" (rl), [_rh] "=&r" (rh) \ in foo()
|
/minix/lib/libc/net/ |
H A D | rthdr.c | 403 const struct ip6_rthdr *rh; in inet6_rth_segments() local 409 rh = (const struct ip6_rthdr *)bp; in inet6_rth_segments() 411 switch (rh->ip6r_type) { in inet6_rth_segments() 432 const struct ip6_rthdr *rh; in inet6_rth_getaddr() local 438 rh = (const struct ip6_rthdr *)bp; in inet6_rth_getaddr() 440 switch (rh->ip6r_type) { in inet6_rth_getaddr()
|
/minix/external/bsd/tcpdump/dist/ |
H A D | print-udp.c | 204 struct rtcphdr *rh = (struct rtcphdr *)hdr; in rtcp_print() local 209 if ((u_char *)(rh + 1) > ep) { in rtcp_print() 213 len = (EXTRACT_16BITS(&rh->rh_len) + 1) * 4; in rtcp_print() 214 flags = EXTRACT_16BITS(&rh->rh_flags); in rtcp_print() 218 sr = (struct rtcp_sr *)(rh + 1); in rtcp_print() 223 ND_PRINT((ndo, " %u", EXTRACT_32BITS(&rh->rh_ssrc))); in rtcp_print() 237 if (len != cnt * sizeof(*rr) + sizeof(*rh)) in rtcp_print() 239 rr = (struct rtcp_rr *)(rh + 1); in rtcp_print() 241 ND_PRINT((ndo, " %u", EXTRACT_32BITS(&rh->rh_ssrc))); in rtcp_print() 246 ND_PRINT((ndo, " %u", EXTRACT_32BITS(&rh->rh_ssrc))); in rtcp_print() [all …]
|
/minix/crypto/external/bsd/openssl/dist/crypto/ec/ |
H A D | ecp_smpl.c | 1003 BIGNUM *rh, *tmp, *Z4, *Z6; in ec_GFp_simple_is_on_curve() local 1020 rh = BN_CTX_get(ctx); in ec_GFp_simple_is_on_curve() 1055 if (!BN_mod_sub_quick(rh, rh, tmp, p)) in ec_GFp_simple_is_on_curve() 1057 if (!field_mul(group, rh, rh, &point->X, ctx)) in ec_GFp_simple_is_on_curve() 1062 if (!BN_mod_add_quick(rh, rh, tmp, p)) in ec_GFp_simple_is_on_curve() 1064 if (!field_mul(group, rh, rh, &point->X, ctx)) in ec_GFp_simple_is_on_curve() 1071 if (!BN_mod_add_quick(rh, rh, tmp, p)) in ec_GFp_simple_is_on_curve() 1077 if (!BN_mod_add_quick(rh, rh, &group->a, p)) in ec_GFp_simple_is_on_curve() 1079 if (!field_mul(group, rh, rh, &point->X, ctx)) in ec_GFp_simple_is_on_curve() 1082 if (!BN_mod_add_quick(rh, rh, &group->b, p)) in ec_GFp_simple_is_on_curve() [all …]
|
/minix/minix/tests/ |
H A D | t40e.c | 99 static int compare_fds(int nfds, fd_set *lh, fd_set *rh) { in compare_fds() argument 102 assert(lh != NULL && rh != NULL && nfds > 0); in compare_fds() 104 if((FD_ISSET(i, lh) && !FD_ISSET(i, rh)) || in compare_fds() 105 (!FD_ISSET(i, lh) && FD_ISSET(i, rh))) { in compare_fds()
|
H A D | t40d.c | 140 static int compare_fds(int nfds, fd_set *lh, fd_set *rh) { in compare_fds() argument 143 assert(lh != NULL && rh != NULL && nfds > 0); in compare_fds() 145 if((FD_ISSET(i, lh) && !FD_ISSET(i, rh)) || in compare_fds() 146 (!FD_ISSET(i, lh) && FD_ISSET(i, rh))) { in compare_fds()
|
/minix/minix/drivers/sensors/sht21/ |
H A D | sht21.c | 243 int32_t t, rh; in measure() local 258 r = sensor_read(SHT21_RH, &rh); in measure() 265 cached_rh = rh; in measure()
|
/minix/external/bsd/dhcp/dist/dhcpctl/ |
H A D | remote.c | 261 unsigned long rh; in dhcpctl_remote_set_value() local 269 status = omapi_get_int_value (&rh, value); in dhcpctl_remote_set_value() 271 ro -> remote_handle = rh; in dhcpctl_remote_set_value()
|
/minix/sys/netinet6/ |
H A D | nd6.h | 388 struct nd_opt_rd_hdr *rh; member 400 #define nd_opts_rh nd_opt_each.rh
|
/minix/external/bsd/mdocml/dist/ |
H A D | roff.c | 1186 int not, lh, rh; in roff_evalcond() local 1216 if (!roff_getnum(v, pos, &rh)) in roff_evalcond() 1220 lh = lh >= rh; in roff_evalcond() 1223 lh = lh <= rh; in roff_evalcond() 1226 lh = lh == rh; in roff_evalcond() 1229 lh = lh > rh; in roff_evalcond() 1232 lh = lh < rh; in roff_evalcond()
|
H A D | chars.in | 371 CHAR("rh", "=>", 9758)
|
/minix/sbin/ping6/ |
H A D | ping6.c | 1792 struct ip6_rthdr *rh = (struct ip6_rthdr *)extbuf; in pr_rthdr() local 1796 printf("nxt %u, len %u (%d bytes), type %u, ", rh->ip6r_nxt, in pr_rthdr() 1797 rh->ip6r_len, (rh->ip6r_len + 1) << 3, rh->ip6r_type); in pr_rthdr() 1802 printf("%d left\n", rh->ip6r_segleft); in pr_rthdr()
|
/minix/external/bsd/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsCondMov.td | 65 def : MipsPat<(select (i32 (setuge CRC:$lh, immSExt16:$rh)), DRC:$T, DRC:$F), 66 (MOVZInst DRC:$T, (SLTiuOp CRC:$lh, immSExt16:$rh), DRC:$F)>;
|
H A D | Mips16InstrInfo.td | 1899 (outs CPU16Regs:$rh, CPU16Regs:$rl), 1901 "li\t$rh, $immHi\n\taddiu\t$rl, $$pc, $immLo\n ",[]> ;
|
/minix/crypto/external/bsd/heimdal/dist/lib/kafs/ |
H A D | afskrb5.c | 211 afslog_uid_int(struct kafs_data *data, const char *cell, const char *rh, in afslog_uid_int() argument
|
/minix/usr.sbin/rtadvd/ |
H A D | rtadvd.c | 108 struct nd_opt_rd_hdr *rh; member 116 #define nd_opts_rh nd_opt_each.rh
|
/minix/crypto/external/bsd/openssl/dist/MacOS/ |
H A D | mklinks.as.hqx | 81 0!%)!!@m!!!!X!#hrh`[rh`!5-!!(G'KPF'&dD!!(G'KP8'&dD!(ri`!!$3!r!!& 83 dD!!*G'KP6@93BA4S!J!l!!)!43"'$3"&!!*X!!)!2!!mrpcrf`(rh!!!!IrE!!! 174 `!2%+rh%!"!TVEf0X$3$`!!&Y!!!"H!&lrh!+rh!!"!TKE'PK"J$a!!2rE`$b!2- 497 pc30(#[h0!!3+BfC[E!d$4`!"E`!!"aF('[h-#rh-!"3`!!KdC@e`F'&dD!!)G'9 505 $!!3+D@jcD!d$9J!#0!!!"cm(4rh#!eJ+rF)!"!TMCQpX$30B!!&[!!!(3`G'rF%
|
H A D | OpenSSL.mcp.hqx | 4819 !!!J!!!!!!!"rb`!!!"4`FQ9Q!!NR4!!!!!N!!!!!!!"rh`!!!!T`FQ9Q!!M`UJ!
|
/minix/etc/ |
H A D | services | 8153 fs-rh-srv 3488/tcp # FS Remote Host Server [Brian_Nickles] … 8154 fs-rh-srv 3488/udp # FS Remote Host Server [Brian_Nickles] … 22059 … Richard Hodges mailto:rh&matriplex.com 22060 … Richard Hodges mailto:rh&source.net
|