HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 1 - 25 of 867) 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...]
ftinit.c 126 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 manager\n" ))
268 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/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/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 36 FT_Memory memory = library->memory; local
53 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...]
  /system/core/libcorkscrew/
ptrace.c 38 void init_memory(memory_t* memory, const map_info_t* map_info_list) {
39 memory->tid = -1;
40 memory->map_info_list = map_info_list;
43 void init_memory_ptrace(memory_t* memory, pid_t tid) {
44 memory->tid = tid;
45 memory->map_info_list = NULL;
48 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value) {
55 if (memory->tid < 0) {
56 if (!is_readable_map(memory->map_info_list, ptr)) {
67 *out_value = ptrace(PTRACE_PEEKTEXT, memory->tid, (void*)ptr, NULL)
78 memory_t 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...]
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 64 uintptr_t rewind_pc_arch(const memory_t* memory, uintptr_t pc) {
72 static ssize_t unwind_backtrace_common(const memory_t* memory,
80 uintptr_t pc = index ? rewind_pc_arch(memory, state->pc) : state->pc;
97 if (!try_get_word(memory, addr, &op))
128 if (!try_get_word(memory, state->sp + ra_offset, &next_ra))
168 memory_t memory; local
169 init_memory(&memory, map_info_list);
170 return unwind_backtrace_common(&memory, map_info_list,
190 memory_t memory; local
191 init_memory_ptrace(&memory, tid)
    [all...]
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 90 uintptr_t rewind_pc_arch(const memory_t* memory __attribute__((unused)), uintptr_t pc) {
95 static ssize_t unwind_backtrace_common(const memory_t* memory,
104 index ? rewind_pc_arch(memory, state->eip) : state->eip,
115 if (!try_get_word(memory, state->ebp + 4, &state->eip)
116 || !try_get_word(memory, state->ebp, &state->ebp)
135 memory_t memory; local
136 init_memory(&memory, map_info_list);
137 return unwind_backtrace_common(&memory, map_info_list,
153 memory_t memory; local
154 init_memory_ptrace(&memory, tid)
    [all...]
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 121 static uintptr_t get_exception_handler(const memory_t* memory,
131 if (memory->tid < 0) {
156 if (!try_get_word(memory, entry, &entry_prel_pc)) {
168 if (!try_get_word(memory, next_entry, &next_entry_prel_pc)) {
181 if (!try_get_word(memory, entry_handler_ptr, &entry_handler)) {
210 static bool try_next_byte(const memory_t* memory, byte_stream_t* stream, uint8_t* out_value) {
214 if (!try_get_word(memory, stream->ptr, &stream->word)) {
244 static bool try_pop_registers(const memory_t* memory, unwind_state_t* state, uint32_t mask) {
250 if (!try_get_word(memory, sp, &value)) {
279 static bool execute_personality_routine(const memory_t* memory,
579 memory_t memory; local
597 memory_t memory; local
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
scatterlist.h 21 #include <asm/memory.h>

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011>>