/plan9/sys/src/cmd/gs/src/ |
H A D | jinclude.h | 61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size)) argument 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) argument 67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size)) argument 68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size)) argument
|
H A D | gsgdata.c | 45 gs_glyph_data_substring(gs_glyph_data_t *pgd, uint offset, uint size) in gs_glyph_data_substring() 68 glyph_data_substring_permanent(gs_glyph_data_t *pgd, uint offset, uint size) in glyph_data_substring_permanent() 83 glyph_data_substring_by_font(gs_glyph_data_t *pgd, uint offset, uint size) in glyph_data_substring_by_font() 115 uint size, gs_font *font) in gs_glyph_data_from_string() 123 uint offset, uint size, gs_font *font) in gs_glyph_data_from_bytes()
|
H A D | zstring.c | 37 uint size; in zbytestring() local 55 uint size; in zstring() local 85 uint size = r_size(op); in zanchorsearch() local 110 uint size = r_size(op); in zsearch() local
|
H A D | idict.h | 237 #define dict_hash_mod_rem(hash, size) ((hash) % (size)) argument 238 #define dict_hash_mod_mask(hash, size) ((hash) & ((size) - 1)) argument 239 #define dict_hash_mod_small(hash, size) dict_hash_mod_rem(hash, size) argument 240 #define dict_hash_mod_inline_small(hash, size) dict_hash_mod_rem(hash, size) argument 241 #define dict_hash_mod_large(hash, size)\ argument 244 #define dict_hash_mod_inline_large(hash, size) dict_hash_mod_mask(hash, size) argument
|
H A D | sjpegc.c | 197 jpeg_alloc(j_common_ptr cinfo, size_t size, const char *info) in jpeg_alloc() 238 jpeg_get_small(j_common_ptr cinfo, size_t size) in jpeg_get_small() 244 jpeg_free_small(j_common_ptr cinfo, void *object, size_t size) in jpeg_free_small() 250 jpeg_get_large(j_common_ptr cinfo, size_t size) in jpeg_get_large() 256 jpeg_free_large(j_common_ptr cinfo, void FAR * object, size_t size) in jpeg_free_large()
|
H A D | gschar.c | 52 const char *str, uint size) in gs_show_n_init() 63 floatp ax, floatp ay, const char *str, uint size) in gs_ashow_n_init() 76 const char *str, uint size) in gs_widthshow_n_init() 89 const char *str, uint size) in gs_awidthshow_n_init() 101 gs_state * pgs, const char *str, uint size) in gs_kshow_n_init() 123 gs_state * pgs, const char *str, uint size) in gs_xyshow_n_init() 164 gs_state * pgs, const char *str, uint size) in gs_cshow_n_init() 175 const char *str, uint size) in gs_stringwidth_n_init() 187 const char *str, uint size, bool stroke_path) in gs_charpath_n_init() 199 const char *str, uint size, bool use_boxes) in gs_charboxpath_n_init()
|
H A D | igcref.c | 109 void /*obj_header_t */ *vptr, uint size, in refs_clear_marks() 180 refs_clear_reloc(obj_header_t *hdr, uint size) in refs_clear_reloc() 203 refs_set_reloc(obj_header_t * hdr, uint reloc, uint size) 375 refs_do_reloc(void /*obj_header_t */ *vptr, uint size, 445 uint size = r_size(pref); local 487 uint size = r_size(pref); local 642 refs_compact(const gs_memory_t *mem, obj_header_t * pre, obj_header_t * dpre, uint size)
|
H A D | gsparam2.c | 72 uint size; in gs_param_list_puts() local 183 sput_bytes(stream *dest, const byte *data, uint size) in sput_bytes() 212 uint size; in gs_param_list_gets() local 373 sget_bytes(stream *src, byte *data, uint size) in sget_bytes()
|
/plan9/sys/src/cmd/gs/jpeg/ |
H A D | jinclude.h | 61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size)) argument 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) argument 67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size)) argument 68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size)) argument
|
H A D | jutils.c | 100 #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size) argument 101 #define FMEMZERO(target,size) MEMZERO(target,size) argument 104 #define FMEMCOPY(dest,src,size) _fmemcpy((void FAR *)(dest), (const void FAR *)(src), (size_t)(size… argument 105 #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size)) argument
|
/plan9/sys/src/cmd/aquarela/ |
H A D | smballoc.c | 5 smbemallocz(ulong size, int clear) in smbemallocz() 14 smbemalloc(ulong size) in smbemalloc() 39 smberealloc(void **pp, ulong size) in smberealloc()
|
/plan9/sys/src/cmd/gs/libpng/ |
H A D | pngmem.c | 38 png_size_t size; in png_create_struct_2() local 115 png_malloc(png_structp png_ptr, png_uint_32 size) in png_malloc() 133 png_malloc_default(png_structp png_ptr, png_uint_32 size) in png_malloc_default() 338 png_size_t size; in png_create_struct_2() local 422 png_malloc(png_structp png_ptr, png_uint_32 size) in png_malloc() 440 png_malloc_default(png_structp png_ptr, png_uint_32 size) in png_malloc_default() 534 png_malloc_warn(png_structp png_ptr, png_uint_32 size) in png_malloc_warn() 550 png_size_t size; in png_memcpy_check() local 563 png_size_t size; in png_memset_check() local
|
/plan9/sys/src/9/pcboot/ |
H A D | memory.c | 30 ulong size; member 105 mapfree(RMap* rmap, ulong addr, ulong size) in mapfree() 151 mapalloc(RMap* rmap, ulong addr, int size, int align) in mapalloc() 225 int size; in umbexclude() local 500 umbmalloc(ulong addr, int size, int align) in umbmalloc() 511 umbfree(ulong addr, int size) in umbfree() 517 umbrwmalloc(ulong addr, int size, int align) in umbrwmalloc() 547 umbrwfree(ulong addr, int size) in umbrwfree() 559 upaalloc(int size, int align) in upaalloc() 572 upafree(ulong pa, int size) in upafree() [all …]
|
/plan9/sys/src/9/port/ |
H A D | allocb.c | 29 blocksize(ulong size) in blocksize() 74 _allocb(int size) in _allocb() 80 allocb(int size) in allocb() 104 iallocb(int size) in iallocb()
|
H A D | ucallocb.c | 24 _ucallocb(int size) in _ucallocb() 60 ucallocb(int size) in ucallocb() 78 uciallocb(int size) in uciallocb()
|
H A D | xalloc.c | 20 ulong size; member 27 ulong size; member 91 xspanalloc(ulong size, int align, ulong span) in xspanalloc() 117 xallocz(ulong size, int zero) in xallocz() 152 xalloc(ulong size) in xalloc() 203 xhole(ulong addr, ulong size) in xhole()
|
H A D | alloc.c | 169 smalloc(ulong size) in smalloc() 188 malloc(ulong size) in malloc() 205 mallocz(ulong size, int clr) in mallocz() 221 mallocalign(ulong size, ulong align, long offset, ulong span) in mallocalign() 244 realloc(void *v, ulong size) in realloc()
|
/plan9/sys/src/libventi/ |
H A D | mem.c | 20 vtmalloc(int size) in vtmalloc() 32 vtmallocz(int size) in vtmallocz() 41 vtrealloc(void *p, int size) in vtrealloc()
|
/plan9/sys/src/cmd/venti/srv/ |
H A D | zblock.c | 25 alloczblock(u32int size, int zeroed, uint blocksize) in alloczblock() 69 packet2zblock(Packet *p, u32int size) in packet2zblock() 86 zblock2packet(ZBlock *zb, u32int size) in zblock2packet()
|
/plan9/sys/src/9/pc/ |
H A D | memory.c | 33 ulong size; member 106 mapfree(RMap* rmap, ulong addr, ulong size) in mapfree() 152 mapalloc(RMap* rmap, ulong addr, int size, int align) in mapalloc() 226 int size; in umbexclude() local 845 umbmalloc(ulong addr, int size, int align) in umbmalloc() 856 umbfree(ulong addr, int size) in umbfree() 862 umbrwmalloc(ulong addr, int size, int align) in umbrwmalloc() 892 umbrwfree(ulong addr, int size) in umbrwfree() 904 upaalloc(int size, int align) in upaalloc() 917 upafree(ulong pa, int size) in upafree() [all …]
|
/plan9/sys/src/cmd/unix/drawterm/kern/ |
H A D | allocb.c | 20 _allocb(int size) in _allocb() 54 allocb(int size) in allocb() 73 iallocb(int size) in iallocb()
|
/plan9/sys/src/cmd/sam/ |
H A D | disk.c | 41 uint size; in ntosize() local 57 uint i, j, size; in disknewblock() local 93 int size, nsize; in diskwrite() local
|
/plan9/sys/src/cmd/gs/icclib/ |
H A D | icc.h | 241 unsigned long size; /* Allocated and used size of the array */ member 253 unsigned long size; /* Allocated and used size of the array */ member 265 unsigned long size; /* Allocated and used size of the array */ member 277 unsigned long size; /* Allocated and used size of the array */ member 289 unsigned long size; /* Allocated and used size of the array */ member 301 unsigned long size; /* Allocated and used size of the array */ member 313 unsigned long size; /* Allocated and used size of the array */ member 335 unsigned long size; /* Copy of forward table size */ member 348 unsigned long size; /* Allocated and used size of the array */ member 372 unsigned long size; /* Allocated and used size of the array (inc ascii null) */ member [all …]
|
/plan9/sys/src/cmd/acme/ |
H A D | disk.c | 52 uint size; in ntosize() local 68 uint i, j, size; in disknewblock() local 104 int size, nsize; in diskwrite() local
|
/plan9/sys/src/libbin/ |
H A D | bin.c | 30 mkbin(Bin *bin, ulong size) in mkbin() 48 binalloc(Bin **bin, ulong size, int zero) in binalloc() 79 bingrow(Bin **bin, void *op, ulong osize, ulong size, int zero) in bingrow()
|