Searched refs:memory (Results 126 - 150 of 1625) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/memory/util.smartptr/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/Android.mk
19 test_name := utilities/memory/util.smartptr/nothing_to_do
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.enab/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.enab/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/types
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.weak/types
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weakptr/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weakptr/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.weakptr/bad_weak_ptr
/external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
H A DResidentService.java36 public void useMemory(long memory) { argument
37 if (memory > 0) {
44 setContentTitle("MC running (" + memory + "Mb)").
52 if (mIsInForeground && memory == 0) {
56 nativeUseMemory(memory * 1024 * 1024);
59 // Allocate the amount of memory in native code. Otherwise the memory
61 private native void nativeUseMemory(long memory); argument
/external/libcxx/test/utilities/memory/pointer.traits/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/pointer.traits/Android.mk
19 test_name := utilities/memory/pointer.traits/rebind
23 test_name := utilities/memory/pointer.traits/difference_type
27 test_name := utilities/memory/pointer.traits/pointer
31 test_name := utilities/memory/pointer.traits/element_type
35 test_name := utilities/memory/pointer.traits/pointer_to
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/null_asgn
23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/null_ctor
27 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/move01
31 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/nullptr_asgn
35 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/pointer_type
/external/chromium_org/third_party/freetype/src/base/
H A Dftinit.c126 FT_Memory memory; local
134 memory = library->memory;
158 FT_Memory memory; local
165 memory = library->memory;
235 FT_Memory memory; local
241 memory = FT_New_Memory();
242 if ( !memory )
244 FT_ERROR(( "FT_Init_FreeType: cannot find memory manage
268 FT_Memory memory = library->memory; local
[all...]
H A Dftutil.c5 /* FreeType utility file for memory and list management (body). */
50 ft_mem_alloc( FT_Memory memory,
55 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
66 ft_mem_qalloc( FT_Memory memory,
76 block = memory->alloc( memory, size );
92 ft_mem_realloc( FT_Memory memory,
102 block = ft_mem_qrealloc( memory, item_size,
114 ft_mem_qrealloc( FT_Memory memory,
135 ft_mem_free( memory, bloc
168 ft_mem_free( FT_Memory memory, const void *P ) argument
387 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/freetype/src/base/
H A Dftinit.c126 FT_Memory memory; local
134 memory = library->memory;
158 FT_Memory memory; local
165 memory = library->memory;
235 FT_Memory memory; local
241 memory = FT_New_Memory();
242 if ( !memory )
244 FT_ERROR(( "FT_Init_FreeType: cannot find memory manage
268 FT_Memory memory = library->memory; local
[all...]
H A Dftutil.c5 /* FreeType utility file for memory and list management (body). */
50 ft_mem_alloc( FT_Memory memory,
55 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
66 ft_mem_qalloc( FT_Memory memory,
76 block = memory->alloc( memory, size );
92 ft_mem_realloc( FT_Memory memory,
102 block = ft_mem_qrealloc( memory, item_size,
114 ft_mem_qrealloc( FT_Memory memory,
135 ft_mem_free( memory, bloc
168 ft_mem_free( FT_Memory memory, const void *P ) argument
387 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dfxft_ftinit.c127 FT_Memory memory; local
135 memory = library->memory;
159 FT_Memory memory; local
166 memory = library->memory;
236 FT_Memory memory; local
242 memory = FT_New_Memory();
243 if ( !memory )
245 FT_ERROR(( "FT_Init_FreeType: cannot find memory manage
269 FT_Memory memory = library->memory; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
H A Dmemory_pool.h34 // Try to delete the memory pool. Fail with return value -1 if there is
35 // outstanding memory.
39 // Get/return unused memory.
40 int32_t PopMemory(MemoryType*& memory);
41 int32_t PushMemory(MemoryType*& memory);
106 int32_t MemoryPool<MemoryType>::PopMemory(MemoryType*& memory) argument
108 return _ptrImpl->PopMemory(memory);
112 int32_t MemoryPool<MemoryType>::PushMemory(MemoryType*& memory) argument
114 if(memory == NULL)
118 return _ptrImpl->PushMemory(memory);
[all...]
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/null
23 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/move01
27 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/move_convert01
31 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/move_convert03
35 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/nullptr
39 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/move_convert02
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/auto_ptr_Y
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/unique_ptr_Y
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_Y_rv
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_rv
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_Y
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_before_shared_ptr
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/dereference
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/arrow
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/op_bool
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_before_weak_ptr
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/unique
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dftmemory.h5 /* The FreeType memory management macros (specification). */
114 ft_mem_alloc( FT_Memory memory,
119 ft_mem_qalloc( FT_Memory memory,
124 ft_mem_realloc( FT_Memory memory,
132 ft_mem_qrealloc( FT_Memory memory,
144 ft_mem_allocdebug( FT_Memory memory,
149 ft_mem_qallocdebug( FT_Memory memory,
154 ft_mem_reallocdebug( FT_Memory memory,
162 ft_mem_qreallocdebug( FT_Memory memory,
172 ft_mem_free( FT_Memory memory,
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dftmemory.h5 /* The FreeType memory management macros (specification). */
114 ft_mem_alloc( FT_Memory memory,
119 ft_mem_qalloc( FT_Memory memory,
124 ft_mem_realloc( FT_Memory memory,
132 ft_mem_qrealloc( FT_Memory memory,
144 ft_mem_allocdebug( FT_Memory memory,
149 ft_mem_qallocdebug( FT_Memory memory,
154 ft_mem_reallocdebug( FT_Memory memory,
162 ft_mem_qreallocdebug( FT_Memory memory,
172 ft_mem_free( FT_Memory memory,
[all...]
/external/chromium_org/base/memory/
H A Dshared_memory_unittest.cc6 #include "base/memory/scoped_ptr.h"
7 #include "base/memory/shared_memory.h"
44 // Each thread will open the shared memory. Each thread will take a different 4
46 // Verify that each thread's value in the shared memory is always correct.
53 SharedMemory memory; local
54 memory.Delete(s_test_name_);
63 SharedMemory memory; variable
64 bool rv = memory.CreateNamedDeprecated(s_test_name_, true, kDataSize);
66 rv = memory.Map(kDataSize);
68 int *ptr = static_cast<int*>(memory
493 SharedMemory memory; local
516 SharedMemory memory; local
635 SharedMemory memory; local
645 SharedMemory memory; local
[all...]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/default
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/weak_ptr
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr_Y_rv
43 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer
47 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw
51 test_name := utilities/memory/uti
[all...]
/external/chromium_org/chromecast/media/cma/ipc/
H A Dmedia_message.cc36 scoped_ptr<MediaMemoryChunk> memory(memory_allocator.Run(msg_size));
37 if (!memory)
40 return scoped_ptr<MediaMessage>(new MediaMessage(type, memory.Pass()));
46 scoped_ptr<MediaMemoryChunk> memory) {
47 return scoped_ptr<MediaMessage>(new MediaMessage(type, memory.Pass()));
52 scoped_ptr<MediaMemoryChunk> memory) {
53 return scoped_ptr<MediaMessage>(new MediaMessage(memory.Pass()));
67 MediaMessage::MediaMessage(uint32 type, scoped_ptr<MediaMemoryChunk> memory) argument
70 msg_(static_cast<SerializedMsg*>(memory->data())),
72 mem_(memory
44 CreateMessage( uint32 type, scoped_ptr<MediaMemoryChunk> memory) argument
51 MapMessage( scoped_ptr<MediaMemoryChunk> memory) argument
94 MediaMessage(scoped_ptr<MediaMemoryChunk> memory) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.cpp70 // be obtained to allocate memory.
217 // much memory the caller asked for. allocationSize is the total
233 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset; local
237 return initializeAllocation(inUseList, memory, numBytes);
250 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]);
251 if (memory == 0)
255 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
256 inUseList = memory;
261 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip);
267 tHeader* memory; local
[all...]
/external/libcxx/test/utilities/memory/default.allocator/allocator.members/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/default.allocator/allocator.members/Android.mk
19 test_name := utilities/memory/default.allocator/allocator.members/address
23 test_name := utilities/memory/default.allocator/allocator.members/construct
27 test_name := utilities/memory/default.allocator/allocator.members/allocate
31 test_name := utilities/memory/default.allocator/allocator.members/max_size
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/get
23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/explicit_bool
27 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/index
31 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/get_deleter

Completed in 537 milliseconds

1234567891011>>