Searched defs:small (Results 1 - 5 of 5) sorted by relevance
/ast/src/lib/libast/uwin/ |
H A D | asinh.c | 91 const static double small=1.0E-10, /* fl(1+small*small) == 1 */ local 98 if((t=copysign(x,one))>small) 103 else /* if |x| < small */
|
H A D | log1p.c | 122 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local 134 if(copysign(x,one)<small) return(x);
|
H A D | exp__E.c | 117 const static double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; local 119 if(copysign(x,one)>small) { 134 /* end of |x| > small */ 137 if(x!=zero) one+small; /* raise the inexact flag */ local
|
/ast/src/lib/libbz/ |
H A D | bzlib.h | 147 # ifdef small 148 /* windows.h define small to char */ 149 # undef small macro 188 int small 214 int small, 280 int small,
|
H A D | bzlib.c | 494 int small ) 499 if (small != 0 && small != 1) return BZ_PARAM_ERROR; 515 s->smallDecompress = (Bool)small; 1033 int small, 1043 (small != 0 && small != 1) || 1072 ret = bzDecompressInit ( &(bzf->strm), verbosity, small ); 1247 int small, 1255 (small ! 1029 bzReadOpen( int* bzerror, FILE* f, int verbosity, int small, void* unused, int nUnused ) argument 1242 bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument [all...] |
Completed in 16 milliseconds