Home
last modified time | relevance | path

Searched refs:bits32 (Results 1 – 16 of 16) sorted by relevance

/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros42 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr )
44 bits32 z;
70 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
72 bits32 z0, z1;
106 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
108 bits32 z0, z1;
158 bits32 a0,
159 bits32 a1,
160 bits32 a2,
162 bits32 *z0Ptr,
[all …]
H A Dsoftfloat.c106 INLINE bits32 extractFloat32Frac( float32 a ) in extractFloat32Frac()
146 normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr ) in normalizeFloat32Subnormal()
168 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32()
171 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig; in packFloat32()
198 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in roundAndPackFloat32()
261 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in normalizeRoundAndPackFloat32()
276 INLINE bits32 extractFloat64Frac1( float64 a ) in extractFloat64Frac1()
289 INLINE bits32 extractFloat64Frac0( float64 a ) in extractFloat64Frac0()
333 bits32 aSig0, in normalizeFloat64Subnormal()
334 bits32 aSig1, in normalizeFloat64Subnormal()
[all …]
/freebsd/secure/lib/libcrypt/
H A Dcrypt-des.c163 static const u_int32_t bits32[32] = variable
224 bits24 = (bits28 = bits32 + 4) + 4; in des_init()
285 *il |= bits32[obit]; in des_init()
287 *ir |= bits32[obit-32]; in des_init()
289 *fl |= bits32[obit]; in des_init()
291 *fr |= bits32[obit - 32]; in des_init()
337 *p |= bits32[un_pbox[8 * b + j]]; in des_init()
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat.c209 INLINE bits32 extractFloat32Frac( float32 a ) in extractFloat32Frac()
249 normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr ) in normalizeFloat32Subnormal()
271 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32()
274 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig; in packFloat32()
301 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in roundAndPackFloat32()
364 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in normalizeRoundAndPackFloat32()
685 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80()
739 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80()
1002 if ( 0x7FFD <= (bits32) zExp ) { in roundAndPackFloat128()
1130 if ( a & (bits32) 0x80000000 ) in uint32_to_float32()
[all …]
H A Dsoftfloat-macros43 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr )
45 bits32 z;
464 bits32 aHigh, aLow, bHigh, bLow;
596 static bits32 estimateSqrt32( int16 aExp, bits32 a )
607 bits32 z;
619 if ( z <= a ) return (bits32) ( ( (sbits32) a )>>1 );
621 return ( (bits32) ( ( ( (bits64) a )<<31 ) / z ) ) + ( z>>1 );
632 static int8 countLeadingZeros32( bits32 a )
/freebsd/lib/libc/powerpc64/softfloat/
H A Dpowerpc-gcc.h52 typedef unsigned int bits32; typedef
/freebsd/lib/libc/powerpcspe/softfloat/
H A Dpowerpc-gcc.h52 typedef unsigned int bits32; typedef
/freebsd/lib/libc/riscv/softfloat/
H A Driscv-gcc.h52 typedef unsigned int bits32; typedef
/freebsd/lib/libc/powerpc/softfloat/
H A Dpowerpc-gcc.h56 typedef unsigned int bits32; typedef
/freebsd/lib/libc/arm/softfloat/
H A Darm-gcc.h56 typedef unsigned int bits32; typedef
/freebsd/lib/libc/softfloat/
H A Dsoftfloat-history.txt29 `bits32' and a `bits64' version. Renamed `environment.h' to `milieu.h'
H A Dsoftfloat-source.txt110 bits32
124 bits32 - SoftFloat implementation using only 32-bit integers.
164 in `bits*' for either `bits32' or `bits64'.
290 The remaining steps occur within either the `bits32' or `bits64'
H A Dsoftfloat-specialize125 return ( 0xFF000000 < (bits32) ( a<<1 ) );
174 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
/freebsd/lib/libc/softfloat/templates/
H A Dsoftfloat.h49 typedef !!!bits32 float32;
H A Dsoftfloat-specialize81 return ( 0xFF000000 < (bits32) ( a<<1 ) );
126 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp391 const MemoryMapParams *bits32; member
994 MapParams = FreeBSD_X86_MemoryMapParams.bits32; in initializeModule()
1015 MapParams = Linux_X86_MemoryMapParams.bits32; in initializeModule()