Searched refs:memory (Results 1 - 25 of 397) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dmemory_header_test.cpp8 #include <memory>
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbyteorder.h43 // Reading and writing of little and big-endian numbers from memory
49 inline void Set8(void* memory, size_t offset, uint8 v) { argument
50 static_cast<uint8*>(memory)[offset] = v;
52 inline uint8 Get8(const void* memory, size_t offset) { argument
53 return static_cast<const uint8*>(memory)[offset];
56 inline void SetBE16(void* memory, uint16 v) { argument
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) { argument
61 Set8(memory,
66 SetBE64(void* memory, uint64 v) argument
76 GetBE16(const void* memory) argument
80 GetBE32(const void* memory) argument
86 GetBE64(const void* memory) argument
97 SetLE16(void* memory, uint16 v) argument
101 SetLE32(void* memory, uint32 v) argument
107 SetLE64(void* memory, uint64 v) argument
117 GetLE16(const void* memory) argument
121 GetLE32(const void* memory) argument
127 GetLE64(const void* memory) argument
[all...]
/external/freetype/src/base/
H A Dftsystem.c21 /* low-level, i.e. memory management, i/o access as well as thread */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory, argument
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. */
89 /* cur_size :: The current size of the allocated memory bloc
99 ft_realloc( FT_Memory memory, long cur_size, long new_size, void* block ) argument
125 ft_free( FT_Memory memory, void* block ) argument
289 FT_Memory memory; local
[all...]
H A Dbasepic.c38 FT_Memory memory = library->memory; local
56 FT_Memory memory = library->memory; local
H A Dftinit.c117 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 manage
239 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,
101 block = ft_mem_qrealloc( memory, item_size,
113 ft_mem_qrealloc( FT_Memory memory,
134 ft_mem_free( memory, bloc
167 ft_mem_free( FT_Memory memory, const void *P ) argument
386 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
492 FT_Free( FT_Memory memory, void* *P ) argument
[all...]
H A Dftdbgmem.c33 * 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
233 memory
245 FT_Memory memory = table->memory; local
680 ft_mem_debug_alloc( FT_Memory memory, FT_Long size ) argument
716 ft_mem_debug_free( FT_Memory memory, FT_Pointer block ) argument
740 ft_mem_debug_realloc( FT_Memory memory, FT_Long cur_size, FT_Long new_size, FT_Pointer block ) argument
[all...]
/external/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java46 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
[all...]
/external/dbus/dbus/
H A Ddbus-memory.h2 /* 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);
H A Ddbus-auth-script.h27 #include <dbus/dbus-memory.h>
/external/expat/lib/
H A Dwinconfig.h17 #include <memory.h>
/external/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/freetype/src/pshinter/
H A Dpshpic.c33 FT_Memory memory = library->memory; local
48 FT_Memory memory = library->memory; local
H A Dpshrec.c51 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 );
82 ps_hint_table_alloc( PS_Hint_Table table, FT_Memory memory, PS_Hint *ahint ) argument
254 ps_mask_table_alloc( PS_Mask_Table table, FT_Memory memory, PS_Mask *amask ) argument
286 ps_mask_table_last( PS_Mask_Table table, FT_Memory memory, PS_Mask *amask ) argument
643 ps_dimension_add_t1stem( PS_Dimension dim, FT_Int pos, FT_Int len, FT_Memory memory, FT_Int *aindex ) argument
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/
H A DPerformance.idl37 readonly attribute [V8CustomGetter] MemoryInfo memory;
/external/chromium/base/
H A Dshared_memory_unittest.cc7 #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())
334 SharedMemory memory; local
342 SharedMemory memory; local
[all...]
/external/freetype/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,
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, (siz
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.cpp33 // 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)
274 tHeader* memory; local
[all...]
/external/webkit/Source/WebKit2/Platform/win/
H A DSharedMemoryWin.cpp59 // 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
[all...]
/external/freetype/src/autofit/
H A Dafpic.c41 FT_Memory memory = library->memory; local
59 FT_Memory memory = library->memory; local
/external/freetype/src/psnames/
H A Dpspic.c35 FT_Memory memory = library->memory; local
54 FT_Memory memory = library->memory; local
/external/freetype/src/raster/
H A Drastpic.c33 FT_Memory memory = library->memory; local
51 FT_Memory memory = library->memory; local
/external/freetype/src/smooth/
H A Dftspic.c33 FT_Memory memory = library->memory; local
51 FT_Memory memory = library->memory; local
/external/freetype/src/truetype/
H A Dttpic.c36 FT_Memory memory = library->memory; local
55 FT_Memory memory = library->memory; local
/external/kernel-headers/original/asm-arm/
H A Dscatterlist.h4 #include <asm/memory.h>

Completed in 815 milliseconds

1234567891011>>