Searched refs:alloc (Results 1 - 25 of 431) sorted by relevance

1234567891011>>

/haiku-buildtools/binutils/gas/testsuite/gas/ia64/
H A Dalloc.s1 // Make sure error messages on 'alloc' don't needlessly refer to operand 1
6 alloc: label
7 alloc r2 = ar.pfs, x, 0, 0, 0
8 alloc r2 = ar.pfs, 0, x, 0, 0
9 alloc r2 = ar.pfs, 0, 0, x, 0
10 alloc r2 = ar.pfs, 0, 0, 0, x
11 alloc r3 = x, 0, 0, 0
12 alloc r3 = 0, x, 0, 0
13 alloc r3 = 0, 0, x, 0
14 alloc r
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/ia64/
H A Dalloc.s1 // Make sure error messages on 'alloc' don't needlessly refer to operand 1
6 alloc: label
7 alloc r2 = ar.pfs, x, 0, 0, 0
8 alloc r2 = ar.pfs, 0, x, 0, 0
9 alloc r2 = ar.pfs, 0, 0, x, 0
10 alloc r2 = ar.pfs, 0, 0, 0, x
11 alloc r3 = x, 0, 0, 0
12 alloc r3 = 0, x, 0, 0
13 alloc r3 = 0, 0, x, 0
14 alloc r
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tm/
H A Dpr51516.C11 C* alloc; local
13 alloc = new C;
15 alloc->l = 2;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dhash1.c5 #define FIXUP .section ".fixup",#alloc,#execinstr
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/s390/
H A D20050409-1.c8 extern void **alloc (void);
12 void **p = alloc ();
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dpointer_check_5.f9053 function getPtr(alloc)
55 logical, intent(in) :: alloc local in function:getPtr
56 if (alloc) then
63 function getPtrArray(alloc)
65 logical, intent(in) :: alloc local in function:getPtrArray
66 if (alloc) then
73 function getAlloc(alloc)
75 logical, intent(in) :: alloc local in function:getAlloc
76 if (alloc) then
86 function getProcPtr(alloc)
[all...]
H A Dclass_optional_1.f9022 call suba(alloc=.false., prsnt=.false.)
23 call suba(xa, alloc=.false., prsnt=.true.)
28 call suba(xa, alloc=.true., prsnt=.true.)
31 call suba2(alloc=.false., prsnt=.false.)
32 call suba2(xa2, alloc=.false., prsnt=.true.)
38 call suba2(xa2, alloc=.true., prsnt=.true.)
41 call subp(alloc=.false., prsnt=.false.)
42 call subp(xp, alloc=.false., prsnt=.true.)
47 call subp(xp, alloc=.true., prsnt=.true.)
50 call subp2(alloc
[all...]
H A Dallocatable_scalar_5.f9031 function func (alloc)
33 logical :: alloc local in function:func
35 if (alloc) then
41 subroutine intout (dum, alloc)
44 logical :: alloc local in subroutine:intout
46 if (alloc) then
H A Dchar_array_structure_constructor.f9021 call alloc (2)
26 SUBROUTINE alloc (n) subroutine in program:char_array_structure_constructor
32 end subroutine alloc
/haiku-buildtools/legacy/gcc/libstdc++/
H A Dstlinst.cc4 #include <alloc.h>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/shared_ptr/creation/
H A Dno_rtti.cc32 __gnu_test::CustomPointerAlloc<int> alloc; variable
34 auto p = std::allocate_shared<X>(alloc);
H A Dalloc_min.cc32 __gnu_test::SimpleAllocator<X> alloc; variable
33 auto p = std::allocate_shared<X>(alloc);
/haiku-buildtools/gcc/gcc/testsuite/objc/execute/
H A Dcompatibility_alias.m8 MyObject *object = [MyObject alloc];
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/shared_ptr/cons/
H A Dalloc_min.cc32 __gnu_test::SimpleAllocator<X> alloc; variable
34 std::shared_ptr<X> p(new X, deleter, alloc);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/30_threads/promise/cons/
H A Dalloc.cc35 __gnu_test::uneq_allocator<char> alloc(99);
36 promise<int> p1(allocator_arg, alloc);
43 __gnu_test::CustomPointerAlloc<int> alloc; local
44 promise<int> p1(allocator_arg, alloc);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/allocator/
H A D8230.cc32 std::allocator<int> alloc; local
33 const std::allocator<int>::size_type n = alloc.max_size();
34 int* p = alloc.allocate(n + 1);
/haiku-buildtools/gcc/gmp/scanf/
H A Dvsscanf.c43 char *alloc; local
46 alloc = (char *) (*__gmp_allocate_func) (size);
47 memcpy (alloc, s, size);
48 s = alloc;
50 (*__gmp_free_func) (alloc, size);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dtemplate9.C10 inline T* alloc(const int aWidth) function in namespace:vector
22 T** alloc(const int aWidth,const int aHeight) function in namespace:matrix
25 T **mat = vector::alloc<T*>(aHeight);
26 T *data = vector::alloc<T> (aWidth*aHeight);
39 double **m=matrix::alloc<double>(10,20);
/haiku-buildtools/legacy/binutils/binutils/
H A Dbudemang.c41 char *res, *alloc; local
57 alloc = NULL;
61 alloc = xmalloc (suf - name + 1);
62 memcpy (alloc, name, suf - name);
63 alloc[suf - name] = '\0';
64 name = alloc;
77 if (alloc != NULL)
78 free (alloc);
96 if (alloc != NULL)
97 free (alloc);
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/
H A D56613.cc30 struct alloc struct
42 typedef alloc<U> other;
45 alloc() { } function in struct:alloc
47 alloc(const alloc<U>&) { } argument
64 bool operator==(alloc<T>, alloc<U>) { return true; }
67 bool operator!=(alloc<T>, alloc<U>) { return false; }
71 std::map<int, int, std::less<int>, alloc<in
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/capacity/
H A Dshrink_to_fit2.cc31 alloc_type alloc(5);
33 std::vector<int, alloc_type> v(10u, 1, alloc);
38 VERIFY( v.get_allocator().get_personality() == alloc.get_personality() );
46 alloc_type alloc(5);
48 std::vector<int, alloc_type> v(10u, 1, alloc);
53 VERIFY( v.get_allocator().get_personality() == alloc.get_personality() );
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Ddeque.h31 #include <alloc.h>
H A Dlist.h31 #include <alloc.h>
H A Dslist.h19 #include <alloc.h>
H A Dtree.h36 #include <alloc.h>

Completed in 240 milliseconds

1234567891011>>