HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 701 - 725 of 1428) sorted by null

<<21222324252627282930>>

  /external/tensorflow/tensorflow/core/kernels/
gather_nd_op_test.cc 21 #include "tensorflow/core/framework/allocator.h"
78 Tensor expected(allocator(), DT_FLOAT, TensorShape({2}));
  /external/webrtc/talk/app/webrtc/
peerconnectionfactory.h 61 rtc::scoped_ptr<cricket::PortAllocator> allocator,
  /frameworks/base/libs/hwui/
DisplayList.cpp 36 , stdAllocator(allocator)
  /frameworks/native/libs/binder/
MemoryDealer.cpp 183 * they're special as they don't have any record in the allocator
244 const ssize_t offset = allocator()->allocate(size);
253 allocator()->deallocate(offset);
258 allocator()->dump(what);
265 SimpleBestFitAllocator* MemoryDealer::allocator() const { function in class:android::MemoryDealer
  /prebuilts/clang/host/linux-x86/clang-4579689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerDefs.h 115 // We are using a custom allocator to give a different symbol name to STL
118 class fuzzer_allocator: public std::allocator<T> {
  /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerDefs.h 115 // We are using a custom allocator to give a different symbol name to STL
118 class fuzzer_allocator: public std::allocator<T> {
  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerDefs.h 115 // We are using a custom allocator to give a different symbol name to STL
118 class fuzzer_allocator: public std::allocator<T> {
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerDefs.h 115 // We are using a custom allocator to give a different symbol name to STL
118 class fuzzer_allocator: public std::allocator<T> {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/tuple/tuple.tuple/
diagnose_reference_binding.pass.cpp 29 std::allocator<void> alloc;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/
types.pass.cpp 12 // template <class T, class Allocator = allocator<T>>
17 // typedef Allocator allocator_type;
40 static_assert((std::is_same<C::allocator_type, std::allocator<char> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.cons/
input_iterator.pass.cpp 13 // list(InputIterator first, InputIterator last, const Allocator& = Allocator());
37 std::allocator<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.cnstr/
assign_init.pass.cpp 15 // class Alloc = allocator<pair<const Key, T>>>
33 typedef std::allocator<std::pair<const int, std::string> > A;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/
types.pass.cpp 13 // class Alloc = allocator<Value>>
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.set/
types.pass.cpp 13 // class Alloc = allocator<Value>>
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/optional.object.assign/
emplace_initializer_list.pass.cpp 98 opt.emplace({1, 2, 3}, std::allocator<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/optional.object.ctor/
initializer_list.pass.cpp 83 optional<std::vector<int>> opt(in_place, {3, 1}, std::allocator<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.object/optional.object.assign/
emplace_initializer_list.pass.cpp 87 auto &v = opt.emplace({1, 2, 3}, std::allocator<int>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.object/optional.object.ctor/
initializer_list.pass.cpp 83 optional<std::vector<int>> opt(in_place, {3, 1}, std::allocator<int>());
  /system/core/libmemunreachable/tests/
Binder_test.cpp 29 #include "Allocator.h"
154 allocator::vector<uintptr_t> refs{heap};

Completed in 1303 milliseconds

<<21222324252627282930>>