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

  /src/sys/arch/m68k/fpe/
fpu_int.c 81 int rsh; local
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)
132 m0 >>= rsh; local
154 int lsh, rsh, exp; local
    [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)
117 m0 >>= rsh; local
140 int lsh, rsh, exp; local
    [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)
123 m0 >>= rsh; local
146 int lsh, rsh, exp; local
    [all...]
  /src/lib/librmt/
rmtlib.c 212 * with rsh are much more common on BSD systems.
257 const char *rshpath, *rsh; local
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);
  /src/external/gpl3/binutils/dist/gas/config/
bfin-defs.h 230 rsh, enumerator in enum:__anon9948
  /src/external/gpl3/binutils.old/dist/gas/config/
bfin-defs.h 230 rsh, enumerator in enum:__anon11428
  /src/external/gpl3/binutils/dist/bfd/
elf64-alpha.c 2161 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh;
2163 rsh = hs->reloc_entries;
2167 for (rs = rsh; rs ; rs = rs->next)
2153 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh; local
  /src/external/gpl3/binutils.old/dist/bfd/
elf64-alpha.c 2161 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh;
2163 rsh = hs->reloc_entries;
2167 for (rs = rsh; rs ; rs = rs->next)
2153 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh; local
  /src/external/gpl3/gdb.old/dist/bfd/
elf64-alpha.c 2156 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh;
2158 rsh = hs->reloc_entries;
2162 for (rs = rsh; rs ; rs = rs->next)
2148 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh; local
  /src/external/gpl3/gdb/dist/bfd/
elf64-alpha.c 2156 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh;
2158 rsh = hs->reloc_entries;
2162 for (rs = rsh; rs ; rs = rs->next)
2148 struct alpha_elf_reloc_entry *ri, *rs, *rin, *rsh; local

Completed in 33 milliseconds