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

1234567891011>>

/xsrc/external/mit/freetype/dist/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 ::
62 * A pointer to the memory object.
71 ft_alloc( FT_Memory memory, argument
74 FT_UNUSED( memory );
86 * The memory reallocation function.
89 * memory ::
90 * A pointer to the memory object.
93 * The current size of the allocated memory bloc
105 ft_realloc(FT_Memory memory,long cur_size,long new_size,void * block) argument
133 ft_free(FT_Memory memory,void * block) argument
302 FT_Memory memory; local in function:FT_New_Memory
324 FT_Done_Memory(FT_Memory memory) argument
[all...]
H A Dftutil.c5 * FreeType utility file for memory and list management (body).
32 #define FT_COMPONENT memory
49 ft_mem_alloc( FT_Memory memory, argument
54 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
65 ft_mem_qalloc( FT_Memory memory, argument
75 block = memory->alloc( memory, size );
91 ft_mem_realloc( FT_Memory memory, argument
101 block = ft_mem_qrealloc( memory, item_size,
113 ft_mem_qrealloc( FT_Memory memory, argument
169 ft_mem_free(FT_Memory memory,const void * P) argument
178 ft_mem_dup(FT_Memory memory,const void * address,FT_ULong size,FT_Error * p_error) argument
196 ft_mem_strdup(FT_Memory memory,const char * str,FT_Error * p_error) argument
412 FT_List_Finalize(FT_List list,FT_List_Destructor destroy,FT_Memory memory,void * user) argument
[all...]
H A Dftinit.c202 FT_Memory memory; local in function:FT_Init_FreeType
210 memory = FT_New_Memory();
211 if ( !memory )
213 FT_ERROR(( "FT_Init_FreeType: cannot find memory manager\n" ));
220 error = FT_New_Library( memory, alibrary );
222 FT_Done_Memory( memory );
237 FT_Memory memory; local in function:FT_Done_FreeType
243 memory = library->memory;
248 /* discard memory manage
[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 * frees, at the price of a large memory footprint during execution.
133 FT_Memory memory; member in struct:FT_MemTableRec_
229 FT_Memory memory = table->memory; local in function:ft_mem_table_alloc
233 memory
245 FT_Memory memory = table->memory; local in function:ft_mem_table_free
306 ft_mem_table_new(FT_Memory memory) argument
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
825 ft_mem_debug_init(FT_Memory memory) argument
888 ft_mem_debug_done(FT_Memory memory) argument
923 FT_DumpMemory(FT_Memory memory) argument
[all...]
H A Dftgxval.c77 FT_Memory memory; local in function:FT_TrueTypeGX_Free
83 memory = FT_FACE_MEMORY( face );
128 FT_Memory memory; local in function:FT_ClassicKern_Free
134 memory = FT_FACE_MEMORY( face );
H A Dftgloadr.c69 FT_GlyphLoader_New( FT_Memory memory, argument
78 loader->memory = memory;
107 FT_Memory memory = loader->memory; local in function:FT_GlyphLoader_Reset
132 FT_Memory memory = loader->memory; local in function:FT_GlyphLoader_Done
169 FT_Memory memory = loader->memory; local in function:FT_GlyphLoader_CreateExtra
209 FT_Memory memory local in function:FT_GlyphLoader_CheckPoints
296 FT_Memory memory = loader->memory; local in function:FT_GlyphLoader_CheckSubGlyphs
[all...]
/xsrc/external/mit/freetype/dist/builds/vms/
H A Dftsystem.c28 /* memory-mapping includes and definitions */
85 /* The memory allocation function. */
88 /* memory :: A pointer to the memory object. */
96 ft_alloc( FT_Memory memory, argument
99 FT_UNUSED( memory );
111 /* The memory reallocation function. */
114 /* memory :: A pointer to the memory object. */
116 /* cur_size :: The current size of the allocated memory bloc
126 ft_realloc(FT_Memory memory,long cur_size,long new_size,void * block) argument
152 ft_free(FT_Memory memory,void * block) argument
297 FT_Memory memory; local in function:FT_New_Memory
319 FT_Done_Memory(FT_Memory memory) argument
[all...]
/xsrc/external/mit/freetype/dist/builds/amiga/src/base/
H A Dftsystem.c21 /* low-level, i.e. memory management, i/o access as well as thread */
89 APTR memory )
91 ULONG *realmem = (ULONG *)memory - 1;
130 /* The memory allocation function. */
133 /* memory :: A pointer to the memory object. */
141 ft_alloc( FT_Memory memory, argument
145 return AllocVecPooled( memory->user, size );
147 return Alloc_VecPooled( memory->user, size );
158 /* The memory reallocatio
88 Free_VecPooled(APTR poolHeader,APTR memory) argument
173 ft_realloc(FT_Memory memory,long cur_size,long new_size,void * block) argument
213 ft_free(FT_Memory memory,void * block) argument
477 FT_Memory memory; local in function:FT_New_Memory
515 FT_Done_Memory(FT_Memory memory) argument
[all...]
/xsrc/external/mit/freetype/dist/include/freetype/
H A Dftsystem.h37 * How FreeType manages memory and i/o.
40 * This section contains various definitions related to memory management
42 * use a custom memory manager or you own i/o streams.
60 * A handle to a given memory manager object, defined with an
73 * A function used to allocate `size` bytes from `memory`.
76 * memory ::
77 * A handle to the source memory manager.
83 * Address of new memory block. 0~in case of failure.
87 (*FT_Alloc_Func)( FT_Memory memory,
97 * A function used to release a given block of memory
338 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
H A Dftgzip.h105 * memory ::
106 * A FreeType memory handle.
137 FT_Gzip_Uncompress( FT_Memory memory,
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_cb_memoryobjects.h36 struct pipe_memory_object *memory; member in struct:st_memory_object
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_cb_memoryobjects.h36 struct pipe_memory_object *memory; member in struct:st_memory_object
/xsrc/external/mit/freetype/dist/builds/unix/
H A Dftsystem.c28 /* memory-mapping includes and definitions */
86 /* The memory allocation function. */
89 /* memory :: A pointer to the memory object. */
97 ft_alloc( FT_Memory memory, argument
100 FT_UNUSED( memory );
112 /* The memory reallocation function. */
115 /* memory :: A pointer to the memory object. */
117 /* cur_size :: The current size of the allocated memory bloc
127 ft_realloc(FT_Memory memory,long cur_size,long new_size,void * block) argument
153 ft_free(FT_Memory memory,void * block) argument
389 FT_Memory memory; local in function:FT_New_Memory
411 FT_Done_Memory(FT_Memory memory) argument
[all...]
/xsrc/external/mit/freetype/dist/include/freetype/internal/
H A Dfthash.h96 FT_Memory memory );
100 FT_Memory memory );
104 FT_Memory memory );
112 FT_Memory memory );
118 FT_Memory memory );
H A Dftmemory.h5 * The FreeType memory management macros (specification).
124 /* the allocated or reallocated memory with zero bytes. */
127 ft_mem_alloc( FT_Memory memory,
132 ft_mem_qalloc( FT_Memory memory,
137 ft_mem_realloc( FT_Memory memory,
145 ft_mem_qrealloc( FT_Memory memory,
153 ft_mem_free( FT_Memory memory,
158 /* the allocated or reallocated memory with zero bytes. */
161 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
167 FT_DEBUG_INNER( ft_mem_free( memory, (pt
[all...]
/xsrc/external/mit/freetype/dist/src/pshinter/
H A Dpshrec.c50 FT_Memory memory )
62 FT_Memory memory )
82 FT_Memory memory,
95 error = ps_hint_table_ensure( table, count, memory );
124 FT_Memory memory )
137 FT_Memory memory )
186 FT_Memory memory )
194 error = ps_mask_ensure( mask, idx + 1, memory );
212 FT_Memory memory )
219 ps_mask_done( mask, memory );
49 ps_hint_table_done(PS_Hint_Table table,FT_Memory memory) argument
60 ps_hint_table_ensure(PS_Hint_Table table,FT_UInt count,FT_Memory memory) argument
81 ps_hint_table_alloc(PS_Hint_Table table,FT_Memory memory,PS_Hint * ahint) argument
123 ps_mask_done(PS_Mask mask,FT_Memory memory) argument
135 ps_mask_ensure(PS_Mask mask,FT_UInt count,FT_Memory memory) argument
184 ps_mask_set_bit(PS_Mask mask,FT_UInt idx,FT_Memory memory) argument
211 ps_mask_table_done(PS_Mask_Table table,FT_Memory memory) argument
229 ps_mask_table_ensure(PS_Mask_Table table,FT_UInt count,FT_Memory memory) argument
250 ps_mask_table_alloc(PS_Mask_Table table,FT_Memory memory,PS_Mask * amask) argument
282 ps_mask_table_last(PS_Mask_Table table,FT_Memory memory,PS_Mask * amask) argument
309 ps_mask_table_set_bits(PS_Mask_Table table,const FT_Byte * source,FT_UInt bit_pos,FT_UInt bit_count,FT_Memory memory) argument
402 ps_mask_table_merge(PS_Mask_Table table,FT_UInt index1,FT_UInt index2,FT_Memory memory) argument
499 ps_mask_table_merge_all(PS_Mask_Table table,FT_Memory memory) argument
543 ps_dimension_done(PS_Dimension dimension,FT_Memory memory) argument
608 ps_dimension_reset_mask(PS_Dimension dim,FT_UInt end_point,FT_Memory memory) argument
625 ps_dimension_set_mask_bits(PS_Dimension dim,const FT_Byte * source,FT_UInt source_pos,FT_UInt source_bits,FT_UInt end_point,FT_Memory memory) argument
651 ps_dimension_add_t1stem(PS_Dimension dim,FT_Int pos,FT_Int len,FT_Memory memory,FT_Int * aindex) argument
722 ps_dimension_add_counter(PS_Dimension dim,FT_Int hint1,FT_Int hint2,FT_Int hint3,FT_Memory memory) argument
780 ps_dimension_end(PS_Dimension dim,FT_UInt end_point,FT_Memory memory) argument
805 FT_Memory memory = hints->memory; local in function:ps_hints_done
817 ps_hints_init(PS_Hints hints,FT_Memory memory) argument
866 FT_Memory memory = hints->memory; local in function:ps_hints_stem
898 FT_Memory memory = hints->memory; local in function:ps_hints_t1stem3
959 FT_Memory memory = hints->memory; local in function:ps_hints_t1reset
1001 FT_Memory memory = hints->memory; local in function:ps_hints_t2mask
1046 FT_Memory memory = hints->memory; local in function:ps_hints_t2counter
1091 FT_Memory memory = hints->memory; local in function:ps_hints_close
[all...]
/xsrc/external/mit/fontconfig/dist/src/
H A Dftglue.c35 ftglue_qalloc( FT_Memory memory, argument
44 block = memory->alloc( memory, size );
54 #define QALLOC(ptr,size) ( (ptr) = ftglue_qalloc( memory, (size), &error ), error != 0 )
59 ftglue_free( memory, _ptr ); \
66 ftglue_free( FT_Memory memory, argument
70 memory->free( memory, block );
111 /* allocate the frame in memory */
112 FT_Memory memory local in function:ftglue_stream_frame_enter
157 FT_Memory memory = stream->memory; local in function:ftglue_stream_frame_exit
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
H A Dtgsi_dump.gdb5 dump memory tgsi_dump.bin $tokens $tokens_end
/xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/
H A Dtgsi_dump.gdb5 dump memory tgsi_dump.bin $tokens $tokens_end
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dexternalobjects.h41 _mesa_lookup_memory_object(struct gl_context *ctx, GLuint memory) argument
43 if (!memory)
47 _mesa_HashLookup(ctx->Shared->MemoryObjects, memory);
51 _mesa_lookup_memory_object_locked(struct gl_context *ctx, GLuint memory) argument
53 if (!memory)
57 _mesa_HashLookupLocked(ctx->Shared->MemoryObjects, memory);
124 GLuint memory,
134 GLuint memory,
144 GLuint memory,
155 GLuint memory,
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dexternalobjects.h41 _mesa_lookup_memory_object(struct gl_context *ctx, GLuint memory) argument
43 if (!memory)
47 _mesa_HashLookup(ctx->Shared->MemoryObjects, memory);
51 _mesa_lookup_memory_object_locked(struct gl_context *ctx, GLuint memory) argument
53 if (!memory)
57 _mesa_HashLookupLocked(ctx->Shared->MemoryObjects, memory);
124 GLuint memory,
134 GLuint memory,
144 GLuint memory,
155 GLuint memory,
[all...]
/xsrc/external/mit/freetype/dist/src/sfnt/
H A Dpngshim.h37 FT_Memory memory,
/xsrc/external/mit/libpciaccess/dist/src/
H A Dcommon_map.c37 * Platform independent memory map routines.
45 * \param dev Device whose memory region is to be mapped.
57 return (munmap(map->memory, map->size) == -1) ? errno : 0;
/xsrc/external/mit/freetype/dist/src/psaux/
H A Dpsarrst.c57 FT_Memory memory,
64 arrstack->memory = memory;
78 FT_Memory memory = arrstack->memory; /* for FT_FREE */ local in function:cf2_arrstack_finalize
93 /* return false on memory error */
102 FT_Memory memory = arrstack->memory; /* for FT_REALLOC */ local in function:cf2_arrstack_setNumElements
209 /* return false on memory error */
56 cf2_arrstack_init(CF2_ArrStack arrstack,FT_Memory memory,FT_Error * error,size_t sizeItem) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
H A DMakefile.sources163 rasterizer/memory/ClearTile.cpp \
164 rasterizer/memory/Convert.h \
165 rasterizer/memory/LoadTile.cpp \
166 rasterizer/memory/LoadTile.h \
167 rasterizer/memory/LoadTile_Linear.cpp \
168 rasterizer/memory/LoadTile_TileX.cpp \
169 rasterizer/memory/LoadTile_TileY.cpp \
170 rasterizer/memory/StoreTile.cpp \
171 rasterizer/memory/StoreTile.h \
172 rasterizer/memory/StoreTile_Linear
[all...]

Completed in 25 milliseconds

1234567891011>>