Home
last modified time | relevance | path

Searched refs:IM_ARRAY (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/vips/vips-8.12.0/libvips/deprecated/
H A Darith_dispatch.c803 xes->vec = IM_ARRAY( NULL, n, int ); in maxpos_vec_vec()
805 yes->vec = IM_ARRAY( NULL, n, int ); in maxpos_vec_vec()
807 maxima->vec = IM_ARRAY( NULL, n, double ); in maxpos_vec_vec()
837 xes->vec = IM_ARRAY( NULL, n, int ); in minpos_vec_vec()
839 yes->vec = IM_ARRAY( NULL, n, int ); in minpos_vec_vec()
841 minima->vec = IM_ARRAY( NULL, n, double ); in minpos_vec_vec()
1168 IMAGE **ins= IM_ARRAY( out, ins_vec-> n + 1, IMAGE* ); in linreg_vec()
H A Dinplace_dispatch.c56 !(zeros = IM_ARRAY( im, n, double )) ) in im__vector_to_ink()
78 if( !(vec = IM_ARRAY( NULL, im->Bands, double )) ) in im__ink_to_vector()
390 if( !(ink = IM_ARRAY( image, IM_IMAGE_SIZEOF_PEL( image ), VipsPel )) || in read_point_vec()
H A Dim_linreg.c262 x_vals-> xs= IM_ARRAY( im, 2 * n, double ); in x_anal()
296 …seq-> ptrs= IM_ARRAY( out, x_vals-> n, TYPE* ); \
297 …seq-> skips= IM_ARRAY( out, x_vals-> n, size_t ); \
H A Dim_mask2vips.c88 if( !(buf = IM_ARRAY( out, in->xsize, double )) ) in im_mask2vips()
H A Dim_align_bands.c66 IMAGE **bands= IM_ARRAY( out, 2 * in-> Bands, IMAGE* ); in im_align_bands()
H A Dim_matinv.c136 row_scale= IM_ARRAY( NULL, N, double ); in im_lu_decomp()
444 double *vec= IM_ARRAY( NULL, N, double ); in mat_inv_lu()
H A Dim_measure.c168 if( !(sel = IM_ARRAY( im, nsel, int )) ) in internal_im_measure_area()
H A Dim_resize_linear.c148 if( !(opline = IM_ARRAY( out, ols, PEL )) ) in im_resize_linear()
H A Drw_mask.c231 if( !(out->coeff = IM_ARRAY( NULL, size, int )) ) { in im_create_imask()
314 if( !(out->coeff = IM_ARRAY( NULL, size, double )) ) { in im_create_dmask()
H A Dim_stretch3.c109 seq->buf = IM_ARRAY( out, 4*seq->lsk, unsigned short ); in stretch_start()
/dports/graphics/nip2/nip2-8.7.1/src/
H A Dplot.c174 plot->xcolumn = IM_ARRAY( NULL, columns, double * ); in plot_unpack()
175 plot->ycolumn = IM_ARRAY( NULL, columns, double * ); in plot_unpack()
190 plot->xcolumn[c] = IM_ARRAY( NULL, rows, double ); in plot_unpack()
191 plot->ycolumn[c] = IM_ARRAY( NULL, rows, double ); in plot_unpack()
H A Dplotstatus.c209 IM_ARRAY( NULL, columns, GtkWidget * )) ) in plotstatus_refresh()
H A Dcache.c945 if( !(argv = IM_ARRAY( NULL, argc + 1, char * )) ) in cache_update_hist()
H A Dcall.c1067 if( !(vi->vargv = IM_ARRAY( NULL, vi->fn->argc + 1, im_object )) || in call_new()
/dports/graphics/vips/vips-8.12.0/libvips/include/vips/
H A Ddeprecated.h138 #define ARRAY(IM,N,T) IM_ARRAY(IM,N,T)
H A Dvips7compat.h403 #define IM_ARRAY( IM, N, T ) ((T *) im_malloc( (IM), (N) * sizeof( T ))) macro