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

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
memory_header_test.cpp 8 #include <memory>
  /external/opencore/oscl/oscl/config/shared/
osclconfig_ansi_memory.h 37 #include <memory.h>
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/platform/
OSMemoryTest.java 39 IMemorySystem memory = Platform.getMemorySystem(); local
42 int ptr = memory.malloc(byteCount);
45 memory.setByte(ptr, (byte) 1);
46 assertEquals((byte) 1, memory.getByte(ptr));
47 // Check that we can clear memory.
48 memory.memset(ptr, (byte) 0, byteCount);
51 memory.memset(ptr, (byte) 1, byteCount);
54 memory.free(ptr);
59 IMemorySystem memory = Platform.getMemorySystem(); local
61 assertEquals(value, memory.getByte(ptr + i))
72 IMemorySystem memory = Platform.getMemorySystem(); local
105 IMemorySystem memory = Platform.getMemorySystem(); local
125 IMemorySystem memory = Platform.getMemorySystem(); local
155 IMemorySystem memory = Platform.getMemorySystem(); local
    [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. *
271 FT_Memory memory; local
    [all...]
basepic.c 38 FT_Memory memory = library->memory; local
56 FT_Memory memory = library->memory; local
ftinit.c 116 FT_Memory memory; local
123 memory = library->memory;
144 FT_Memory memory; local
150 memory = library->memory;
205 FT_Memory memory; local
211 memory = FT_New_Memory();
212 if ( !memory )
214 FT_ERROR(( "FT_Init_FreeType: cannot find memory manager\n" ))
238 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
42 void* dbus_realloc (void *memory,
44 void dbus_free (void *memory);
51 typedef void (* DBusFreeFunction) (void *memory);
dbus-auth-script.h 29 #include <dbus/dbus-memory.h>
  /external/opencore/protocols/sdp/parser/src/
still_imagemediainfoparser.cpp 32 void *memory = sdp->alloc(sizeof(still_image_mediaInfo), 0); local
33 if (NULL == memory)
35 PVMF_SDP_PARSER_LOGERROR((0, "SDPStillImageMediaInfoParser::parseMediaInfo - Unable to allocate memory"));
40 still_image_mediaInfo *still_imageI = OSCL_PLACEMENT_NEW(memory, still_image_mediaInfo());
  /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
331 FT_Memory memory; member in struct:FT_StreamRec_
    [all...]
  /external/freetype/src/pshinter/
pshpic.c 33 FT_Memory memory = library->memory; local
47 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/freetype/include/freetype/internal/
ftmemory.h 5 /* The FreeType memory management macros (specification). */
102 ft_mem_alloc( FT_Memory memory,
107 ft_mem_qalloc( FT_Memory memory,
112 ft_mem_realloc( FT_Memory memory,
120 ft_mem_qrealloc( FT_Memory memory,
128 ft_mem_free( FT_Memory memory,
133 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, (size), &error ) )
137 ft_mem_free( memory, (ptr) ); \
145 FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, 1, \
150 FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, (size), &error )
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
scatterlist.h 15 #include <asm/memory.h>
  /external/freetype/src/autofit/
afpic.c 40 FT_Memory memory = library->memory; local
55 FT_Memory memory = library->memory; local
  /external/freetype/src/psnames/
pspic.c 35 FT_Memory memory = library->memory; local
53 FT_Memory memory = library->memory; local
  /external/freetype/src/raster/
rastpic.c 33 FT_Memory memory = library->memory; local
51 FT_Memory memory = library->memory; local
  /external/freetype/src/smooth/
ftspic.c 33 FT_Memory memory = library->memory; local
51 FT_Memory memory = library->memory; local
  /external/freetype/src/truetype/
ttpic.c 36 FT_Memory memory = library->memory; local
54 FT_Memory memory = library->memory; local
  /external/kernel-headers/original/asm-arm/
scatterlist.h 4 #include <asm/memory.h>
  /external/webkit/WebCore/platform/text/
TextEncodingRegistry.h 29 #include <memory>

Completed in 268 milliseconds

1 2 3 4 5 6 7 8 91011>>