Home | History | Annotate | Download | only in edify

Lines Matching full:malloc

28 //    - return a malloc()'d string
54 Value* v = malloc(sizeof(Value));
71 char** strings = malloc(argc * sizeof(char*));
86 result = malloc(length+1);
152 char* err_src = malloc(len + 20);
330 Expr* e = malloc(sizeof(Expr));
334 e->argv = malloc(count * sizeof(Expr*));
406 char** args = malloc(count * sizeof(char*));
432 Value** args = malloc(count * sizeof(Value*));
459 char** args = (char**)malloc(argc * sizeof(char*));
480 Value** args = (Value**)malloc(argc * sizeof(Value*));
499 char* buffer = malloc(4096);