Searched refs:a_buff (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/gcclibs/libcpp/ |
| H A D | macro.c | 1300 if (BUFF_ROOM (pfile->a_buff) in _cpp_save_parameter() 1302 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *)); in _cpp_save_parameter() 1304 ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node; in _cpp_save_parameter() 1407 if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token)) in alloc_expansion_token() 1408 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token)); in alloc_expansion_token() 1410 return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++]; in alloc_expansion_token() 1452 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff); in create_iso_definition() 1467 BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->params[macro->paramc]; in create_iso_definition() 1560 macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff); in create_iso_definition() 1580 BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->exp.tokens[macro->count]; in create_iso_definition()
|
| H A D | traditional.c | 948 if (macro->count + blen > BUFF_ROOM (pfile->a_buff)) in save_replacement_text() 949 _cpp_extend_buff (pfile, &pfile->a_buff, macro->count + blen); in save_replacement_text() 951 exp = BUFF_FRONT (pfile->a_buff); in save_replacement_text() 968 BUFF_FRONT (pfile->a_buff) += macro->count; in save_replacement_text() 994 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff); in _cpp_create_trad_definition() 1002 BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->params[macro->paramc]; in _cpp_create_trad_definition()
|
| H A D | init.c | 214 pfile->a_buff = _cpp_get_buff (pfile, 0); in cpp_create_reader() 263 _cpp_free_buff (pfile->a_buff); in cpp_destroy()
|
| H A D | directives.c | 1860 if (BUFF_ROOM (pfile->a_buff) < room_needed) in parse_answer() 1861 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (struct answer)); in parse_answer() 1863 dest = &((struct answer *) BUFF_FRONT (pfile->a_buff))->first[acount]; in parse_answer() 1877 answer = (struct answer *) BUFF_FRONT (pfile->a_buff); in parse_answer() 2006 BUFF_FRONT (pfile->a_buff) += answer_size; in do_assert()
|
| H A D | internal.h | 333 _cpp_buff *a_buff; /* Aligned permanent storage. */ member
|
| H A D | lex.c | 1697 _cpp_buff *buff = pfile->a_buff; in _cpp_aligned_alloc() 1703 buff->next = pfile->a_buff; in _cpp_aligned_alloc() 1704 pfile->a_buff = buff; in _cpp_aligned_alloc()
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | ChangeLog-2001 | 9685 (struct cpp_reader): Remove macro_pool, add a_buff. 9686 * cppinit.c (cpp_create_reader): Initialize a_buff, instead of 9688 (cpp_destroy): Free a_buff instead of macro_pool.
|