Relicense BabelTrace library to MIT (BSD-style)
[babeltrace.git] / formats / ctf / types / float.c
index 20cf7fa537c8e96e7a4e14359688f58f967655c3..04f2071da0613e0b6e12673dfd9143f1975bc4f3 100644 (file)
@@ -3,21 +3,17 @@
  *
  * Floating point read/write functions.
  *
- * Copyright (c) 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
  *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
  *
  * Reference: ISO C99 standard 5.2.4
  */
@@ -83,27 +79,23 @@ void _ctf_float_copy(struct stream_pos *destp,
 
        /* Read */
        if (src->byte_order == LITTLE_ENDIAN) {
-               mantissa = ctf_bitfield_unsigned_read(srcp,
-                                                     src_class->mantissa);
-               exp = ctf_bitfield_signed_read(srcp, src_class->exp);
-               sign = ctf_bitfield_unsigned_read(srcp, src_class->sign);
+               mantissa = ctf_uint_read(srcp, src_class->mantissa);
+               exp = ctf_int_read(srcp, src_class->exp);
+               sign = ctf_uint_read(srcp, src_class->sign);
        } else {
-               sign = ctf_bitfield_unsigned_read(srcp, src_class->sign);
-               exp = ctf_bitfield_signed_read(srcp, src_class->exp);
-               mantissa = ctf_bitfield_unsigned_read(srcp,
-                                                     src_class->mantissa);
+               sign = ctf_uint_read(srcp, src_class->sign);
+               exp = ctf_int_read(srcp, src_class->exp);
+               mantissa = ctf_uint_read(srcp, src_class->mantissa);
        }
        /* Write */
        if (dest->byte_order == LITTLE_ENDIAN) {
-               ctf_bitfield_unsigned_write(destp, dest_class->mantissa,
-                                           mantissa);
-               ctf_bitfield_signed_write(destp, dest_class->exp, exp);
-               ctf_bitfield_unsigned_write(destp, dest_class->sign, sign);
+               ctf_uint_write(destp, dest_class->mantissa, mantissa);
+               ctf_int_write(destp, dest_class->exp, exp);
+               ctf_uint_write(destp, dest_class->sign, sign);
        } else {
-               ctf_bitfield_unsigned_write(destp, dest_class->sign, sign);
-               ctf_bitfield_signed_write(destp, dest_class->exp, exp);
-               ctf_bitfield_unsigned_write(destp, dest_class->mantissa,
-                                           mantissa);
+               ctf_uint_write(destp, dest_class->sign, sign);
+               ctf_int_write(destp, dest_class->exp, exp);
+               ctf_uint_write(destp, dest_class->mantissa, mantissa);
        }
 }
 
This page took 0.023716 seconds and 4 git commands to generate.