namespace the sequence functions
[babeltrace.git] / types / float.c
index 7c3295304b3f099aebbbd8b973e043a0b75eb0a5..0fc137f7522b1e8c51d38db2b7ae0a40a682f940 100644 (file)
  *
  * The above copyright notice and this permission notice shall be included in
  * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
  */
 
 #include <babeltrace/compiler.h>
 #include <babeltrace/format.h>
 #include <babeltrace/types.h>
-#include <endian.h>
+#include <babeltrace/endian.h>
 
 static
 struct definition *_float_definition_new(struct declaration *declaration,
@@ -37,9 +45,9 @@ void _float_declaration_free(struct declaration *declaration)
        struct declaration_float *float_declaration =
                container_of(declaration, struct declaration_float, p);
 
-       declaration_unref(&float_declaration->exp->p);
-       declaration_unref(&float_declaration->mantissa->p);
-       declaration_unref(&float_declaration->sign->p);
+       bt_declaration_unref(&float_declaration->exp->p);
+       bt_declaration_unref(&float_declaration->mantissa->p);
+       bt_declaration_unref(&float_declaration->sign->p);
        g_free(float_declaration);
 }
 
@@ -83,10 +91,9 @@ struct definition *
                container_of(declaration, struct declaration_float, p);
        struct definition_float *_float;
        struct definition *tmp;
-       int ret;
 
        _float = g_new(struct definition_float, 1);
-       declaration_ref(&float_declaration->p);
+       bt_declaration_ref(&float_declaration->p);
        _float->p.declaration = declaration;
        _float->declaration = float_declaration;
        _float->p.scope = new_definition_scope(parent_scope, field_name, root_name);
@@ -121,6 +128,8 @@ struct definition *
        _float->p.name = field_name;
        _float->value = 0.0;
        if (parent_scope) {
+               int ret;
+
                ret = register_field_definition(field_name, &_float->p,
                                                parent_scope);
                assert(!ret);
@@ -134,10 +143,10 @@ void _float_definition_free(struct definition *definition)
        struct definition_float *_float =
                container_of(definition, struct definition_float, p);
 
-       definition_unref(&_float->sign->p);
-       definition_unref(&_float->exp->p);
-       definition_unref(&_float->mantissa->p);
+       bt_definition_unref(&_float->sign->p);
+       bt_definition_unref(&_float->exp->p);
+       bt_definition_unref(&_float->mantissa->p);
        free_definition_scope(_float->p.scope);
-       declaration_unref(_float->p.declaration);
+       bt_declaration_unref(_float->p.declaration);
        g_free(_float);
 }
This page took 0.023183 seconds and 4 git commands to generate.