Searched refs:memory (Results 1 - 25 of 2200) 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...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_memory.c29 #include <core/memory.h>
35 nvkm_memory_tags_put(struct nvkm_memory *memory, struct nvkm_device *device, argument
44 kfree(memory->tags);
45 memory->tags = NULL;
53 nvkm_memory_tags_get(struct nvkm_memory *memory, struct nvkm_device *device, argument
61 if ((tags = memory->tags)) {
62 /* If comptags exist for the memory, but a different amount
89 * As memory can be mapped in multiple places, we still
99 *ptags = memory->tags = tags;
106 struct nvkm_memory *memory)
105 nvkm_memory_ctor(const struct nvkm_memory_func * func,struct nvkm_memory * memory) argument
115 struct nvkm_memory *memory = container_of(kref, typeof(*memory), kref); local in function:nvkm_memory_del
126 struct nvkm_memory *memory = *pmemory; local in function:nvkm_memory_unref
134 nvkm_memory_ref(struct nvkm_memory * memory) argument
147 struct nvkm_memory *memory; local in function:nvkm_memory_new
[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...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/
H A Dnouveau_nvkm_subdev_instmem_nv50.c32 #include <core/memory.h>
52 #define nv50_instobj(p) container_of((p), struct nv50_instobj, base.memory)
69 nv50_instobj_wr32_slow(struct nvkm_memory *memory, u64 offset, u32 data) argument
71 struct nv50_instobj *iobj = nv50_instobj(memory);
88 nv50_instobj_rd32_slow(struct nvkm_memory *memory, u64 offset) argument
90 struct nv50_instobj *iobj = nv50_instobj(memory);
115 nv50_instobj_wr32(struct nvkm_memory *memory, u64 offset, u32 data) argument
118 struct nv50_instobj *iobj = nv50_instobj(memory);
121 iowrite32_native(data, nv50_instobj(memory)->map + offset);
126 nv50_instobj_rd32(struct nvkm_memory *memory, u6 argument
147 struct nvkm_memory *memory = &iobj->base.memory; local in function:nv50_instobj_kmap
233 nv50_instobj_map(struct nvkm_memory * memory,u64 offset,struct nvkm_vmm * vmm,struct nvkm_vma * vma,void * argv,u32 argc) argument
241 nv50_instobj_release(struct nvkm_memory * memory) argument
266 nv50_instobj_acquire(struct nvkm_memory * memory) argument
310 nv50_instobj_boot(struct nvkm_memory * memory,struct nvkm_vmm * vmm) argument
330 nv50_instobj_size(struct nvkm_memory * memory) argument
336 nv50_instobj_addr(struct nvkm_memory * memory) argument
342 nv50_instobj_bar2(struct nvkm_memory * memory) argument
355 nv50_instobj_target(struct nvkm_memory * memory) argument
361 nv50_instobj_dtor(struct nvkm_memory * memory) argument
[all...]
H A Dnouveau_nvkm_subdev_instmem_base.c43 struct nvkm_memory *memory = &iobj->memory; local in function:nvkm_instobj_load
44 const u64 size = nvkm_memory_size(memory);
48 if (!(map = nvkm_kmap(memory))) {
50 nvkm_wo32(memory, i, iobj->suspend[i / 4]);
54 nvkm_done(memory);
63 struct nvkm_memory *memory = &iobj->memory; local in function:nvkm_instobj_save
64 const u64 size = nvkm_memory_size(memory);
72 if (!(map = nvkm_kmap(memory))) {
106 struct nvkm_memory *memory = NULL; local in function:nvkm_instobj_new
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/
H A Dnouveau_nvkm_engine_fifo_gk110.c33 #include <core/memory.h>
39 struct nvkm_memory *memory, u32 offset)
41 nvkm_wo32(memory, offset + 0, (cgrp->chan_nr << 26) | (128 << 18) |
43 nvkm_wo32(memory, offset + 4, 0x00000000);
38 gk110_fifo_runlist_cgrp(struct nvkm_fifo_cgrp * cgrp,struct nvkm_memory * memory,u32 offset) argument
/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...]
/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
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dexynos-mfc-reserved-memory.dtsi3 * Samsung's Exynos SoC MFC (Video Codec) reserved memory common definition.
9 reserved-memory {
31 memory-region = <&mfc_left>, <&mfc_right>;
H A Dhip04-d01.dts12 /* memory bus is 64-bit */
18 memory@0,10000000 {
19 device_type = "memory";
H A Ddra72-evm.dts10 memory@0 {
11 device_type = "memory";
15 reserved-memory {
20 ipu2_memory_region: ipu2-memory@95800000 {
27 dsp1_memory_region: dsp1-memory@99000000 {
34 ipu1_memory_region: ipu1-memory@9d000000 {
116 memory-region = <&ipu2_memory_region>;
121 memory-region = <&ipu1_memory_region>;
126 memory-region = <&dsp1_memory_region>;
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/
H A Dk3-j721e-som-p0.dtsi11 memory@80000000 {
12 device_type = "memory";
18 reserved_memory: reserved-memory {
29 mcu_r5fss0_core0_dma_memory_region: r5f-dma-memory@a0000000 {
35 mcu_r5fss0_core0_memory_region: r5f-memory@a0100000 {
41 mcu_r5fss0_core1_dma_memory_region: r5f-dma-memory@a1000000 {
47 mcu_r5fss0_core1_memory_region: r5f-memory@a1100000 {
53 main_r5fss0_core0_dma_memory_region: r5f-dma-memory@a2000000 {
59 main_r5fss0_core0_memory_region: r5f-memory@a2100000 {
65 main_r5fss0_core1_dma_memory_region: r5f-dma-memory
[all...]
/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 );
/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...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
H A Dnouveau_nvkm_subdev_fb_ram.c29 #define nvkm_vram(p) container_of((p), struct nvkm_vram, memory)
32 #include <core/memory.h>
38 struct nvkm_memory memory; member in struct:nvkm_vram
45 nvkm_vram_map(struct nvkm_memory *memory, u64 offset, struct nvkm_vmm *vmm, argument
48 struct nvkm_vram *vram = nvkm_vram(memory);
50 .memory = &vram->memory,
59 nvkm_vram_size(struct nvkm_memory *memory) argument
61 return (u64)nvkm_mm_size(nvkm_vram(memory)->mn) << NVKM_RAM_MM_SHIFT;
65 nvkm_vram_addr(struct nvkm_memory *memory) argument
74 nvkm_vram_page(struct nvkm_memory * memory) argument
80 nvkm_vram_target(struct nvkm_memory * memory) argument
86 nvkm_vram_dtor(struct nvkm_memory * memory) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
H A Dnouveau_nvkm_subdev_mmu_mem.c27 #define nvkm_mem(p) container_of((p), struct nvkm_mem, memory)
30 #include <core/memory.h>
38 struct nvkm_memory memory; member in struct:nvkm_mem
57 nvkm_mem_target(struct nvkm_memory *memory) argument
59 return nvkm_mem(memory)->target;
63 nvkm_mem_page(struct nvkm_memory *memory) argument
69 nvkm_mem_addr(struct nvkm_memory *memory) argument
71 struct nvkm_mem *mem = nvkm_mem(memory);
78 nvkm_mem_size(struct nvkm_memory *memory) argument
80 return nvkm_mem(memory)
84 nvkm_mem_map_dma(struct nvkm_memory * memory,u64 offset,struct nvkm_vmm * vmm,struct nvkm_vma * vma,void * argv,u32 argc) argument
97 nvkm_mem_dtor(struct nvkm_memory * memory) argument
140 nvkm_mem_map_sgl(struct nvkm_memory * memory,u64 offset,struct nvkm_vmm * vmm,struct nvkm_vma * vma,void * argv,u32 argc) argument
165 nvkm_mem_map_host(struct nvkm_memory * memory,bus_dma_tag_t * tagp,void ** pmap,bus_size_t * sizep) argument
335 struct nvkm_memory *memory = NULL; local in function:nvkm_mem_new_type
[all...]
H A Dnouveau_nvkm_subdev_mmu_umem.c31 #include <core/memory.h>
43 struct nvkm_memory *memory = NULL; local in function:nvkm_umem_search
53 memory = nvkm_memory_ref(umem->memory);
62 memory = nvkm_memory_ref(umem->memory);
65 return memory ? memory : ERR_PTR(-ENOENT);
115 int ret = nvkm_mem_map_host(umem->memory, &umem->dmat,
118 int ret = nvkm_mem_map_host(umem->memory,
[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

Completed in 41 milliseconds

1234567891011>>