Home | History | Annotate | Download | only in c-family

Lines Matching defs:buffer_len

55 /* Given a cpp MACRO, compute the max length BUFFER_LEN of the macro, as well
60 macro_length (const cpp_macro *macro, int *supported, int *buffer_len,
67 *buffer_len = 0;
97 (*buffer_len)++;
106 *buffer_len +=
110 *buffer_len += (cpp_token_len (token) + 1) * 8;
113 (*buffer_len)++;
242 int supported = 1, prev_is_one = 0, buffer_len, param_len;
247 macro_length (macro, &supported, &buffer_len, &param_len);
248 s = buffer = XALLOCAVEC (unsigned char, buffer_len);