HomeSort by relevance Sort by last modified time
    Searched refs:img_width (Results 1 - 8 of 8) 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);
mandelbrot.h 31 template<typename Real> void render(int img_width, int img_height);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_blit.c 258 static inline void calc_tex_coords(float img_width, float img_height,
263 buf[0] = x / img_width;
264 buf[1] = buf[0] + reg_width / img_width;
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_blit.c 383 static inline void calc_tex_coords(float img_width, float img_height,
388 buf[0] = x / img_width;
389 buf[1] = buf[0] + reg_width / img_width;
  /packages/apps/Camera2/jni/
jpegutil.h 144 int Compress(int img_width, int img_height, RowIterator<16>& y_row_generator,
jpegutil.cpp 140 int jpegutil::Compress(int img_width, int img_height,
240 cinfo.image_width = img_width;
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
VrView.java 393 int img_width = getWidth() / sample; local
395 state.createOutputAllocation(mSurface, img_width, img_height);
424 addLine("vr(" + img_width + "," + img_height + "): " + (time - start) / 1E6f + " ms");
  /external/opencv/ml/src/
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;
    [all...]

Completed in 6625 milliseconds