Searched refs:memory (Results 51 - 75 of 1625) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
H A Datomic_is_lock_free.pass.cpp10 // <memory>
18 #include <memory>
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/
H A Dtypes.pass.cpp10 // <memory>
19 #include <memory>
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
H A Ddefault.pass.cpp10 // <memory>
16 #include <memory>
/external/chromium_org/cc/test/
H A Dtest_shared_bitmap_manager.cc12 delete shared_bitmap->memory();
24 scoped_ptr<base::SharedMemory> memory(new base::SharedMemory);
25 memory->CreateAndMapAnonymous(size.GetArea() * 4);
27 bitmap_map_[id] = memory.get();
29 new SharedBitmap(memory.release(), id, base::Bind(&FreeSharedBitmap)));
43 base::SharedMemory* memory) {
46 bitmap_map_[id] = memory;
48 new SharedBitmap(memory, id, base::Bind(&IgnoreSharedBitmap)));
42 GetBitmapForSharedMemory( base::SharedMemory* memory) argument
/external/chromium_org/third_party/WebKit/Source/modules/performance/
H A DWorkerPerformance.idl38 [RuntimeEnabled=MemoryInfoInWorkers] readonly attribute MemoryInfo memory;
/external/libcxx/test/utilities/memory/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/Android.mk
19 test_name := utilities/memory/version
/external/chromium_org/content/child/
H A Dweb_discardable_memory_impl.cc14 scoped_ptr<base::DiscardableMemory> memory(
16 if (!memory)
18 return make_scoped_ptr(new WebDiscardableMemoryImpl(memory.Pass()));
44 scoped_ptr<base::DiscardableMemory> memory)
45 : discardable_(memory.Pass()) {
43 WebDiscardableMemoryImpl( scoped_ptr<base::DiscardableMemory> memory) argument
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
94 (*FT_AllocDebug_Func)( FT_Memory memory,
339 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
94 (*FT_AllocDebug_Func)( FT_Memory memory,
339 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java48 private MemoryOutput memory; field in class:FileBackedOutputStream
93 memory = new MemoryOutput();
94 out = memory;
134 memory.getBuffer(), 0, memory.getCount());
149 if (memory == null) {
150 memory = new MemoryOutput();
152 memory.reset();
154 out = memory;
193 if (file == null && (memory
[all...]
/external/chromium_org/base/memory/
H A Ddiscardable_memory_ashmem_allocator_unittest.cc5 #include "base/memory/discardable_memory_ashmem_allocator.h"
10 #include "base/memory/discardable_memory.h"
11 #include "base/memory/scoped_ptr.h"
38 void WriteToDiscardableAshmemChunk(DiscardableAshmemChunk* memory, argument
42 static_cast<char*>(memory->Memory())[0] = 'a';
43 static_cast<char*>(memory->Memory())[size - 1] = 'a';
48 scoped_ptr<DiscardableAshmemChunk> memory(allocator_.Allocate(size));
49 ASSERT_TRUE(memory);
50 WriteToDiscardableAshmemChunk(memory.get(), size);
54 scoped_ptr<DiscardableAshmemChunk> memory(allocator
[all...]
H A Ddiscardable_memory_android.cc5 #include "base/memory/discardable_memory.h"
11 #include "base/memory/discardable_memory_ashmem.h"
12 #include "base/memory/discardable_memory_ashmem_allocator.h"
13 #include "base/memory/discardable_memory_emulated.h"
14 #include "base/memory/discardable_memory_malloc.h"
71 scoped_ptr<internal::DiscardableMemoryAshmem> memory(
74 if (!memory->Initialize())
77 return memory.PassAs<DiscardableMemory>();
80 scoped_ptr<internal::DiscardableMemoryEmulated> memory(
82 if (!memory
[all...]
/external/chromium_org/third_party/pexpect/
H A DANSI.py39 screen = fsm.memory[0]
44 fsm.memory.append (fsm.input_symbol)
48 ns = fsm.memory.pop()
50 fsm.memory.append (ns)
54 screen = fsm.memory[0]
59 count = int(fsm.memory.pop())
60 screen = fsm.memory[0]
65 screen = fsm.memory[0]
70 count = int(fsm.memory.pop())
71 screen = fsm.memory[
[all...]
/external/lldb/test/pexpect-2.4/
H A DANSI.py18 screen = fsm.memory[0]
23 fsm.memory.append (fsm.input_symbol)
27 ns = fsm.memory.pop()
29 fsm.memory.append (ns)
33 screen = fsm.memory[0]
38 count = int(fsm.memory.pop())
39 screen = fsm.memory[0]
44 screen = fsm.memory[0]
49 count = int(fsm.memory.pop())
50 screen = fsm.memory[
[all...]
/external/chromium_org/sandbox/win/src/
H A Dhandle_interception.cc23 void* memory = GetGlobalIPCMemory(); local
24 if (NULL == memory)
27 SharedMemIPCClient ipc(memory);
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/Android.mk
19 test_name := utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy
23 test_name := utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy_n
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr
23 test_name := utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
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
280 ft_mem_free( FT_Memory memory, const void *P ) argument
499 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/chromium_org/third_party/expat/files/lib/
H A Dwinconfig.h19 #include <memory.h>
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
99 * A function used to release a given block of memory
332 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshpic.c37 FT_Memory memory = library->memory; local
54 FT_Memory memory = library->memory; local
/external/freetype/include/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
99 * A function used to release a given block of memory
332 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/freetype/src/pshinter/
H A Dpshpic.c37 FT_Memory memory = library->memory; local
54 FT_Memory memory = library->memory; local
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dconvert_to_auto_ptr.pass.cpp10 // <memory>
16 #include <memory>
H A Dconvert_to_auto_ptr_ref.pass.cpp10 // <memory>
16 #include <memory>

Completed in 700 milliseconds

1234567891011>>