Searched refs:TREALLOC (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/byacc/ |
H A D | reader.c | 148 cache = TREALLOC(char, cache, cache_size); in cachec() 267 input_file_name = TREALLOC(char, input_file_name, input_file_name_len); in line_directive() 382 line = TREALLOC(char, line, linesize); in get_line() 1320 tmp = TREALLOC(char, buf, buf_size); in copy_param() 1684 ? TREALLOC(char *, tag_table, tagmax) in cache_tag() 2189 pitem = TREALLOC(bucket *, pitem, maxitems); in expand_items() 2198 plhs = TREALLOC(bucket *, plhs, maxrules); in expand_rules() 2201 rprec = TREALLOC(Value_t, rprec, maxrules); in expand_rules() 2204 rassoc = TREALLOC(Assoc_t, rassoc, maxrules); in expand_rules() 3962 rprec = TREALLOC(Value_t, rprec, nrules); in pack_grammar() [all …]
|
H A D | defs.h | 187 #define TREALLOC(t,p,n) ((t*)realloc((char*)(p), (size_t)(n) * sizeof(t))) macro
|
H A D | output.c | 874 table = TREALLOC(Value_t, table, newmax); in pack_vector() 877 check = TREALLOC(Value_t, check, newmax); in pack_vector()
|
H A D | CHANGES | 4543 use TMALLOC() and TREALLOC() macros to simplify allocation/reallocation 4551 Also define new TMALLOC and TREALLOC macros to simplify/replace MALLOC and 4555 use TMALLOC() and TREALLOC() macros to simplify allocation/reallocation 4561 use TMALLOC() and TREALLOC() macros to simplify allocation/reallocation
|