/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/ |
b2CircleShape.cpp | 23 b2Shape* b2CircleShape::Clone(b2BlockAllocator* allocator) const 25 void* mem = allocator->Allocate(sizeof(b2CircleShape));
|
b2EdgeShape.cpp | 31 b2Shape* b2EdgeShape::Clone(b2BlockAllocator* allocator) const 33 void* mem = allocator->Allocate(sizeof(b2EdgeShape));
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Joints/ |
b2Joint.h | 158 static b2Joint* Create(const b2JointDef* def, b2BlockAllocator* allocator); 159 static void Destroy(b2Joint* joint, b2BlockAllocator* allocator);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/ |
ClassicalShadowSystem.java | 54 public ClassicalShadowSystem (NearFarAnalyzer nearFarAnalyzer, ShadowMapAllocator allocator, 56 super(nearFarAnalyzer, allocator, directionalAnalyzer, lightFilter);
|
/external/opencv3/modules/core/include/opencv2/core/ |
cuda.hpp | 99 class CV_EXPORTS Allocator 102 virtual ~Allocator() {} 104 // allocator must fill data, step and refcount fields 109 //! default allocator 110 static Allocator* defaultAllocator(); 111 static void setDefaultAllocator(Allocator* allocator); 114 explicit GpuMat(Allocator* allocator = defaultAllocator()); 117 GpuMat(int rows, int cols, int type, Allocator* allocator = defaultAllocator()) 303 Allocator* allocator; member in class:cv::cuda::GpuMat [all...] |
cuda.inl.hpp | 58 GpuMat::GpuMat(Allocator* allocator_) 59 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_) 63 GpuMat::GpuMat(int rows_, int cols_, int type_, Allocator* allocator_) 64 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_) 71 GpuMat::GpuMat(Size size_, int type_, Allocator* allocator_) 72 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_) 79 GpuMat::GpuMat(int rows_, int cols_, int type_, Scalar s_, Allocator* allocator_) 80 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_) 90 GpuMat::GpuMat(Size size_, int type_, Scalar s_, Allocator* allocator_) 91 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_ [all...] |
/external/skia/include/core/ |
SkImageGenerator.h | 230 bool tryGenerateBitmap(SkBitmap* bm, const SkImageInfo& info, SkBitmap::Allocator* allocator) { 231 return this->tryGenerateBitmap(bm, &info, allocator); 266 bool tryGenerateBitmap(SkBitmap* bm, const SkImageInfo* optionalInfo, SkBitmap::Allocator*);
|
/external/v8/test/cctest/ |
test-bit-vector.cc | 38 v8::base::AccountingAllocator allocator; local 39 Zone zone(&allocator);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 40 template <class T, class Allocator> 44 typedef std::vector<T, Allocator> C; 47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), ""); 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/ |
types.pass.cpp | 15 // class Allocator = allocator<charT> > 21 // typedef Allocator allocator_type; 22 // typedef typename Allocator::size_type size_type; 23 // typedef typename Allocator::difference_type difference_type; 24 // typedef typename Allocator::reference reference; 25 // typedef typename Allocator::const_reference const_reference; 26 // typedef typename Allocator::pointer pointer; 27 // typedef typename Allocator::const_pointer const_pointer; 43 template <class Traits, class Allocator> [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
construct.pass.cpp | 12 // allocator: 80 std::allocator<A> a; 125 std::allocator<move_only> a;
|
/ndk/tests/device/test-gnustl-full/unit/ |
allocator_test.cpp | 40 typedef allocator<char> CharAllocator; 58 typedef allocator<BigStruct> BigStructAllocType;
|
bitset_test.cpp | 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); 70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
|
/ndk/tests/device/test-stlport/unit/ |
allocator_test.cpp | 40 typedef allocator<char> CharAllocator; 58 typedef allocator<BigStruct> BigStructAllocType;
|
bitset_test.cpp | 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); 70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
|
/system/core/libmemunreachable/ |
LeakPipe.h | 118 template<class T, class Alloc = std::allocator<T>> 156 template<class T, class Alloc = std::allocator<T>>
|
/art/compiler/driver/ |
compiled_method_storage.cc | 36 SwapAllocator<uint8_t> allocator(swap_space); 37 void* storage = allocator.allocate(LengthPrefixedArray<T>::ComputeSize(array.size())); 45 SwapAllocator<uint8_t> allocator(swap_space); 48 allocator.deallocate(const_cast<uint8_t*>(reinterpret_cast<const uint8_t*>(array)), size);
|
/art/runtime/base/ |
hash_map.h | 53 class Alloc = std::allocator<std::pair<Key, Value>>>
|
/external/clang/test/SemaTemplate/ |
default-expr-arguments.cpp | 162 struct allocator { struct in namespace:PR5810 163 allocator() { int a[sizeof(T) ? -1 : -1]; } // expected-error2 {{array with a negative size}} function in struct:PR5810::allocator 168 vector(const allocator<T>& = allocator<T>()) {} // expected-note2 {{instantiation of}}
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_win.cc | 248 LowLevelAllocator *allocator) { 261 list->push_back(new(*allocator) LLVMSymbolizer(path, allocator)); 271 list->push_back(new(*allocator) WinSymbolizerTool());
|
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
vktComputeTestsUtil.cpp | 37 Allocator& allocator, 42 m_allocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement); 48 Allocator& allocator, 53 m_allocation = allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement);
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
vktDrawBufferObjectUtil.hpp | 46 vk::Allocator& allocator,
|
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
vktDynamicStateBufferObjectUtil.hpp | 47 vk::Allocator& allocator,
|
/external/deqp/external/vulkancts/modules/vulkan/query_pool/ |
vktQueryPoolBufferObjectUtil.hpp | 46 vk::Allocator& allocator,
|
/external/dng_sdk/source/ |
dng_iptc.h | 147 /// \param allocator Memory allocator used to acquire memory block. 151 dng_memory_block * Spool (dng_memory_allocator &allocator,
|