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

1 2 3 4 5 6 7 8 9

  /external/freetype/src/autofit/
afpic.c 45 FT_Memory memory = library->memory; local
63 FT_Memory memory = library->memory; local
  /external/freetype/src/base/
basepic.c 44 FT_Memory memory = library->memory; local
62 FT_Memory memory = library->memory; local
ftsnames.c 63 FT_Memory memory = face->memory; local
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...]
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...]
ftstream.c 205 /* equivalent to FT_Stream_ExitFrame(), with no memory block release */
220 FT_Memory memory = stream->memory; local
223 ft_mem_free( memory, *pbytes );
246 /* allocate the frame in memory */
247 FT_Memory memory = stream->memory; local
263 stream->base = (unsigned char*)ft_mem_qalloc( memory, count, &error );
327 FT_Memory memory = stream->memory; local
    [all...]
  /external/freetype/src/cff/
cffpic.c 79 FT_Memory memory = library->memory; local
107 FT_Memory memory = library->memory; local
cffcmap.c 139 FT_Memory memory = FT_FACE_MEMORY( face ); local
150 return psnames->unicodes_init( memory,
163 FT_Memory memory = FT_FACE_MEMORY( face ); local
  /external/freetype/src/pshinter/
pshpic.c 36 FT_Memory memory = library->memory; local
53 FT_Memory memory = library->memory; local
pshmod.c 54 FT_Memory memory = module->root.memory; local
58 ps_hints_init( &module->ps_hints, memory );
  /external/freetype/src/psnames/
pspic.c 43 FT_Memory memory = library->memory; local
67 FT_Memory memory = library->memory; local
  /external/freetype/src/sfnt/
sfntpic.c 75 FT_Memory memory = library->memory; local
103 FT_Memory memory = library->memory; local
  /external/freetype/src/truetype/
ttpic.c 48 FT_Memory memory = library->memory; local
71 FT_Memory memory = library->memory; local
  /external/webkit/Source/WebCore/page/
Performance.cpp 69 MemoryInfo* Performance::memory() const function in class:WebCore::Performance
  /external/freetype/src/raster/
rastpic.c 35 FT_Memory memory = library->memory; local
55 FT_Memory memory = library->memory; local
ftrend1.c 109 FT_Memory memory; local
187 memory = render->root.memory;
  /external/freetype/src/smooth/
ftspic.c 35 FT_Memory memory = library->memory; local
57 FT_Memory memory = library->memory; local
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.h 45 HANDLE memory() const { return m_bitmapSharedMemory; } function in class:WebKit::UpdateChunk
  /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/freetype/src/cache/
ftcmru.c 173 FT_Memory memory )
180 list->memory = memory;
242 FT_Memory memory = list->memory; local
315 FT_Memory memory = list->memory; local
  /external/freetype/src/psaux/
t1cmap.c 278 FT_Memory memory = FT_FACE_MEMORY( face ); local
282 return psnames->unicodes_init( memory,
295 FT_Memory memory = FT_FACE_MEMORY( face ); local
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Common.h 21 // usually small, we should not run out of memory. SOURCE_LOC_LINE_SIZE
57 void* memory = GlobalPoolAllocator.allocate(sizeof(TString)); local
58 return new(memory) TString(s);
62 // Persistent string memory. Should only be used for strings that survive
  /frameworks/compile/mclinker/lib/Support/
Space.cpp 69 void* memory; local
95 memory = (void*)malloc(size);
96 if (!pHandler.read(memory, start, size))
123 if (!pHandler.mmap(memory, start, size))
132 result = new Space(type, memory, size);
144 free(pSpace->memory());
147 if (!pHandler.munmap(pSpace->memory(), pSpace->size()))
150 default: // external and unallocated memory buffers
162 if (!pHandler.write(pSpace->memory(),
173 // system will eventually write bakc the memory afte
    [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/chromium/base/
shared_memory.h 27 // the underlying OS handle to a shared memory segment.
32 // A SharedMemoryId is sufficient to identify a given shared memory segment on a
41 // Platform abstraction for shared memory. Provides a C++ wrapper
42 // around the OS primitive for a memory mapped file.
55 // shared memory file.
59 // shared memory file that was created by a remote process and not shared
74 // Closes a shared memory handle.
77 // Creates and maps an anonymous shared memory segment of size size.
81 // Creates an anonymous shared memory segment of size size.
85 // Creates or opens a shared memory segment based on a name
124 void *memory() const { return memory_; } function in class:base::SharedMemory
    [all...]

Completed in 471 milliseconds

1 2 3 4 5 6 7 8 9