HomeSort by relevance Sort by last modified time
    Searched refs:allocate (Results 101 - 125 of 1764) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
constructor_destructor_fn_imps.hpp 65 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
76 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
88 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
104 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
120 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
132 m_entries(s_entry_pointer_allocator.allocate(m_num_e))
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h 46 // allocate a large number of small requests for heap memory, with the
174 // Call allocate() to actually acquire memory. Returns 0 if no memory
177 void* allocate(size_t numBytes);
236 size_t currentPageOffset; // next offset in top of inUseList to allocate from
239 tAllocStack stack; // stack of where to allocate from, to partition pool
294 pointer allocate(size_type n) { function in class:glslang::pool_allocator
295 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T))); }
296 pointer allocate(size_type n, const void*) { function in class:glslang::pool_allocator
297 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T))); }
303 return reinterpret_cast<pointer>(getAllocator().allocate(n));
    [all...]
  /art/test/905-object-free/src/art/
Test905.java 44 allocate(l, 1); method
55 allocate(l, i); method
79 // Allocate objects.
94 private static void allocate(ArrayList<Object> l, long tag) { method in class:Test905
  /external/skia/src/gpu/
GrMemoryPool.h 18 * requests. It is optimized for allocate / release speed over memory
26 * Prealloc size is the amount of space to allocate at pool creation
44 void* allocate(size_t size);
47 * p must have been returned by allocate()
125 * Variant of GrMemoryPool that can only allocate objects of a single type. It is
126 * not as flexible as GrMemoryPool, but it has more convenient allocate() method,
131 * pool.allocate(sizeof(T));
132 * pool.allocate(sizeof(T));
133 * pool.allocate(sizeof(T));
136 * structures. Because of that, last allocate() call will end up allocating a ne
167 T* allocate() { return static_cast<T*>(GrMemoryPool::allocate(sizeof(T))); } function in class:GrObjectMemoryPool
    [all...]
  /external/skqp/src/gpu/
GrMemoryPool.h 18 * requests. It is optimized for allocate / release speed over memory
26 * Prealloc size is the amount of space to allocate at pool creation
44 void* allocate(size_t size);
47 * p must have been returned by allocate()
125 * Variant of GrMemoryPool that can only allocate objects of a single type. It is
126 * not as flexible as GrMemoryPool, but it has more convenient allocate() method,
131 * pool.allocate(sizeof(T));
132 * pool.allocate(sizeof(T));
133 * pool.allocate(sizeof(T));
136 * structures. Because of that, last allocate() call will end up allocating a ne
167 T* allocate() { return static_cast<T*>(GrMemoryPool::allocate(sizeof(T))); } function in class:GrObjectMemoryPool
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
Common.h 36 void* operator new(size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
40 void* operator new[](size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
53 void* memory = GetGlobalPoolAllocator()->allocate(sizeof(TString));
  /external/swiftshader/src/OpenGL/libGLES_CM/
ResourceManager.cpp 65 return mBufferNameSpace.allocate();
71 return mTextureNameSpace.allocate();
77 return mRenderbufferNameSpace.allocate();
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
Charsets.java 53 CharBuffer cb = CharBuffer.allocate(length);
63 CharBuffer cb = CharBuffer.allocate(length);
73 CharBuffer cb = CharBuffer.allocate(length);
  /art/test/543-env-long-ref/src/
Main.java 31 public static Main $noinline$allocate(long a) {
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
BufferType.java 29 return ByteBuffer.allocate(size);
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 119 virtual de::MovePtr<Allocation> allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alignment) = 0;
120 virtual de::MovePtr<Allocation> allocate (const VkMemoryRequirements& memRequirements, MemoryRequirement requirement) = 0;
129 de::MovePtr<Allocation> allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alignment);
130 de::MovePtr<Allocation> allocate (const VkMemoryRequirements& memRequirements, MemoryRequirement requirement);
  /external/deqp/framework/randomshaders/
rsgNameAllocator.cpp 54 std::string NameAllocator::allocate (void) function in class:rsg::NameAllocator
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
allocate.size.pass.cpp 14 // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
26 TEST_IGNORE_NODISCARD a.allocate(count);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_allocator.h 48 allocate(unsigned size) function in class:brw::simple_allocator
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemDataBox.java 11 ByteBuffer data = ByteBuffer.allocate(0);
  /frameworks/av/services/oboeservice/
AAudioMixer.h 30 void allocate(int32_t samplesPerFrame, int32_t framesPerBurst);
  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 32 SectionData* result = g_SectDataFactory->allocate();
  /frameworks/native/libs/binder/include/binder/
MemoryDealer.h 40 virtual sp<IMemory> allocate(size_t size);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
HSConnectionCapabilityElementTest.java 61 ByteBuffer buffer = ByteBuffer.allocate(tuples.length * ProtocolPortTuple.RAW_BYTE_SIZE)
79 HSConnectionCapabilityElement.parse(ByteBuffer.allocate(0));
91 ByteBuffer buffer = ByteBuffer.allocate(ProtocolPortTuple.RAW_BYTE_SIZE - 1);
106 ByteBuffer buffer = ByteBuffer.allocate(ProtocolPortTuple.RAW_BYTE_SIZE + 1);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCCharsetDecoderTest.java 48 // ByteBuffer buffer = ByteBuffer.allocate(8);
58 ByteBuffer buffer = ByteBuffer.allocate(8);
GBCharsetDecoderTest.java 53 ByteBuffer buffer = ByteBuffer.allocate(20);
  /libcore/luni/src/test/java/libcore/java/nio/
NoArrayTest.java 27 assertNoArray(ByteBuffer.allocate(32).asReadOnlyBuffer());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/allocator.members/
allocate.size.pass.cpp 14 // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
26 a.allocate(count);
  /system/chre/util/include/chre/util/
memory_pool.h 66 ElementType *allocate(Args&&... args);
70 * here must be one that was produced by a previous call to the allocate()
74 * allocate() function.
  /external/replicaisland/src/com/replica/replicaisland/
PhysicsComponent.java 75 Vector2 newVelocity = vectorPool.allocate(currentVelocity);
135 Vector2 collisionNormal = vectorPool.allocate(opposingNormal);
139 Vector2 relativeVelocity = vectorPool.allocate(velocity);
154 Vector2 entity1Adjust = vectorPool.allocate(collisionNormal);
174 Vector2 collisionNormal = vectorPool.allocate(opposingNormal);
177 Vector2 entity1Velocity = vectorPool.allocate(velocity);
180 Vector2 entity2Velocity = vectorPool.allocate(otherVelocity);
183 Vector2 relativeVelocity = vectorPool.allocate(entity1Velocity);
199 Vector2 entity1Adjust = vectorPool.allocate(collisionNormal);

Completed in 848 milliseconds

1 2 3 45 6 7 8 91011>>