Home
last modified time | relevance | path

Searched refs:SF_exp_len (Results 1 – 6 of 6) sorted by relevance

/dports/math/cln/cln-1.3.6/src/float/sfloat/
H A Dcl_SF.h16 #define SF_exp_len 8 // number of bits in the exponent macro
22 #define SF_exp_mid bit(SF_exp_len-1) // exponent bias
23 #define SF_exp_high (bit(SF_exp_len)-1) // maximum exponent
72 return (x.word >> SF_exp_shift) & (bit(SF_exp_len)-1); in SF_uexp()
/dports/lang/clisp/clisp-df3b9f6fdcff22832898e89a989eb499c0f842ed/src/
H A Daridecl.d109 #define SF_exp_len 8 /* Number of exponent bits */ macro
119 #define SF_exp_mid bit(SF_exp_len-1) /* value representing exponent 0 */
120 #define SF_exp_high (bit(SF_exp_len)-1) /* maximal exponent */
131 (((exp) & (bit(SF_exp_len)-1)) << SF_mant_len) | ((mant) & (bit(SF_mant_len)-1)))
H A Dflo_konv.d15 #if (SF_exp_len==FF_exp_len) && (SF_exp_low>=FF_exp_low) && (SF_exp_mid==FF_exp_mid) && (SF_exp_hig… in SF_to_FF()
H A Dsfloat.d10 #if defined(GNU) && defined(MC680X0) && !defined(NO_ASM) && (SF_exp_shift==16) && (SF_exp_len==8)
18 #define SF_uexp(x) ((as_oint(x) >> SF_exp_shift) & (bit(SF_exp_len)-1))
59 | ((oint)((uint8)((exp)+SF_exp_mid) & (bit(SF_exp_len)-1)) << SF_exp_shift) \
H A Dcomptran.d495 { prec += SF_exp_len-1; }, in N_N_expt_N()
/dports/math/cln/cln-1.3.6/src/float/sfloat/elem/
H A Dcl_SF_futrunc.cc32 (x.word & ~(((bit(SF_exp_len)-1)<<SF_exp_shift) in futruncate()