Searched refs:radius (Results 151 - 175 of 404) sorted by relevance

1234567891011>>

/external/pdfium/fxjs/xfa/
H A Dcjx_corner.cpp57 void CJX_Corner::radius(CFXJSE_Value* pValue, function in class:CJX_Corner
/external/skia/bench/
H A DBlurRectBench.cpp46 SkScalar radius() const { function in class:BlurRectBench
93 if (!SkBlurMask::BlurRect(SkBlurMask::ConvertRadiusToSigma(this->radius()),
147 if (!SkBlurMask::BoxBlur(&mask, fSrcMask, SkBlurMask::ConvertRadiusToSigma(this->radius()),
175 if (!SkBlurMask::BlurGroundTruth(SkBlurMask::ConvertRadiusToSigma(this->radius()),
/external/skia/include/effects/
H A DSkBlurMaskFilter.h22 * If radius > 0, return the corresponding sigma, else return 0. Use this to convert from the
23 * (legacy) idea of specify the blur "radius" to the standard notion of specifying its sigma.
25 static SkScalar ConvertRadiusToSigma(SkScalar radius);
29 /** The blur layer's radius is not affected by transforms */
/external/skia/src/effects/
H A DSkBlurMask.h49 // If radius > 0, return the corresponding sigma, else return 0
50 static SkScalar SK_API ConvertRadiusToSigma(SkScalar radius);
51 // If sigma > 0.5, return the corresponding radius, else return 0
H A DSkDashPathEffect.cpp45 SkScalar radius = SkScalarHalf(rec.getWidth()); local
46 if (0 == radius) {
47 radius = SK_Scalar1; // hairlines
50 radius *= rec.getMiter();
52 rect->outset(radius, radius);
/external/skia/src/gpu/effects/
H A DGrGaussianConvolutionFragmentProcessor.h39 int radius() const { return fRadius; } function in class:GrGaussianConvolutionFragmentProcessor
80 // some of the logic from SkGpuBlurUtils into this class related to radius/sigma calculations.
/external/skqp/bench/
H A DBlurRectBench.cpp46 SkScalar radius() const { function in class:BlurRectBench
93 if (!SkBlurMask::BlurRect(SkBlurMask::ConvertRadiusToSigma(this->radius()),
147 if (!SkBlurMask::BoxBlur(&mask, fSrcMask, SkBlurMask::ConvertRadiusToSigma(this->radius()),
175 if (!SkBlurMask::BlurGroundTruth(SkBlurMask::ConvertRadiusToSigma(this->radius()),
/external/skqp/include/effects/
H A DSkBlurMaskFilter.h22 * If radius > 0, return the corresponding sigma, else return 0. Use this to convert from the
23 * (legacy) idea of specify the blur "radius" to the standard notion of specifying its sigma.
25 static SkScalar ConvertRadiusToSigma(SkScalar radius);
29 /** The blur layer's radius is not affected by transforms */
/external/skqp/src/effects/
H A DSkBlurMask.h49 // If radius > 0, return the corresponding sigma, else return 0
50 static SkScalar SK_API ConvertRadiusToSigma(SkScalar radius);
51 // If sigma > 0.5, return the corresponding radius, else return 0
H A DSkDashPathEffect.cpp45 SkScalar radius = SkScalarHalf(rec.getWidth()); local
46 if (0 == radius) {
47 radius = SK_Scalar1; // hairlines
50 radius *= rec.getMiter();
52 rect->outset(radius, radius);
/external/skqp/src/gpu/effects/
H A DGrGaussianConvolutionFragmentProcessor.h39 int radius() const { return fRadius; } function in class:GrGaussianConvolutionFragmentProcessor
80 // some of the logic from SkGpuBlurUtils into this class related to radius/sigma calculations.
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
H A DUberColorPickerDialog.java523 float radius = mHSV[1] * PALETTE_RADIUS;
524 mCoord[0] = (int)(Math.cos(angle) * radius);
525 mCoord[1] = (int)(Math.sin(angle) * radius);
755 float radius = (float)java.lang.Math.sqrt(mCoord[0] * mCoord[0] + mCoord[1] * mCoord[1]);
756 if (radius > PALETTE_RADIUS)
757 radius = PALETTE_RADIUS;
766 mCoord[0] = round(Math.cos(angle) * radius);
767 mCoord[1] = round(Math.sin(angle) * radius);
773 mHSV[1] = radius / PALETTE_RADIUS;
885 float radius
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_graph_dumper.h63 // The number of nodes dumped is controlled by the radius parameter, which
66 string DumpNeighborhoodAround(const HloInstruction& node, int radius,
/external/ImageMagick/www/api/
H A Dmorphology.php136 <dd> Gaussian:{radius},{sigma} Generate a two-dimensional gaussian kernel, as used by -gaussian. The sigma for the curve is required. The resulting kernel is normalized, </dd>
140 <dd> NOTE: that the 'radius' is optional, but if provided can limit (clip) the final size of the resulting kernel to a square 2*radius+1 in size. The radius should be at least 2 times that of the sigma value, or sever clipping and aliasing may result. If not given or set to 0 the radius will be determined so as to produce the best minimal error result, which is usally much larger than is normally needed. </dd>
142 <dd> LoG:{radius},{sigma} "Laplacian of a Gaussian" or "Mexician Hat" Kernel. The supposed ideal edge detection, zero-summing kernel. </dd>
146 <dd> DoG:{radius},{sigma1},{sigma2} "Difference of Gaussians" Kernel. As "Gaussian" but with a gaussian produced by 'sigma2' subtracted from the gaussian produced by 'sigma1'. Typically sigma2 &gt; sigma1. The result is a zero-summing kernel. </dd>
148 <dd> Blur:{radius},{sigma}[,{angle}] Generates a 1 dimensional or linear gaussian blur, at the angle given (current restricted to orthogonal angles). If a 'radius' is given the kernel is clipped to a width of 2*radius
[all...]
/external/libjpeg-turbo/doc/html/search/
H A Dsearch.css108 -moz-border-radius: 4px;
109 -webkit-border-top-left-radius: 4px;
110 -webkit-border-top-right-radius: 4px;
111 -webkit-border-bottom-left-radius: 4px;
112 -webkit-border-bottom-right-radius: 4px;
/external/freetype/src/base/
H A Dftstroke.c537 FT_Fixed radius,
548 FT_Vector_From_Polar( &a, radius, angle_start );
573 FT_Vector_From_Polar( &b, radius, next );
578 length = FT_MulDiv( radius, FT_Sin( theta ) * 4,
789 FT_Fixed radius; member in struct:FT_StrokerRec_
834 FT_Fixed radius,
842 stroker->radius = radius;
897 FT_Fixed radius = stroker->radius; local
535 ft_stroke_border_arcto( FT_StrokeBorder border, FT_Vector* center, FT_Fixed radius, FT_Angle angle_start, FT_Angle angle_diff ) argument
833 FT_Stroker_Set( FT_Stroker stroker, FT_Fixed radius, FT_Stroker_LineCap line_cap, FT_Stroker_LineJoin line_join, FT_Fixed miter_limit ) argument
940 FT_Fixed radius = stroker->radius; local
967 FT_Fixed radius = stroker->radius; local
1074 FT_Fixed sigma = 0, radius = stroker->radius; local
[all...]
/external/ImageMagick/MagickCore/
H A Deffect.c110 % image with a Gaussian operator of the given radius and standard deviation
111 % (sigma). For reasonable results, radius should be larger than sigma. Use a
112 % radius of 0 and AdaptiveBlurImage() selects a suitable radius for you.
116 % Image *AdaptiveBlurImage(const Image *image,const double radius,
123 % o radius: the radius of the Gaussian, in pixels, not counting the center
131 MagickExport Image *AdaptiveBlurImage(const Image *image,const double radius,
189 edge_image=EdgeImage(image,radius,exception);
196 gaussian_image=BlurImage(edge_image,radius,sigm
129 AdaptiveBlurImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
450 AdaptiveSharpenImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
770 BlurImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
1185 EdgeImage(const Image *image,const double radius, ExceptionInfo *exception) argument
1265 EmbossImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
1374 GaussianBlurImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
1440 KuwaharaImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
1676 LocalContrastImage(const Image *image,const double radius, const double strength,ExceptionInfo *exception) argument
1998 MotionBlurImage(const Image *image,const double radius, const double sigma,const double angle,ExceptionInfo *exception) argument
2255 radius, local
2887 radius; local
3050 SelectiveBlurImage(const Image *image,const double radius, const double sigma,const double threshold,ExceptionInfo *exception) argument
3626 SharpenImage(const Image *image,const double radius, const double sigma,ExceptionInfo *exception) argument
3730 SpreadImage(const Image *image, const PixelInterpolateMethod method,const double radius, ExceptionInfo *exception) argument
3889 UnsharpMaskImage(const Image *image,const double radius, const double sigma,const double gain,const double threshold, ExceptionInfo *exception) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.c13 #include "radius/radius_client.h"
173 bss->radius = os_zalloc(sizeof(*bss->radius));
174 if (bss->radius == NULL) {
498 if (conf->radius) {
499 hostapd_config_free_radius(conf->radius->auth_servers,
500 conf->radius->num_auth_servers);
501 hostapd_config_free_radius(conf->radius->acct_servers,
502 conf->radius->num_acct_servers);
521 os_free(conf->radius);
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dap_config.c13 #include "radius/radius_client.h"
173 bss->radius = os_zalloc(sizeof(*bss->radius));
174 if (bss->radius == NULL) {
498 if (conf->radius) {
499 hostapd_config_free_radius(conf->radius->auth_servers,
500 conf->radius->num_auth_servers);
501 hostapd_config_free_radius(conf->radius->acct_servers,
502 conf->radius->num_acct_servers);
521 os_free(conf->radius);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_config.c13 #include "radius/radius_client.h"
173 bss->radius = os_zalloc(sizeof(*bss->radius));
174 if (bss->radius == NULL) {
498 if (conf->radius) {
499 hostapd_config_free_radius(conf->radius->auth_servers,
500 conf->radius->num_auth_servers);
501 hostapd_config_free_radius(conf->radius->acct_servers,
502 conf->radius->num_acct_servers);
521 os_free(conf->radius);
[all...]
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DNeuQuant.java76 /* defs for decreasing radius factor */
78 * for 256 cols, radius
236 int radius, rad, alpha, step, delta, samplepixels;
249 radius = initradius;
251 rad = radius >> radiusbiasshift;
257 // fprintf(stderr,"beginning 1D learning: initial radius=%d\n", rad);
294 radius -= radius / radiusdec;
295 rad = radius >> radiusbiasshift;
/external/google-styleguide/include/
H A Dstyleguide.css177 border-radius: 3px;
178 -webkit-border-radius: 3px;
179 -moz-border-radius: 3px;
/external/libxcam/plugins/smart/dvs/libdvs/
H A Dstabilizer.cpp345 VideoStabilizer::configMotionFilter(int radius, float stdev) argument
350 motionStabilizer.dynamicCast<GaussianMotionFilter>()->setParams(radius, stdev);
354 motionFilter.dynamicCast<GaussianMotionFilter>()->setParams(radius, stdev);
356 stabilizer_->setRadius(radius);
360 VideoStabilizer::configDeblurrer(int radius, double sensitivity) argument
367 deblurrer->setRadius(radius);
/external/libxcam/xcore/
H A Dxcam_utils.cpp264 get_gauss_table (uint32_t radius, float sigma, std::vector<float> &table, bool normalize) argument
267 uint32_t scale = radius * 2 + 1;
272 table[radius] = 1.0f;
274 for (i = 0; i < radius; i++) {
275 dis = ((float)i - radius) * ((float)i - radius);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowCanvas.java167 public void drawCircle(float cx, float cy, float radius, Paint paint) { argument
168 circlePaintEvents.add(new CirclePaintHistoryEvent(cx, cy, radius, paint));
381 public final float radius; field in class:ShadowCanvas.CirclePaintHistoryEvent
384 private CirclePaintHistoryEvent(float centerX, float centerY, float radius, Paint paint) { argument
387 this.radius = radius;

Completed in 5312 milliseconds

1234567891011>>