Searched refs:storage (Results 1 - 25 of 51) sorted by relevance

123

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr45709-2.C4 int storage[4]; member in struct:Region
10 int* storage = reg.storage; local
11 int* storage2 = reg.storage;
13 storage++, storage2--;
14 reg.count = storage - reg.storage + storage2 - reg.storage;
H A Dpr45709.C4 int storage[4]; member in struct:Region
10 int* storage = reg.storage; local
12 storage++;
13 reg.count = storage - reg.storage;
H A Dpr45580.C47 void* storage = &cell; local
48 JSCell* jsByteArray = new (storage) JSByteArray(JSByteArray::VPtrStealingHack);
H A Dpr68220.C105 template <typename T> T &cast_storage(void *storage) { argument
106 return *static_cast<T *>(storage);
113 void visitation_impl_invoke_impl(int, Visitor visitor, VoidPtrCV storage, T *) { argument
114 visitor.internal_visit(cast_storage<T>(storage), 1);
119 void visitation_impl_invoke(Visitor visitor, VoidPtrCV storage, T t, argument
122 storage, t);
126 void visitation_impl(int, Visitor visitor, VoidPtrCV storage, int, argument
130 visitation_impl_invoke(visitor, storage,
212 VoidPtrCV storage) {
213 visitation_impl(internal_which, visitor, storage, in
211 internal_apply_visitor_impl(int internal_which, int, Visitor visitor, VoidPtrCV storage) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Doffsetof2.C6 char storage[1]; member in struct:choke_me
11 static const int offset = offsetof(choke_me, storage);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dnew1.C10 void * operator new ( size_t , void * storage );
14 int storage[ 5 ]; member in class:foo
17 bar *s = new ( ( void * ) & storage ) bar;
H A Daddr-const1.C18 static double storage; member in struct:foo
25 if (foo::b != &foo::storage)
33 double *foo::b = &(((bar *)(&foo::storage))->p);
34 double foo::storage = 0.0; member in class:foo
H A Dnew2.C8 void * operator new ( __SIZE_TYPE__ , void * storage )
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr27571.c8 void r7todouble(int *storage, int *count) { argument
13 cc = *storage;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dret_pointer_2.f904 integer, target :: storage(5) variable in program:a
23 t => storage(1:n)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/shared_ptr/cons/
H A D58659.cc45 return static_cast<value_type*>((void*)(storage));
50 VERIFY(n == 1 && p == (void*)storage && allocated);
62 static char storage[sizeof(spcd)]; member in struct:std::allocator
66 char allocator<spcd>::storage[]; member in class:std::allocator
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash29.C29 static int storage[]; member in class:TypeIDInit
43 info.initialize(storage);
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dfini.c64 static char storage[32]; variable
323 fscanf (in, "%s %s %s %s %s %d %d", prefix, postfix, storage, type, routine,
326 if (storage[0] == '\0')
327 storage[1] = '\0';
331 if (storage[2] == '\0')
332 storage[1] = '\0';
334 storage[strlen (storage) - 1] = ' ';
343 for (i = 1; storage[i] != '\0'; ++i)
344 storage[
[all...]
H A Dsymbol.c239 s->storage = NULL;
1171 if (s->storage != NULL)
1174 ffestorag_dump (s->storage);
1409 /* Update INIT info to TRUE and all equiv/storage too.
1430 if ((s->storage != NULL)
1431 && !ffestorag_is_init (s->storage))
1432 ffestorag_update_init (s->storage);
1445 /* Update SAVE info to TRUE and all equiv/storage too.
1466 if ((s->storage != NULL)
1467 && !ffestorag_is_save (s->storage))
[all...]
H A Dsymbol.h122 ffestorag storage; /* Where am I in relation to my outside member in struct:_ffesymbol_
265 #define ffesymbol_set_storage(s,st) ((s)->storage = (st))
276 #define ffesymbol_storage(s) ((s)->storage)
/haiku-buildtools/binutils/binutils/
H A Daddr2line.c111 long storage;
118 storage = bfd_get_symtab_upper_bound (abfd);
119 if (storage == 0)
121 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
124 if (storage < 0)
127 syms = (asymbol **) xmalloc (storage);
139 && (storage = bfd_get_dynamic_symtab_upper_bound (abfd)) > 0)
142 syms = xmalloc (storage);
109 long storage; local
H A Dsize.c268 long storage, symcount;
274 storage = bfd_get_symtab_upper_bound (abfd);
275 if (storage < 0)
277 if (storage)
278 syms = (asymbol **) xmalloc (storage);
265 long storage, symcount; local
H A Dcoffgrok.c880 long storage; local
890 storage = bfd_get_symtab_upper_bound (abfd);
892 if (storage < 0)
895 syms = (asymbol **) xmalloc (storage);
/haiku-buildtools/gcc/gcc/
H A Dwide-int.h25 are designed to be transient - they are not for long term storage
27 other longer storage GCC representations (rtl and tree).
573 /* Provide enough trappings for this class to act as storage for
606 /* This class defines an integer type using the storage provided by the
607 template argument. The storage class must provide the following
621 Although not required by generic_wide_int itself, writable storage
629 template <typename storage>
630 class GTY(()) generic_wide_int : public storage
709 = wi::int_traits <generic_wide_int <storage> >::is_sign_extended;
712 template <typename storage>
[all...]
/haiku-buildtools/legacy/binutils/bfd/
H A Dsyms.c64 allocating storage, and the actual reading process. This is an
91 All storage for the symbols themselves is in an objalloc
777 long storage; local
782 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
784 storage = bfd_get_symtab_upper_bound (abfd);
785 if (storage < 0)
787 if (storage == 0)
790 syms = bfd_malloc (storage);
1382 string is in our own local storage anyhow. */
H A Delf64-sparc.c240 elf64_sparc_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, argument
266 *storage++ = p++;
271 *storage = NULL;
/haiku-buildtools/binutils/bfd/
H A Dsyms.c63 allocating storage, and the actual reading process. This is an
90 All storage for the symbols themselves is in an objalloc
801 long storage; local
806 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
808 storage = bfd_get_symtab_upper_bound (abfd);
809 if (storage < 0)
811 if (storage == 0)
814 syms = (asymbol **) bfd_malloc (storage);
1420 string is in our own local storage anyhow. */
/haiku-buildtools/legacy/binutils/binutils/
H A Dcoffgrok.c723 long storage; local
726 storage = bfd_get_symtab_upper_bound (abfd);
728 if (storage < 0)
731 syms = (asymbol **) xmalloc (storage);
H A Dobjdump.c411 long storage;
419 storage = bfd_get_symtab_upper_bound (abfd);
420 if (storage < 0)
422 if (storage)
423 sy = xmalloc (storage);
437 long storage;
439 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
440 if (storage < 0)
451 if (storage)
452 sy = xmalloc (storage);
407 long storage; local
433 long storage; local
[all...]
/haiku-buildtools/gcc/gcc/ada/gcc-interface/
H A Dutils2.c2116 /* A storage pool's underlying type is a record type (for both predefined
2117 storage pools and GNAT simple storage pools). The secondary stack uses
2134 /* The first arg is always the address of the storage pool; next
2282 GNAT_PROC, if present, is a procedure to call and GNAT_POOL is the storage
2322 the storage pool to use. GNAT_NODE is used to provide an error
2332 tree size, storage, storage_deref, storage_init;
2366 storage = build_call_alloc_dealloc (NULL_TREE, size, storage_type,
2368 storage = convert (storage_ptr_type, gnat_protect_expr (storage));
2317 tree size, storage, storage_deref, storage_init; local
[all...]

Completed in 241 milliseconds

123