HomeSort by relevance Sort by last modified time
    Searched refs:aperture_size (Results 1 - 18 of 18) sorted by null

  /external/opencv/cv/src/
cvcorner.cpp 204 int aperture_size, int op_type, double k=0. )
219 int aperture_size0 = aperture_size;
235 if( (aperture_size < 3 && aperture_size != CV_SCHARR) || !(aperture_size & 1) )
245 aperture_size = aperture_size == CV_SCHARR ? 3 : aperture_size;
246 el_size = cvSize( aperture_size, aperture_size );
    [all...]
cvcanny.cpp 49 double low_thresh, double high_thresh, int aperture_size )
62 int flags = aperture_size;
86 aperture_size &= INT_MAX;
87 if( (aperture_size & 1) == 0 || aperture_size < 3 || aperture_size > 7 )
94 cvSobel( src, dx, 1, 0, aperture_size );
95 cvSobel( src, dy, 0, 1, aperture_size );
cvmotempl.cpp 162 int aperture_size )
178 float gradient_epsilon = 1e-4f * aperture_size * aperture_size;
188 if( aperture_size < 3 || aperture_size > 7 || (aperture_size & 1) == 0 )
189 CV_ERROR( CV_StsOutOfRange, "aperture_size must be 3, 5 or 7" );
217 CV_CALL( cvSobel( mhi, dX_min, 1, 0, aperture_size ));
218 CV_CALL( cvSobel( mhi, dY_max, 0, 1, aperture_size ));
249 CV_CALL( el = cvCreateStructuringElementEx( aperture_size, aperture_size
    [all...]
cvderiv.cpp 177 cvSobel( const void* srcarr, void* dstarr, int dx, int dy, int aperture_size )
206 if( ((aperture_size == CV_SCHARR || aperture_size == 3 || aperture_size == 5) &&
219 if( aperture_size == CV_SCHARR )
294 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55;
339 aperture_size, origin ? CvSepFilter::FLIP_KERNEL : 0));
    [all...]
cvfilter.cpp     [all...]
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_winsys.c 72 idws->base.aperture_size = i915_drm_aperture_size;
  /external/mesa3d/src/gallium/drivers/i915/
i915_winsys.h 254 int (*aperture_size)(struct i915_winsys *iws); member in struct:i915_winsys
i915_screen.c 369 const int gpu_mappable_megabytes = is->iws->aperture_size(is->iws) * 3 / 4;
  /external/opencv/cv/include/
cv.h 152 (aperture_size = 1,3,5,7) or Scharr (aperture_size = -1) operator.
156 int aperture_size CV_DEFAULT(3));
160 int aperture_size CV_DEFAULT(3) );
536 int aperture_size CV_DEFAULT(3));
    [all...]
cv.hpp 181 int dx, int dy, int aperture_size, int flags=0 );
  /external/libdrm/include/drm/
drm.h 567 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
drm.h 559 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /bionic/libc/kernel/uapi/drm/
drm.h 321 unsigned long aperture_size; member in struct:drm_agp_info
  /external/kernel-headers/original/uapi/drm/
drm.h 573 unsigned long aperture_size; /* bytes */ member in struct:drm_agp_info
  /external/valgrind/include/vki/
vki-linux-drm.h 308 unsigned long aperture_size; /* bytes */ member in struct:vki_drm_agp_info
  /external/mesa3d/src/intel/vulkan/
anv_device.c 141 if (anv_gem_get_aperture(fd, &device->aperture_size) == -1) {
683 heap_size = 3 * physical_device->aperture_size / 4;
    [all...]
anv_private.h 514 uint64_t aperture_size; member in struct:anv_physical_device
    [all...]
  /external/libdrm/
xf86drm.c     [all...]

Completed in 694 milliseconds