HomeSort by relevance Sort by last modified time
    Searched defs:Alloc (Results 1 - 25 of 305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug028.go 10 func Alloc(i int) int {
23 s := Alloc(7);
  /prebuilts/go/linux-x86/test/fixedbugs/
bug028.go 10 func Alloc(i int) int {
23 s := Alloc(7);
  /external/clang/test/CXX/temp/temp.decls/temp.alias/
p2.cpp 18 template<class T> struct Alloc {};
19 template<class T> using Vec = vector<T, Alloc<T>>;
27 void process(vector<T, Alloc<T>>& w) // expected-error {{redefinition of 'process'}}
34 void g(TT<int, Alloc<int>>);
42 // v's type is same as vector<int, Alloc<int>>.
43 using VTest = vector<int, Alloc<int>>;
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
allocate.pass.cpp 12 // template <class Alloc>
45 typedef A<VT> Alloc;
46 Alloc a;
47 assert(std::allocator_traits<Alloc >::allocate(a, 10) == reinterpret_cast<VT*>(static_cast<std::uintptr_t>(0xDEADBEEF)));
  /external/llvm/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 31 typedef GCFactory<Input, 0> Alloc;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
StringSaver.h 22 BumpPtrAllocator &Alloc;
25 StringSaver(BumpPtrAllocator &Alloc) : Alloc(Alloc) {}
  /art/runtime/
linear_alloc.cc 23 LinearAlloc::LinearAlloc(ArenaPool* pool) : lock_("linear alloc"), allocator_(pool) {
31 void* LinearAlloc::Alloc(Thread* self, size_t size) {
33 return allocator_.Alloc(size);
  /external/libcxx/test/std/containers/associative/
iterator_types.pass.cpp 62 typedef test_allocator<ValueTp> Alloc;
63 typedef std::map<int, int, std::less<int>, Alloc> Map;
69 typedef min_allocator<ValueTp> Alloc;
70 typedef std::map<int, int, std::less<int>, Alloc> Map;
81 typedef test_allocator<ValueTp> Alloc;
82 typedef std::multimap<int, int, std::less<int>, Alloc> Map;
88 typedef min_allocator<ValueTp> Alloc;
89 typedef std::multimap<int, int, std::less<int>, Alloc> Map;
100 typedef test_allocator<ValueTp> Alloc;
101 typedef std::set<ValueTp, std::less<ValueTp>, Alloc> Set
    [all...]
  /external/libcxx/test/std/containers/unord/
iterator_difference_type.pass.cpp 85 typedef test_allocator<ValueTp> Alloc;
86 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
92 typedef min_allocator<ValueTp> Alloc;
93 typedef std::unordered_map<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
104 typedef test_allocator<ValueTp> Alloc;
105 typedef std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
111 typedef min_allocator<ValueTp> Alloc;
112 typedef std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>, Alloc> Map;
123 typedef test_allocator<ValueTp> Alloc;
124 typedef std::unordered_set<ValueTp, std::hash<ValueTp>, std::equal_to<ValueTp>, Alloc> Set
    [all...]
  /external/libcxx/test/std/containers/unord/unord.map/
swap_member.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
34 typedef test_allocator<std::pair<const int, std::string> > Alloc;
35 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
37 C c2(0, Hash(2), Compare(2), Alloc(1, 2));
62 typedef test_allocator<std::pair<const int, std::string> > Alloc;
63 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
76 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
77 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(1, 2));
110 typedef test_allocator<std::pair<const int, std::string> > Alloc;
    [all...]

Completed in 917 milliseconds

1 2 3 4 5 6 7 8 91011>>