HomeSort by: relevance | last modified time | path
    Searched defs:obstack (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc.old/dist/gcc/
obstack-utils.h 0 // Obstack-related utilities.
23 // This RAII class automatically frees memory allocated on an obstack,
25 // obstack, so it can (optionally) be used in place of the obstack
71 obstack_watermark (obstack *ob) : m_obstack (ob) { keep (); }
75 operator obstack *() const { return m_obstack; }
82 obstack *m_obstack;
genflags.cc 28 #include "obstack.h"
33 /* Obstack to remember insns with. */
34 static struct obstack obstack; variable in typeref:struct:obstack
197 obstack_grow (&obstack, &insn, sizeof (rtx));
208 obstack_init (&obstack);
239 obstack_grow (&obstack, &dummy, sizeof (rtx));
240 insns = XOBFINISH (&obstack, rtx *);
  /src/external/gpl3/gcc/dist/gcc/
obstack-utils.h 0 // Obstack-related utilities.
23 // This RAII class automatically frees memory allocated on an obstack,
25 // obstack, so it can (optionally) be used in place of the obstack
71 obstack_watermark (obstack *ob) : m_obstack (ob) { keep (); }
75 operator obstack *() const { return m_obstack; }
82 obstack *m_obstack;
genflags.cc 28 #include "obstack.h"
33 /* Obstack to remember insns with. */
34 static struct obstack obstack; variable in typeref:struct:obstack
197 obstack_grow (&obstack, &insn, sizeof (rtx));
208 obstack_init (&obstack);
239 obstack_grow (&obstack, &dummy, sizeof (rtx));
240 insns = XOBFINISH (&obstack, rtx *);
  /src/external/gpl3/gdb/dist/gdb/
cp-support.h 64 auto_obstack obstack; member in struct:demangle_parse_info
user-regs.c 70 register list stored in the common heap or a specific obstack. */
107 struct obstack *obstack = gdbarch_obstack (gdbarch); local
113 OBSTACK_ZALLOC (obstack, struct user_reg));
frame-unwind.c 54 add_unwinder (struct obstack *obstack, const struct frame_unwind *unwinder,
57 *link = OBSTACK_ZALLOC (obstack, struct frame_unwind_table_entry);
75 struct obstack *obstack = gdbarch_obstack (gdbarch); local
76 link = add_unwinder (obstack, &dummy_frame_unwind, link);
84 link = add_unwinder (obstack, &dwarf2_tailcall_frame_unwind, link);
85 link = add_unwinder (obstack, &inline_frame_unwind, link);
psymtab.h 51 either in the psymtab_storage object (either on its obstack or in
85 /* Return the obstack that is used for storage by this object. */
87 struct obstack *obstack () function in class:psymtab_storage
99 return OBSTACK_CALLOC (obstack (), number, struct partial_symtab *);
131 /* The obstack where allocations are made. This is lazily allocated
  /src/external/gpl3/gdb.old/dist/gdb/
cp-support.h 65 auto_obstack obstack; member in struct:demangle_parse_info
user-regs.c 70 register list stored in the common heap or a specific obstack. */
107 struct obstack *obstack = gdbarch_obstack (gdbarch); local
113 OBSTACK_ZALLOC (obstack, struct user_reg));
frame-unwind.c 54 add_unwinder (struct obstack *obstack, const struct frame_unwind *unwinder,
57 *link = OBSTACK_ZALLOC (obstack, struct frame_unwind_table_entry);
75 struct obstack *obstack = gdbarch_obstack (gdbarch); local
76 link = add_unwinder (obstack, &dummy_frame_unwind, link);
84 link = add_unwinder (obstack, &dwarf2_tailcall_frame_unwind, link);
85 link = add_unwinder (obstack, &inline_frame_unwind, link);
psymtab.h 51 either in the psymtab_storage object (either on its obstack or in
85 /* Return the obstack that is used for storage by this object. */
87 struct obstack *obstack () function in class:psymtab_storage
99 return OBSTACK_CALLOC (obstack (), number, struct partial_symtab *);
131 /* The obstack where allocations are made. This is lazily allocated
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
abbrev.c 82 struct obstack *obstack = &abbrev_table->m_abbrev_obstack; local
99 obstack_blank (obstack, offsetof (abbrev_info, attrs));
100 cur_abbrev = (struct abbrev_info *) obstack_base (obstack);
218 obstack_grow (obstack, &cur_attr, sizeof (cur_attr));
221 cur_abbrev = (struct abbrev_info *) obstack_finish (obstack);
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
abbrev.c 128 struct obstack *obstack = &abbrev_table->m_abbrev_obstack; local
145 obstack_blank (obstack, offsetof (abbrev_info, attrs));
146 cur_abbrev = (struct abbrev_info *) obstack_base (obstack);
264 obstack_grow (obstack, &cur_attr, sizeof (cur_attr));
267 cur_abbrev = (struct abbrev_info *) obstack_finish (obstack);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
obstack.h 0 /* obstack.h - object stack macros
38 them before using any obstack macros.
40 Each independent stack is represented by a `struct obstack'.
41 Each of the obstack macros expects a pointer to such a structure
58 With obstacks, you can work differently. Use one obstack for all symbol
59 names. As you read a symbol, grow the name in the obstack gradually.
94 Exactly one object is growing in an obstack at any one time.
95 You can run one obstack per control block.
97 Because of the way we do it, you can `unwind' an obstack
151 struct obstack /* control current object in current chunk *
150 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
obstack.h 0 /* obstack.h - object stack macros
38 them before using any obstack macros.
40 Each independent stack is represented by a `struct obstack'.
41 Each of the obstack macros expects a pointer to such a structure
58 With obstacks, you can work differently. Use one obstack for all symbol
59 names. As you read a symbol, grow the name in the obstack gradually.
94 Exactly one object is growing in an obstack at any one time.
95 You can run one obstack per control block.
97 Because of the way we do it, you can `unwind' an obstack
151 struct obstack /* control current object in current chunk *
150 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl2/grep/dist/lib/
obstack.h 1 /* $NetBSD: obstack.h,v 1.1.1.1 2016/01/10 21:36:18 christos Exp $ */
3 /* obstack.h - object stack macros
42 them before using any obstack macros.
44 Each independent stack is represented by a `struct obstack'.
45 Each of the obstack macros expects a pointer to such a structure
62 With obstacks, you can work differently. Use one obstack for all symbol
63 names. As you read a symbol, grow the name in the obstack gradually.
98 Exactly one object is growing in an obstack at any one time.
99 You can run one obstack per control block.
101 Because of the way we do it, you can `unwind' an obstack
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/binutils/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/binutils.old/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/gcc.old/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/gcc/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/gdb/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl3/gdb.old/dist/include/
obstack.h 0 /* obstack.h - object stack macros
37 them before using any obstack macros.
39 Each independent stack is represented by a 'struct obstack'.
40 Each of the obstack macros expects a pointer to such a structure
57 With obstacks, you can work differently. Use one obstack for all symbol
58 names. As you read a symbol, grow the name in the obstack gradually.
93 Exactly one object is growing in an obstack at any one time.
94 You can run one obstack per control block.
96 Because of the way we do it, you can "unwind" an obstack
115 /* For binary compatibility with obstack version 1, which used "int
163 struct obstack \/* control current object in current chunk *\/ struct
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
kwset.c 37 #include "obstack.h"
77 struct obstack obstack; /* Obstack for node allocation. */ member in struct:kwset
100 obstack_init(&kwset->obstack);
103 = (struct trie *) obstack_alloc(&kwset->obstack, sizeof (struct trie));
170 link = (struct tree *) obstack_alloc(&kwset->obstack,
176 link->trie = (struct trie *) obstack_alloc(&kwset->obstack,
403 kwset->target = obstack_alloc(&kwset->obstack, kwset->mind);
769 obstack_free(&kwset->obstack, 0)
    [all...]
  /src/external/gpl2/grep/dist/src/
kwset.c 39 #include "obstack.h"
77 struct obstack obstack; /* Obstack for node allocation. */ member in struct:kwset
100 obstack_init(&kwset->obstack);
103 = (struct trie *) obstack_alloc(&kwset->obstack, sizeof (struct trie));
170 link = (struct tree *) obstack_alloc(&kwset->obstack,
176 link->trie = (struct trie *) obstack_alloc(&kwset->obstack,
403 kwset->target = obstack_alloc(&kwset->obstack, kwset->mind);
771 obstack_free(&kwset->obstack, 0)
    [all...]

Completed in 63 milliseconds

1 2 3