/external/libjpeg-turbo/simd/ |
D | jsimd.h | 30 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 33 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 36 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 39 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 42 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 45 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 48 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 53 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 56 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, 59 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, [all …]
|
D | jcsample-mmx.asm | 35 %define img_width(b) (b)+8 ; JDIMENSION image_width 58 mov edx, JDIMENSION [img_width(ebp)] 177 %define img_width(b) (b)+8 ; JDIMENSION image_width 200 mov edx, JDIMENSION [img_width(ebp)]
|
D | jcsample-sse2.asm | 35 %define img_width(b) (b)+8 ; JDIMENSION image_width 58 mov edx, JDIMENSION [img_width(ebp)] 190 %define img_width(b) (b)+8 ; JDIMENSION image_width 213 mov edx, JDIMENSION [img_width(ebp)]
|
D | jcgryext-mmx.asm | 27 ; jsimd_rgb_gray_convert_mmx (JDIMENSION img_width, 32 %define img_width(b) (b)+8 ; JDIMENSION img_width 64 mov ecx, JDIMENSION [img_width(eax)] ; num_cols
|
D | jcgryext-sse2.asm | 24 ; jsimd_rgb_gray_convert_sse2 (JDIMENSION img_width, 29 %define img_width(b) (b)+8 ; JDIMENSION img_width 62 mov ecx, JDIMENSION [img_width(eax)]
|
D | jccolext-mmx.asm | 26 ; jsimd_rgb_ycc_convert_mmx (JDIMENSION img_width, 31 %define img_width(b) (b)+8 ; JDIMENSION img_width 63 mov ecx, JDIMENSION [img_width(eax)] ; num_cols
|
D | jccolext-sse2.asm | 23 ; jsimd_rgb_ycc_convert_sse2 (JDIMENSION img_width, 28 %define img_width(b) (b)+8 ; JDIMENSION img_width 61 mov ecx, JDIMENSION [img_width(eax)]
|
D | jcgryext-sse2-64.asm | 24 ; jsimd_rgb_gray_convert_sse2 (JDIMENSION img_width, 29 ; r10 = JDIMENSION img_width
|
D | jccolext-sse2-64.asm | 24 ; jsimd_rgb_ycc_convert_sse2 (JDIMENSION img_width, 29 ; r10 = JDIMENSION img_width
|
/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/opencv3/samples/python2/ |
D | kalman.py | 21 img_width = 500 variable 40 return (np.around(img_width/2 + img_width/3*cos(angle), 0).astype(int), 41 np.around(img_height/2 - img_width/3*sin(angle), 1).astype(int)) 67 img = np.zeros((img_height, img_width, 3), np.uint8)
|
/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/opencv3/modules/features2d/src/kaze/ |
D | KAZEConfig.h | 27 , img_width(0) in KAZEOptions() 43 int img_width; member
|
D | AKAZEConfig.h | 20 , img_width(0) in AKAZEOptions() 43 int img_width; ///< Width of the input image member
|
D | KAZEFeatures.cpp | 61 aux.Lx = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 62 aux.Ly = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 63 aux.Lxx = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 64 aux.Lxy = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 65 aux.Lyy = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 66 aux.Lt = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 67 aux.Lsmooth = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 68 aux.Ldet = Mat::zeros(options_.img_height, options_.img_width, CV_32F); in Allocate_Memory_Evolution() 167 for (int jx = 0; jx < options_.img_width; jx++) in Compute_Detector_Response() 253 for (int jx = 1; jx < options_.img_width - 1; jx++) in operator ()() [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | lsd.cpp | 241 int img_width; member in cv::LineSegmentDetectorImpl 466 LOG_NT = 5 * (log10(double(img_width)) + log10(double(img_height))) / 2 + log10(11.0); in flsd() 472 std::vector<RegionPoint> reg(img_width * img_height); in flsd() 478 unsigned int adx = list[i].p.x + list[i].p.y * img_width; in flsd() 548 img_width = scaled_image.cols; in ll_angle() 553 angles.col(img_width - 1).setTo(NOTDEF); in ll_angle() 563 for(int addr = y * img_width, addr_end = addr + img_width - 1; addr < addr_end; ++addr) in ll_angle() 565 double DA = scaled_image_data[addr + img_width + 1] - scaled_image_data[addr]; in ll_angle() 566 double BC = scaled_image_data[addr + 1] - scaled_image_data[addr + img_width]; in ll_angle() 587 list = std::vector<coorlist>(img_width * img_height); in ll_angle() [all …]
|
/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/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | image_util_numpy_impl.py | 146 img_height, img_width = image.shape[:2] 148 (left + width) > img_width or
|
/external/opencv3/modules/features2d/src/ |
D | kaze.cpp | 121 options.img_width = img.cols; in detectAndCompute()
|
D | akaze.cpp | 188 options.img_width = img.cols; in detectAndCompute()
|
/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;
|
/external/libvncserver/webclients/novnc/include/ |
D | display.js | 150 var img_width = canvas.width < vp.w ? canvas.width : vp.w; 152 saveImg = this._drawCtx.getImageData(0, 0, img_width, img_height);
|