Home | History | Annotate | Download | only in aml

Lines Matching refs:aml_object

59 union aml_object *
60 aml_copy_object(struct aml_environ *env, union aml_object *orig)
63 union aml_object *ret;
97 ret->package.elements * sizeof(union aml_object *));
122 union aml_object *
123 aml_alloc_object(enum aml_objtype type, union aml_object *orig)
126 union aml_object *ret;
188 aml_free_objectcontent(union aml_object *obj)
212 aml_free_object(union aml_object **obj)
214 union aml_object *body;
226 aml_realloc_object(union aml_object *obj, int size)
230 union aml_object tmp;
259 size * sizeof(union aml_object *));
260 bzero(tmp.package.objects, size * sizeof(union aml_object *));