Home | History | Annotate | Download | only in db_vlvm

Lines Matching defs:DB_API

33         #define DB_API __declspec(dllexport)
36 #define DB_API __declspec(dllimport)
38 #define DB_API
42 #define DB_API
409 DB_API float** db_SetupImageReferences_f(float *im,int w,int h);
418 DB_API float** db_AllocImage_f(int w,int h,int over_allocation=256);
424 DB_API void db_FreeImage_f(float **img,int h);
431 DB_API unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h);
440 DB_API unsigned char** db_AllocImage_u(int w,int h,int over_allocation=256);
446 DB_API void db_FreeImage_u(unsigned char **img,int h);
457 DB_API void db_CopyImage_u(unsigned char **d,const unsigned char * const *s,int w,int h,int over_allocation=0);
459 DB_API inline unsigned char db_BilinearInterpolation(double y, double x, const unsigned char * const * v)
552 DB_API void db_WarpImageLut_u(const unsigned char * const * src,unsigned char ** dst, int w, int h,
555 DB_API void db_PrintDoubleVector(double *a,long size);
556 DB_API void db_PrintDoubleMatrix(double *a,long rows,long cols);