/src/sys/external/bsd/compiler_rt/dist/lib/builtins/i386/ |
floatundisf.S | 63 sticky: label 72 #define STICKY sticky-0b(%ecx,%eax,8) 87 movsd STICKY, %xmm1 // (big input) ? 0xfff : 0
|
/src/sys/arch/m68k/fpe/ |
fpu_mul.c | 68 * sticky |= A & 1, A >>= 1; 93 * part of the loop---setting sticky, shifting A, and not adding---will 104 int sticky; local in function:fpu_mul 146 sticky = a2 = a1 = a0 = 0; 153 #define SHR1 /* A >>= 1, with sticky */ \ 154 sticky |= a2 & 1, \ 157 #define SHR32 /* A >>= 32, with sticky */ \ 158 sticky |= a2, a2 = a1, a1 = a0, a0 = 0 205 x->fp_sticky = sticky;
|
/src/sys/arch/powerpc/fpu/ |
fpu_mul.c | 72 * sticky |= A & 1, A >>= 1; 99 * part of the loop---setting sticky, shifting A, and not adding---will 110 int sticky; local in function:fpu_mul 167 sticky = a3 = a2 = a1 = a0 = 0; 175 #define SHR1 /* A >>= 1, with sticky */ \ 176 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \ 179 #define SHR32 /* A >>= 32, with sticky */ \ 180 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0 235 x->fp_sticky = sticky;
|
/src/sys/arch/sparc/fpu/ |
fpu_mul.c | 68 * sticky |= A & 1, A >>= 1; 95 * part of the loop---setting sticky, shifting A, and not adding---will 106 int sticky; local in function:fpu_mul 150 sticky = a3 = a2 = a1 = a0 = 0; 158 #define SHR1 /* A >>= 1, with sticky */ \ 159 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \ 162 #define SHR32 /* A >>= 32, with sticky */ \ 163 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0 218 x->fp_sticky = sticky;
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
fp_lib.h | 254 const bool sticky = *lo << (typeWidth - count); local in function:wideRightShiftWithSticky 255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; 259 const bool sticky = *hi << (2*typeWidth - count) | *lo; local in function:wideRightShiftWithSticky 260 *lo = *hi >> (count - typeWidth) | sticky; 263 const bool sticky = *hi | *lo; local in function:wideRightShiftWithSticky 264 *lo = sticky;
|
/src/lib/libperfuse/ |
ops.c | 275 int sticky, owner, parent_owner; local in function:sticky_access 284 * that have the sticky bit. 292 sticky = puffs_pn_getvap(opc)->va_mode & S_ISTXT; 296 if (sticky && !owner && !parent_owner) 1129 * Check for sticky bit. Unfortunately there is no way to 1719 * Check for sticky bit on non-directory by non root user
|