HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 51 - 75 of 1566) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
default.pass.cpp 10 // <memory>
16 #include <memory>
  /external/ceres-solver/include/ceres/internal/
port.h 42 #include <tr1/memory>
44 #include <memory>
  /external/chromium_org/cc/test/
test_shared_bitmap_manager.cc 12 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)));
  /external/chromium_org/third_party/WebKit/Source/modules/performance/
WorkerPerformance.idl 38 [RuntimeEnabled=MemoryInfoInWorkers] readonly attribute MemoryInfo memory;
  /external/libcxx/test/utilities/memory/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/Android.mk
19 test_name := utilities/memory/version
  /external/chromium_org/content/child/
web_discardable_memory_impl.cc 14 scoped_ptr<base::DiscardableMemory> memory(
16 if (!memory)
18 return make_scoped_ptr(new WebDiscardableMemoryImpl(memory.Pass()));
40 return discardable_->Memory();
44 scoped_ptr<base::DiscardableMemory> memory)
45 : discardable_(memory.Pass()) {
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 48 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.getCount() + len > fileThreshold))
    [all...]
  /external/chromium_org/base/memory/
discardable_memory_ashmem_allocator_unittest.cc 5 #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,
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);
    [all...]
discardable_memory_android.cc 5 #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->Initialize()
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
memory_pool.h 34 // 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)
108 return _ptrImpl->PopMemory(memory);
112 int32_t MemoryPool<MemoryType>::PushMemory(MemoryType*& memory)
114 if(memory == NULL)
118 return _ptrImpl->PushMemory(memory);
    [all...]
  /external/lldb/test/pexpect-2.4/
ANSI.py 18 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[0
    [all...]
  /external/chromium_org/sandbox/win/src/
handle_interception.cc 23 void* memory = GetGlobalIPCMemory(); local
24 if (NULL == memory)
27 SharedMemIPCClient ipc(memory);
  /external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
Android.mk 17 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/
Android.mk 17 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/chromium_org/third_party/expat/files/lib/
winconfig.h 19 #include <memory.h>
  /external/chromium_org/third_party/freetype/include/freetype/
ftsystem.h 38 /* 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/
pshpic.c 37 FT_Memory memory = library->memory; local
54 FT_Memory memory = library->memory; local
  /external/freetype/include/
ftsystem.h 38 /* 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/
pshpic.c 37 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/
convert_to_auto_ptr.pass.cpp 10 // <memory>
16 #include <memory>
convert_to_auto_ptr_ref.pass.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/utilities/memory/allocator.traits/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/allocator.traits/Android.mk
19 test_name := utilities/memory/allocator.traits/rebind_traits
23 test_name := utilities/memory/allocator.traits/allocator_type
27 test_name := utilities/memory/allocator.traits/value_type
allocator_type.pass.cpp 10 // <memory>
19 #include <memory>
value_type.pass.cpp 10 // <memory>
19 #include <memory>
  /external/libcxx/test/utilities/memory/default.allocator/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/default.allocator/Android.mk
19 test_name := utilities/memory/default.allocator/allocator_types
23 test_name := utilities/memory/default.allocator/allocator_pointers
27 test_name := utilities/memory/default.allocator/allocator_void

Completed in 366 milliseconds

1 23 4 5 6 7 8 91011>>