1 | /* |
2 | * Legal Notice |
3 | * |
4 | * This document and associated source code (the "Work") is a part of a |
5 | * benchmark specification maintained by the TPC. |
6 | * |
7 | * The TPC reserves all right, title, and interest to the Work as provided |
8 | * under U.S. and international laws, including without limitation all patent |
9 | * and trademark rights therein. |
10 | * |
11 | * No Warranty |
12 | * |
13 | * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION |
14 | * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE |
15 | * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER |
16 | * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, |
17 | * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, |
18 | * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR |
19 | * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF |
20 | * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. |
21 | * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, |
22 | * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT |
23 | * WITH REGARD TO THE WORK. |
24 | * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO |
25 | * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE |
26 | * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS |
27 | * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, |
28 | * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, |
29 | * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT |
30 | * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD |
31 | * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. |
32 | * |
33 | * Contributors: |
34 | * Gradient Systems |
35 | */ |
36 | #ifndef R_DECIMAL_H |
37 | #define R_DECIMAL_H |
38 | #include "config.h" |
39 | #include "porting.h" |
40 | #include "mathops.h" |
41 | #include <stdio.h> |
42 | |
43 | /* |
44 | * a precise decimal data type, using scaled integer |
45 | * arithmetic. |
46 | */ |
47 | typedef struct DECIMAL_T { |
48 | int flags; |
49 | int precision; |
50 | int scale; |
51 | ds_key_t number; |
52 | } decimal_t; |
53 | |
54 | #define FL_INIT 0x0004 |
55 | |
56 | decimal_t *mk_decimal(int s, int p); |
57 | |
58 | int itodec(decimal_t *dest, int i); |
59 | int ftodec(decimal_t *d, double f); |
60 | int strtodec(decimal_t *d, char *src); |
61 | |
62 | int dectostr(char *dest, decimal_t *d); |
63 | int dectof(double *dest, decimal_t *); |
64 | #define dectoi(d) atoi(d->number) |
65 | |
66 | int decimal_t_op(decimal_t *dest, int o, decimal_t *d1, decimal_t *d2); |
67 | void print_decimal(int nColumn, decimal_t *d, int s); |
68 | void set_precision(decimal_t *d, int sie, int precision); |
69 | #define NegateDecimal(d) (d)->number *= -1 |
70 | #endif /* R_DECIMAL_H */ |
71 | |