HomeSort by relevance Sort by last modified time
    Searched defs:img_width (Results 1 - 3 of 3) sorted by null

  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
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);
  /external/chromium_org/chrome/browser/ssl/
ssl_browser_tests.cc 985 int img_width; local
    [all...]
  /external/chromium_org/ui/gfx/
color_analysis.cc 221 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,

Completed in 346 milliseconds