/src/sys/arch/m68k/fpe/ |
fpu_subr.c | 87 int lsh; local in function:fpu_shr 128 lsh = 32 - rsh; 129 s |= m2 << lsh; 130 m2 = (m2 >> rsh) | (m1 << lsh); 131 m1 = (m1 >> rsh) | (m0 << lsh); 154 int lsh, rsh, exp; local in function:fpu_norm 190 lsh = 32 - rsh; 191 m2 = m1 << lsh; 192 m1 = (m1 >> rsh) | (m0 << lsh); 199 lsh = bfffo(m0) [all...] |
fpu_subr.c | 87 int lsh; local in function:fpu_shr 128 lsh = 32 - rsh; 129 s |= m2 << lsh; 130 m2 = (m2 >> rsh) | (m1 << lsh); 131 m1 = (m1 >> rsh) | (m0 << lsh); 154 int lsh, rsh, exp; local in function:fpu_norm 190 lsh = 32 - rsh; 191 m2 = m1 << lsh; 192 m1 = (m1 >> rsh) | (m0 << lsh); 199 lsh = bfffo(m0) [all...] |
/src/sys/arch/powerpc/fpu/ |
fpu_subr.c | 71 int lsh; local in function:fpu_shr 112 lsh = 32 - rsh; 113 s |= m3 << lsh; 114 m3 = (m3 >> rsh) | (m2 << lsh); 115 m2 = (m2 >> rsh) | (m1 << lsh); 116 m1 = (m1 >> rsh) | (m0 << lsh); 140 int lsh, rsh, exp; local in function:fpu_norm 173 lsh = 32 - rsh; 174 m3 = m2 << lsh; 175 m2 = (m2 >> rsh) | (m1 << lsh); [all...] |
fpu_subr.c | 71 int lsh; local in function:fpu_shr 112 lsh = 32 - rsh; 113 s |= m3 << lsh; 114 m3 = (m3 >> rsh) | (m2 << lsh); 115 m2 = (m2 >> rsh) | (m1 << lsh); 116 m1 = (m1 >> rsh) | (m0 << lsh); 140 int lsh, rsh, exp; local in function:fpu_norm 173 lsh = 32 - rsh; 174 m3 = m2 << lsh; 175 m2 = (m2 >> rsh) | (m1 << lsh); [all...] |
/src/sys/arch/sparc/fpu/ |
fpu_subr.c | 72 int lsh; local in function:fpu_shr 118 lsh = 32 - rsh; 119 s |= m3 << lsh; 120 m3 = (m3 >> rsh) | (m2 << lsh); 121 m2 = (m2 >> rsh) | (m1 << lsh); 122 m1 = (m1 >> rsh) | (m0 << lsh); 146 int lsh, rsh, exp; local in function:fpu_norm 179 lsh = 32 - rsh; 180 m3 = m2 << lsh; 181 m2 = (m2 >> rsh) | (m1 << lsh); [all...] |
fpu_subr.c | 72 int lsh; local in function:fpu_shr 118 lsh = 32 - rsh; 119 s |= m3 << lsh; 120 m3 = (m3 >> rsh) | (m2 << lsh); 121 m2 = (m2 >> rsh) | (m1 << lsh); 122 m1 = (m1 >> rsh) | (m0 << lsh); 146 int lsh, rsh, exp; local in function:fpu_norm 179 lsh = 32 - rsh; 180 m3 = m2 << lsh; 181 m2 = (m2 >> rsh) | (m1 << lsh); [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
int_lib.h | 124 uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF); local in function:__builtin_clzll 127 return 32 + __builtin_clz(lsh);
|
int_lib.h | 124 uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF); local in function:__builtin_clzll 127 return 32 + __builtin_clz(lsh);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/gpio/ |
nouveau_nvkm_subdev_gpio_nv50.c | 50 u32 lsh = line & 0x0f; local in function:nv50_gpio_reset 58 nvkm_mask(device, reg, 0x00010001U << lsh, val << lsh);
|
nouveau_nvkm_subdev_gpio_nv50.c | 50 u32 lsh = line & 0x0f; local in function:nv50_gpio_reset 58 nvkm_mask(device, reg, 0x00010001U << lsh, val << lsh);
|