HomeSort by: relevance | last modified time | path
    Searched defs:rsh (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/m68k/fpe/
fpu_int.c 81 int rsh; local in function:fpu_int
88 rsh = FP_NMANT - 1 - x->fp_exp;
89 if (rsh <= FP_NG) {
95 fpu_shr(x, rsh - FP_NG);
fpu_subr.c 78 * Shift the given number right rsh bits. Any bits that `fall off' will get
84 fpu_shr(struct fpn *fp, int rsh)
90 if (rsh < 0 || (fp->fp_class != FPC_NUM && !ISNAN(fp)))
99 if (rsh >= FP_NMANT) {
118 if (rsh >= 32 * 2) {
121 } else if (rsh >= 32) {
127 if ((rsh &= 31) != 0) {
128 lsh = 32 - rsh;
130 m2 = (m2 >> rsh) | (m1 << lsh);
131 m1 = (m1 >> rsh) | (m0 << lsh)
154 int lsh, rsh, exp; local in function:fpu_norm
    [all...]
  /src/sys/arch/powerpc/fpu/
fpu_subr.c 62 * Shift the given number right rsh bits. Any bits that `fall off' will get
68 fpu_shr(struct fpn *fp, int rsh)
73 KASSERTMSG(rsh > 0 && (fp->fp_class == FPC_NUM || ISNAN(fp)),
74 "rsh %d, class %d\n", rsh, fp->fp_class);
82 if (rsh >= FP_NMANT) {
99 if (rsh >= 32 * 3) {
102 } else if (rsh >= 32 * 2) {
105 } else if (rsh >= 32) {
111 if ((rsh &= 31) != 0)
140 int lsh, rsh, exp; local in function:fpu_norm
    [all...]
  /src/sys/arch/sparc/fpu/
fpu_subr.c 63 * Shift the given number right rsh bits. Any bits that `fall off' will get
69 fpu_shr(struct fpn *fp, int rsh)
75 if (rsh <= 0 || (fp->fp_class != FPC_NUM && !ISNAN(fp)))
85 if (rsh >= FP_NMANT) {
105 if (rsh >= 32 * 3) {
108 } else if (rsh >= 32 * 2) {
111 } else if (rsh >= 32) {
117 if ((rsh &= 31) != 0) {
118 lsh = 32 - rsh;
120 m3 = (m3 >> rsh) | (m2 << lsh)
146 int lsh, rsh, exp; local in function:fpu_norm
    [all...]
  /src/lib/librmt/
rmtlib.c 212 * with rsh are much more common on BSD systems.
257 const char *rshpath, *rsh; local in function:_rmt_open
330 * setup the pipes for the 'rsh' command and fork
352 if ((rsh = strrchr(rshpath, '/')) == NULL)
353 rsh = rshpath;
355 rsh++;
358 execl(rshpath, rsh, host, "-l", login, _PATH_RMT, NULL);
360 execl(rshpath, rsh, host, _PATH_RMT, NULL);

Completed in 43 milliseconds