Searched refs:img_width (Results 1 - 10 of 10) sorted by relevance

/external/eigen/demos/mandelbrot/
H A Dmandelbrot.cpp31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) argument
38 const int alignedWidth = (img_width/packetSize)*packetSize;
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
50 int pix = y * img_width;
105 for(int x = alignedWidth; x < img_width; x++, pix++)
117 int img_width = widget->width()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
H A Dmandelbrot.h31 template<typename Real> void render(int img_width, int img_height);
/external/chromium_org/third_party/libjpeg_turbo/simd/
H A Djsimd.h155 JPP((JDIMENSION img_width,
159 JPP((JDIMENSION img_width,
163 JPP((JDIMENSION img_width,
167 JPP((JDIMENSION img_width,
171 JPP((JDIMENSION img_width,
175 JPP((JDIMENSION img_width,
179 JPP((JDIMENSION img_width,
184 JPP((JDIMENSION img_width,
188 JPP((JDIMENSION img_width,
192 JPP((JDIMENSION img_width,
[all...]
/external/chromium_org/ui/gfx/
H A Dcolor_analysis.cc221 int img_width,
227 if (img_width > 0 && img_height > 0) {
238 int pixel_pos = sampler->GetSample(img_width, img_height) %
239 (img_width * img_height);
292 uint8_t* decoded_data_end = decoded_data + (img_width * img_height * 4);
359 return FindClosestColor(decoded_data, img_width, img_height, color);
366 int img_width = 0; local
376 &img_width,
379 img_width,
220 CalculateKMeanColorOfBuffer(uint8_t* decoded_data, int img_width, int img_height, const HSL& lower_bound, const HSL& upper_bound, KMeanImageSampler* sampler) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_blit.c258 static inline void calc_tex_coords(float img_width, float img_height, argument
263 buf[0] = x / img_width;
264 buf[1] = buf[0] + reg_width / img_width;
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_blit.c258 static inline void calc_tex_coords(float img_width, float img_height, argument
263 buf[0] = x / img_width;
264 buf[1] = buf[0] + reg_width / img_width;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_blit.c383 static inline void calc_tex_coords(float img_width, float img_height, argument
388 buf[0] = x / img_width;
389 buf[1] = buf[0] + reg_width / img_width;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_blit.c383 static inline void calc_tex_coords(float img_width, float img_height, argument
388 buf[0] = x / img_width;
389 buf[1] = buf[0] + reg_width / img_width;
/external/opencv/ml/src/
H A Dmlcnn.cpp229 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;
/external/chromium_org/chrome/browser/ssl/
H A Dssl_browser_tests.cc985 int img_width; local
989 &img_width));
993 EXPECT_LT(img_width, 100);

Completed in 6890 milliseconds