| /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;
|
| collect2.h | 31 extern struct obstack temporary_obstack;
|
| lto-opts.cc | 39 append_to_collect_gcc_options (struct obstack *ob, 63 struct obstack temporary_obstack;
|
| /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;
|
| collect2.h | 31 extern struct obstack temporary_obstack;
|
| lto-opts.cc | 39 append_to_collect_gcc_options (struct obstack *ob, 63 struct obstack temporary_obstack;
|
| /src/external/gpl2/grep/dist/lib/ |
| obstack.c | 1 /* $NetBSD: obstack.c,v 1.3 2018/06/14 10:14:39 kamil Exp $ */ 3 /* obstack.c - subroutines used implicitly by object stack macros 28 #include "obstack.h" 31 incremented whenever callers compiled using an old obstack.h can no 32 longer properly call the functions in this obstack.c. */ 103 /* The non-GNU-C macros copy the obstack into this global variable 106 struct obstack *_obstack; 144 /* Initialize an obstack H for use. Specify chunk size SIZE (0 means default). 154 struct obstack *h; 212 struct obstack *h [all...] |
| 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/gdb/dist/gdb/ |
| namespace.h | 127 struct obstack *obstack);
|
| dictionary.h | 36 struct obstack; 45 OBSTACK; the environment is initialized from SYMBOL_LIST. */ 48 mdict_create_hashed (struct obstack *obstack, 61 OBSTACK; the environment is initialized from the SYMBOL_LIST. The 66 mdict_create_linear (struct obstack *obstack, 81 /* Free the memory used by a multidictionary that's not on an obstack. (If
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| namespace.h | 128 struct obstack *obstack);
|
| dictionary.h | 36 struct obstack; 45 OBSTACK; the environment is initialized from SYMBOL_LIST. */ 48 mdict_create_hashed (struct obstack *obstack, 61 OBSTACK; the environment is initialized from the SYMBOL_LIST. The 66 mdict_create_linear (struct obstack *obstack, 81 /* Free the memory used by a multidictionary that's not on an obstack. (If
|
| /src/external/lgpl3/gmp/dist/printf/ |
| obvprintf.c | 1 /* gmp_obstack_vprintf -- formatted output to an obstack. 36 #include <obstack.h> 43 gmp_obstack_vprintf (struct obstack *ob, const char *fmt, va_list ap)
|
| obprntffuns.c | 45 #include <obstack.h> 51 gmp_obstack_memory (struct obstack *ob, const char *ptr, size_t len) 58 gmp_obstack_reps (struct obstack *ob, int c, int reps)
|
| obprintf.c | 1 /* gmp_obstack_printf -- formatted output to an obstack. 36 #include <obstack.h> 43 gmp_obstack_printf (struct obstack *ob, const char *fmt, ...)
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| gdb_obstack.h | 0 /* Obstack wrapper for GDB. 23 #include "obstack.h" 25 /* Utility macros - wrap obstack alloc into something more robust. */ 29 obstack_zalloc (struct obstack *ob) 36 #define OBSTACK_ZALLOC(OBSTACK,TYPE) obstack_zalloc<TYPE> ((OBSTACK)) 40 obstack_calloc (struct obstack *ob, size_t number) 48 #define OBSTACK_CALLOC(OBSTACK,NUMBER,TYPE) \ 49 obstack_calloc<TYPE> ((OBSTACK), (NUMBER)) 55 obstack_new (struct obstack *ob, Args&&... args [all...] |
| gdb_obstack.cc | 0 /* Obstack wrapper for GDB. 28 obconcat (struct obstack *obstackp, ...)
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| gdb_obstack.h | 0 /* Obstack wrapper for GDB. 23 #include "obstack.h" 25 /* Utility macros - wrap obstack alloc into something more robust. */ 29 obstack_zalloc (struct obstack *ob) 36 #define OBSTACK_ZALLOC(OBSTACK,TYPE) obstack_zalloc<TYPE> ((OBSTACK)) 40 obstack_calloc (struct obstack *ob, size_t number) 48 #define OBSTACK_CALLOC(OBSTACK,NUMBER,TYPE) \ 49 obstack_calloc<TYPE> ((OBSTACK), (NUMBER)) 55 obstack_new (struct obstack *ob, Args&&... args [all...] |
| gdb-hashtab.cc | 22 obstack. The obstack is passed as DATA. */ 28 void *ptr = obstack_alloc ((struct obstack *) data, total); 36 obstack. DATA will be the obstack, although it is not needed
|
| gdb_obstack.cc | 0 /* Obstack wrapper for GDB. 28 obconcat (struct obstack *obstackp, ...)
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| parent-map.h | 99 addrmap_fixed *to_fixed (struct obstack *obstack) const 101 return new (obstack) addrmap_fixed (obstack, &m_map);
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| parent-map.h | 78 addrmap_fixed *to_fixed (struct obstack *obstack) const 80 return new (obstack) addrmap_fixed (obstack, &m_map);
|
| /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/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...] |