2 * Copyright Droids Corporation, Microb Technology, Eirbot (2005)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Revision : $Id: f64.h,v 1.6.4.3 2008-05-10 15:06:26 zer0 Exp $
22 /* Here is an example of what is fixed point. This is the f16 type :
24 * int dec 1/256 = 0.00390625
26 * 07 01 : 7 + 0x01*0.00390625 = 7.0039625
27 * 07 80 : 7 + 0x80*0.00390625 = 7.5
28 * 07 FF : 7 + 0xFF*0.00390625 = 7.99609375
31 * FF FF : -1 + 0xFF*0.00390625 = -0.0039625
33 * 7F FF : +127 + 0xFF*0.00390625 = 127.99609375
36 * For f64 the structure is composed by 2 integer of 32 bits. */
43 typedef struct fixed_64 {
52 #define f64_integer u.s.integer
53 #define f64_decimal u.s.decimal
65 __f.u.s64 = 0xFFFFFFFFFFFFFFFF; \
69 #define F64_IS_GT(x,y) (f64_to_s64(x) > f64_to_s64(y))
70 #define F64_IS_LT(x,y) (f64_to_s64(x) < f64_to_s64(y))
71 #define F64_IS_GE(x,y) (f64_to_s64(x) >= f64_to_s64(y))
72 #define F64_IS_LE(x,y) (f64_to_s64(x) <= f64_to_s64(y))
73 #define F64_IS_EQ(x,y) (f64_to_s64(x) == f64_to_s64(y))
74 #define F64_IS_NE(x,y) (f64_to_s64(x) != f64_to_s64(y))
75 #define F64_IS_NEG(x) ((x).f64_integer < 0)
76 #define F64_IS_ZERO(x) ((x).f64_integer == 0 && (x).f64_decimal == 0)
79 /** convert a double to a f64 */
80 f64 f64_from_double(double f);
82 /** convert a f64 to a double */
83 double f64_to_double(f64 fix);
85 /** convert 2 integer (int32_t and uint32_t) to a f64 */
86 f64 f64_from_integer(int32_t i, uint32_t d);
88 /** convert msb integer (int32_t) to a f64 */
89 f64 f64_from_msb(int32_t i);
91 /** convert lsb integer (int32_t) to a f64
92 * ( -0.5 < ret < 0.5 )
94 f64 f64_from_lsb(int32_t i);
96 /** return opposite of the number (=-f) */
99 /** add a with b (=a+b) */
100 f64 f64_add(f64 a, f64 b);
102 /** add a with b (=a-b) */
103 f64 f64_sub(f64 a, f64 b);
105 /** return opposite of the number (=1/f) */
108 /** mul a with b (=a*b) */
109 f64 f64_mul(f64 a, f64 b);
111 /** mul a with b (=a*b), but return only the msb */
112 int32_t f64_msb_mul(f64 a, f64 b);
114 /** div a with b (=a/b) */
115 f64 f64_div(f64 a, f64 b);
120 /** function that display a f64 to the standard output */
121 void f64_print(f64 fix);