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

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_layout.c 180 GLuint img_height; local
185 img_height = ALIGN(height, mt->align_h);
187 img_height /= mt->align_h;
192 mt->total_height = MAX2(mt->total_height, y + img_height);
200 y += img_height;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_layout.c 180 GLuint img_height; local
185 img_height = ALIGN(height, mt->align_h);
187 img_height /= mt->align_h;
192 mt->total_height = MAX2(mt->total_height, y + img_height);
200 y += img_height;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_tex_layout.c 204 GLuint img_height; local
216 img_height = ALIGN(height, 4) / 4;
218 img_height = ALIGN(height, 2);
220 mt->total_height += img_height;
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_tex_layout.c 204 GLuint img_height; local
216 img_height = ALIGN(height, 4) / 4;
218 img_height = ALIGN(height, 2);
220 mt->total_height += img_height;
  /external/chromium_org/cc/layers/
nine_patch_layer_impl.cc 124 float img_height = image_bounds_.height(); local
132 img_height);
138 img_height);
140 img_height - bottom_height,
144 img_height);
146 img_height - bottom_height,
150 img_height);
154 (top_height) / img_height);
158 (img_height - top_height - bottom_height) / img_height);
    [all...]
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
48 for(int y = id; y < img_height; y += threadcount)
118 int img_height = widget->height()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
  /external/chromium_org/ui/gfx/
color_analysis.cc 216 int img_height,
221 if (img_width > 0 && img_height > 0) {
232 int pixel_pos = sampler->GetSample(img_width, img_height) %
233 (img_width * img_height);
286 uint8_t* decoded_data_end = decoded_data + (img_width * img_height * 4);
355 return FindClosestColor(decoded_data, img_width, img_height, color);
363 int img_height = 0; local
374 &img_height)) {
377 img_height,

Completed in 2087 milliseconds