HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 1 - 25 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
memory_header_test.cpp 8 #include <memory>
  /ndk/tests/device/test-gnustl-full/unit/
memory_header_test.cpp 8 #include <memory>
  /ndk/tests/device/test-stlport/unit/
memory_header_test.cpp 8 #include <memory>
  /external/chromium/third_party/libjingle/source/talk/base/
byteorder.h 43 // Reading and writing of little and big-endian numbers from memory
49 inline void Set8(void* memory, size_t offset, uint8 v) {
50 static_cast<uint8*>(memory)[offset] = v;
52 inline uint8 Get8(const void* memory, size_t offset) {
53 return static_cast<const uint8*>(memory)[offset];
56 inline void SetBE16(void* memory, uint16 v) {
57 Set8(memory, 0, static_cast<uint8>(v >> 8));
58 Set8(memory, 1, static_cast<uint8>(v >> 0));
60 inline void SetBE32(void* memory, uint32 v) {
61 Set8(memory, 0, static_cast<uint8>(v >> 24))
    [all...]
  /external/freetype/src/base/
ftsystem.c 21 /* low-level, i.e. memory management, i/o access as well as thread */
39 /* MEMORY MANAGEMENT INTERFACE */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory,
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. *
289 FT_Memory memory; local
    [all...]
basepic.c 38 FT_Memory memory = library->memory; local
56 FT_Memory memory = library->memory; local
ftinit.c 117 FT_Memory memory; local
124 memory = library->memory;
145 FT_Memory memory; local
151 memory = library->memory;
206 FT_Memory memory; local
212 memory = FT_New_Memory();
213 if ( !memory )
215 FT_ERROR(( "FT_Init_FreeType: cannot find memory manager\n" ))
239 FT_Memory memory = library->memory; local
    [all...]
ftutil.c 5 /* 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,
101 block = ft_mem_qrealloc( memory, item_size,
113 ft_mem_qrealloc( FT_Memory memory,
134 ft_mem_free( memory, block )
    [all...]
ftdbgmem.c 5 /* Memory debugger (body). */
33 * memory, however.
42 FT_DumpMemory( FT_Memory memory );
54 * site. This is useful to know where memory operations happen the
79 * We don't need a resizable array for the memory sources, because
86 * memory block. If KEEPALIVE is defined, blocks that are freed by
89 * at the price of large memory footprint during execution.
133 FT_Memory memory; member in struct:FT_MemTableRec_
229 FT_Memory memory = table->memory; local
245 FT_Memory memory = table->memory; local
    [all...]
  /external/guava/src/com/google/common/io/
FileBackedOutputStream.java 46 private MemoryOutput memory; field in class:FileBackedOutputStream
90 memory = new MemoryOutput();
91 out = memory;
129 memory.getBuffer(), 0, memory.getCount());
144 if (memory == null) {
145 memory = new MemoryOutput();
147 memory.reset();
149 out = memory;
187 if (file == null && (memory.getCount() + len > fileThreshold))
    [all...]
  /external/dbus/dbus/
dbus-memory.h 2 /* dbus-memory.h D-Bus memory handling
45 void* dbus_realloc (void *memory,
48 void dbus_free (void *memory);
56 typedef void (* DBusFreeFunction) (void *memory);
dbus-auth-script.h 27 #include <dbus/dbus-memory.h>
  /external/expat/lib/
winconfig.h 17 #include <memory.h>
  /external/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/freetype/src/pshinter/
pshpic.c 33 FT_Memory memory = library->memory; local
48 FT_Memory memory = library->memory; local
pshrec.c 51 FT_Memory memory )
63 FT_Memory memory )
83 FT_Memory memory,
96 error = ps_hint_table_ensure( table, count, memory );
125 FT_Memory memory )
138 FT_Memory memory )
187 FT_Memory memory )
198 error = ps_mask_ensure( mask, idx + 1, memory );
216 FT_Memory memory )
223 ps_mask_done( mask, memory );
788 FT_Memory memory = hints->memory; local
864 FT_Memory memory = hints->memory; local
903 FT_Memory memory = hints->memory; local
964 FT_Memory memory = hints->memory; local
1006 FT_Memory memory = hints->memory; local
1051 FT_Memory memory = hints->memory; local
1096 FT_Memory memory = hints->memory; local
    [all...]
  /external/webkit/Source/WebCore/page/
Performance.idl 37 readonly attribute [V8CustomGetter] MemoryInfo memory;
  /external/chromium/base/
shared_memory_unittest.cc 7 #include "base/memory/scoped_ptr.h"
22 // Each thread will open the shared memory. Each thread will take a different 4
24 // Verify that each thread's value in the shared memory is always correct.
31 SharedMemory memory; local
32 memory.Delete(s_test_name_);
39 SharedMemory memory; local
40 bool rv = memory.CreateNamed(s_test_name_, true, kDataSize);
42 rv = memory.Map(kDataSize);
44 int *ptr = static_cast<int*>(memory.memory()) + id_
334 SharedMemory memory; local
342 SharedMemory memory; local
    [all...]
  /external/freetype/include/freetype/internal/
ftmemory.h 5 /* 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,
140 ft_mem_free( FT_Memory memory,
145 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, (size), &error ) )
149 ft_mem_free( memory, (ptr) ); \
157 FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, 1, \
162 FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, (size), &error )
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp 33 // Release the allocated memory for this thread.
91 // be obtained to allocate memory.
225 // much memory the caller asked for. allocationSize is the total
244 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset; local
248 return initializeAllocation(inUseList, memory, numBytes);
257 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]); local
258 if (memory == 0)
262 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
263 inUseList = memory;
268 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip)
274 tHeader* memory; local
    [all...]
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 59 // FIXME: If the receiving process crashes before it receives the memory, the memory will be
125 RefPtr<SharedMemory> memory = adoptRef(new SharedMemory); local
126 memory->m_size = size;
127 memory->m_data = baseAddress;
128 memory->m_handle = handle;
130 return memory.release();
148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection); local
149 if (!memory)
155 return memory.release()
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
scatterlist.h 15 #include <asm/memory.h>
  /development/ndk/platforms/android-3/arch-arm/include/asm/
scatterlist.h 15 #include <asm/memory.h>
  /external/collada/include/dae/
daeErrorHandler.h 12 #include <memory>
  /external/freetype/src/autofit/
afpic.c 41 FT_Memory memory = library->memory; local
59 FT_Memory memory = library->memory; local

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 91011>>