MEM_malloc        209 compiler/fix_tree.c     new_str = MEM_malloc(sizeof(DVM_Char) * (len + 1));
MEM_malloc         33 compiler/generate.c     exe = MEM_malloc(sizeof(DVM_Executable));
MEM_malloc         79 compiler/generate.c     dest = MEM_malloc(sizeof(DVM_LocalVariable) * param_count);
MEM_malloc         98 compiler/generate.c     dest = MEM_malloc(sizeof(DVM_LocalVariable) * local_variable_count);
MEM_malloc        124 compiler/generate.c     dest->derive = MEM_malloc(sizeof(DVM_TypeDerive) * derive_count);
MEM_malloc        149 compiler/generate.c     dest = MEM_malloc(sizeof(DVM_TypeSpecifier));
MEM_malloc        167 compiler/generate.c     exe->global_variable = MEM_malloc(sizeof(DVM_Variable) * var_count);
MEM_malloc       1224 compiler/generate.c     exe->function = MEM_malloc(sizeof(DVM_Function) * func_count);
MEM_malloc         53 compiler/string.c     new_str = MEM_malloc(sizeof(DVM_Char) * (new_str_len+1));
MEM_malloc        312 compiler/util.c     new_str = MEM_malloc(sizeof(DVM_Char) * (len + 1));
MEM_malloc         20 compiler/wchar.c     ret = MEM_malloc(sizeof(wchar_t) * (len+1));
MEM_malloc         23 debug/debug.c      controller = MEM_malloc(sizeof(struct DBG_Controller_tag));
MEM_malloc         14 dvm/execute.c      dvm = MEM_malloc(sizeof(DVM_VirtualMachine));
MEM_malloc         16 dvm/execute.c      dvm->stack.stack = MEM_malloc(sizeof(DVM_Value) * STACK_ALLOC_SIZE);
MEM_malloc         18 dvm/execute.c  	= MEM_malloc(sizeof(DVM_Boolean) * STACK_ALLOC_SIZE);
MEM_malloc        193 dvm/execute.c  	= MEM_malloc(sizeof(DVM_Value) * exe->global_variable_count);
MEM_malloc        253 dvm/execute.c      result = MEM_malloc(sizeof(DVM_Char) * (result_len + 1));
MEM_malloc         29 dvm/heap.c         ret = MEM_malloc(sizeof(DVM_Object));
MEM_malloc         87 dvm/heap.c         ret->u.array.u.int_array = MEM_malloc(sizeof(int) * size);
MEM_malloc        113 dvm/heap.c         ret->u.array.u.double_array = MEM_malloc(sizeof(double) * size);
MEM_malloc        139 dvm/heap.c         ret->u.array.u.object = MEM_malloc(sizeof(DVM_Object*) * size);
MEM_malloc         28 dvm/wchar.c        ret = MEM_malloc(sizeof(wchar_t) * (len+1));
MEM_malloc         34 memory/main.c      p1 = MEM_malloc(10);
MEM_malloc         41 memory/main.c      p2 = MEM_malloc(10);
MEM_malloc        115 share/wchar.c      ret = MEM_malloc(len + 1);
MEM_malloc        144 share/wchar.c      tmp = MEM_malloc(mb_len + 1);