Searched refs:img_width (Results 1 – 7 of 7) sorted by relevance
/external/eigen/demos/mandelbrot/ |
D | mandelbrot.cpp | 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) in render() argument 38 const int alignedWidth = (img_width/packetSize)*packetSize; in render() 41 const double yradius = xradius * img_height / img_width; in render() 45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height); in render() 50 int pix = y * img_width; in render() 105 for(int x = alignedWidth; x < img_width; x++, pix++) in render() 117 int img_width = widget->width()/widget->draft; in run() local 122 render<float>(img_width, img_height); in run() 124 render<double>(img_width, img_height); in run()
|
D | mandelbrot.h | 31 template<typename Real> void render(int img_width, int img_height);
|
/external/llvm/test/Transforms/GVN/ |
D | 2007-07-31-RedundantPhi.ll | 3 @img_width = external global i16 ; <i16*> [#uses=2] 7 store i16 0, i16* @img_width, align 2 20 %tmp701 = load i16, i16* @img_width, align 2 ; <i16> [#uses=0]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_blit.c | 258 static inline void calc_tex_coords(float img_width, float img_height, in calc_tex_coords() argument 263 buf[0] = x / img_width; in calc_tex_coords() 264 buf[1] = buf[0] + reg_width / img_width; in calc_tex_coords()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_blit.c | 383 static inline void calc_tex_coords(float img_width, float img_height, in calc_tex_coords() argument 388 buf[0] = x / img_width; in calc_tex_coords() 389 buf[1] = buf[0] + reg_width / img_width; in calc_tex_coords()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_API.dtd | 50 img_width NMTOKEN #IMPLIED attribute 102 img_width / img_height / img_depth / img_extent - name of parameters
|
/external/opencv/ml/src/ |
D | mlcnn.cpp | 229 const int img_width = first_layer->input_width; 230 const int img_size = img_width*img_height; 242 CV_CALL(X[0] = cvCreateMat( img_height*img_width,1,CV_32FC1 )); 329 int img_height, img_width, img_size; 342 img_width = first_layer->input_width; 343 img_size = img_height*img_width;
|