Subversion Repositories Kolibri OS

Rev

Rev 4921 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 6099
Line 358... Line 358...
358
#define hi0bits __hi0bits
358
#define hi0bits __hi0bits
359
#define i2b	__i2b
359
#define i2b	__i2b
360
#define mult	__multiply
360
#define mult	__multiply
361
#define pow5mult	__pow5mult
361
#define pow5mult	__pow5mult
362
#define lshift	__lshift
362
#define lshift	__lshift
-
 
363
#define match   __match
363
#define cmp	__mcmp
364
#define cmp	__mcmp
364
#define diff	__mdiff
365
#define diff	__mdiff
365
#define ulp 	__ulp
366
#define ulp 	__ulp
366
#define b2d	__b2d
367
#define b2d	__b2d
367
#define d2b	__d2b
368
#define d2b	__d2b
Line 394... Line 395...
394
_Bigint *	_EXFUN(pow5mult, (struct _reent *, _Bigint *, int k));
395
_Bigint *	_EXFUN(pow5mult, (struct _reent *, _Bigint *, int k));
395
int 		_EXFUN(hi0bits,(__ULong));
396
int 		_EXFUN(hi0bits,(__ULong));
396
int 		_EXFUN(lo0bits,(__ULong *));
397
int 		_EXFUN(lo0bits,(__ULong *));
397
_Bigint *	_EXFUN(d2b,(struct _reent *p, double d, int *e, int *bits));
398
_Bigint *	_EXFUN(d2b,(struct _reent *p, double d, int *e, int *bits));
398
_Bigint *	_EXFUN(lshift,(struct _reent *p, _Bigint *b, int k));
399
_Bigint *	_EXFUN(lshift,(struct _reent *p, _Bigint *b, int k));
-
 
400
int		_EXFUN(match,(const char**, char*));
399
_Bigint *	_EXFUN(diff,(struct _reent *p, _Bigint *a, _Bigint *b));
401
_Bigint *	_EXFUN(diff,(struct _reent *p, _Bigint *a, _Bigint *b));
400
int		_EXFUN(cmp,(_Bigint *a, _Bigint *b));
402
int		_EXFUN(cmp,(_Bigint *a, _Bigint *b));
401
int		_EXFUN(gethex,(struct _reent *p, _CONST char **sp, _CONST struct FPI *fpi, Long *exp, _Bigint **bp, int sign));     
403
int		_EXFUN(gethex,(struct _reent *p, _CONST char **sp, _CONST struct FPI *fpi, Long *exp, _Bigint **bp, int sign));     
402
double		_EXFUN(ratio,(_Bigint *a, _Bigint *b));
404
double		_EXFUN(ratio,(_Bigint *a, _Bigint *b));
403
__ULong		_EXFUN(any_on,(_Bigint *b, int k));
405
__ULong		_EXFUN(any_on,(_Bigint *b, int k));
404
void		_EXFUN(copybits,(__ULong *c, int n, _Bigint *b));
406
void		_EXFUN(copybits,(__ULong *c, int n, _Bigint *b));
-
 
407
#if defined (_HAVE_LONG_DOUBLE) && !defined (_LDBL_EQ_DBL)
-
 
408
int		_EXFUN(_strtorx_r,(struct _reent *, _CONST char *, char **, int, void *));
-
 
409
int		_EXFUN(_strtodg_r,(struct _reent *p, _CONST char *s00, char **se, struct FPI *fpi, Long *exp, __ULong *bits));
-
 
410
#endif /* _HAVE_LONG_DOUBLE && !_LDBL_EQ_DBL */
-
 
411
 
405
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) || defined(_SMALL_HEXDIG)
412
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) || defined(_SMALL_HEXDIG)
406
unsigned char _EXFUN(__hexdig_fun,(unsigned char));
413
unsigned char _EXFUN(__hexdig_fun,(unsigned char));
407
#endif /* !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__) && !defined(_SMALL_HEXDIG) */
414
#endif /* !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__) && !defined(_SMALL_HEXDIG) */
408
#ifdef INFNAN_CHECK
415
#ifdef INFNAN_CHECK
409
int		_EXFUN(hexnan,(_CONST char **sp, _CONST struct FPI *fpi, __ULong *x0));
416
int		_EXFUN(hexnan,(_CONST char **sp, _CONST struct FPI *fpi, __ULong *x0));