Searched refs:radius (Results 226 - 250 of 295) sorted by relevance

1234567891011>>

/external/skia/samplecode/
H A DSamplePathFuzz.cpp521 SkScalar radius = makeScalar(); local
522 path.arcTo(pt[0], pt[1], radius);
H A DSampleAll.cpp162 Dot2DPathEffect(SkScalar radius, const SkMatrix& matrix) argument
163 : Sk2DPathEffect(matrix), fRadius(radius) {}
H A DSampleSlides.cpp562 static SkPathEffect* MakeDotEffect(SkScalar radius, const SkMatrix& matrix) { argument
564 path.addCircle(0, 0, radius);
/external/skia/src/c/
H A Dsk_surface.cpp565 float radius,
583 center, (SkScalar)radius,
564 sk_shader_new_radial_gradient(const sk_point_t* ccenter, float radius, const sk_color_t colors[], const float colorPos[], int colorCount, sk_shader_tilemode_t cmode, const sk_matrix_t* cmatrix) argument
/external/libyuv/files/include/libyuv/
H A Dplanar_functions.h295 int width, int height, int radius);
/external/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient_gpu.cpp28 * the start radius <= end radius. Our first case (kInside_) is when the start circle
81 SkScalar radius() const { return fRadius0; } function in class:Edge2PtConicalEffect
106 // When deciding if we are in edge case, we scaled by the end radius for cases when the
107 // start radius was close to zero, otherwise we scaled by the start radius. In addition
236 SkString p0; // start radius
237 SkString p1; // start radius squared
291 SkScalar radius0 = data.radius();
326 SkScalar radius local
[all...]
H A DSkGradientShader.cpp808 SkShader* SkGradientShader::CreateRadial(const SkPoint& center, SkScalar radius, argument
814 if (radius <= 0) {
824 return new SkRadialGradient(center, radius, desc);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dhostapd.h140 struct radius_client_data *radius; member in struct:hostapd_data
H A Dap_config.h254 struct hostapd_radius_servers *radius; member in struct:hostapd_bss_config
/external/wpa_supplicant_8/src/ap/
H A Dhostapd.h140 struct radius_client_data *radius; member in struct:hostapd_data
H A Dap_config.h254 struct hostapd_radius_servers *radius; member in struct:hostapd_bss_config
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dhostapd.h140 struct radius_client_data *radius; member in struct:hostapd_data
H A Dap_config.h254 struct hostapd_radius_servers *radius; member in struct:hostapd_bss_config
/external/opencv3/modules/java/src/
H A Dimgproc+Imgproc.java2280 // C++: void minEnclosingCircle(vector_Point2f points, Point2f& center, float& radius)
2283 //javadoc: minEnclosingCircle(points, center, radius)
2284 public static void minEnclosingCircle(MatOfPoint2f points, Point center, float[] radius) argument
2291 if(radius!=null) radius[0] = (float)radius_out[0];
2583 // C++: void circle(Mat& img, Point center, int radius, Scalar color, int thickness = 1, int lineType = LINE_8, int shift = 0)
2586 //javadoc: circle(img, center, radius, color, thickness, lineType, shift)
2587 public static void circle(Mat img, Point center, int radius, Scalar color, int thickness, int lineType, int shift) argument
2590 circle_0(img.nativeObj, center.x, center.y, radius, color.val[0], color.val[1], color.val[2], color.val[3], thickness, lineType, shift);
2595 //javadoc: circle(img, center, radius, colo
2596 circle(Mat img, Point center, int radius, Scalar color, int thickness) argument
2605 circle(Mat img, Point center, int radius, Scalar color) argument
3246 circle_0(long img_nativeObj, double center_x, double center_y, int radius, double color_val0, double color_val1, double color_val2, double color_val3, int thickness, int lineType, int shift) argument
3247 circle_1(long img_nativeObj, double center_x, double center_y, int radius, double color_val0, double color_val1, double color_val2, double color_val3, int thickness) argument
3248 circle_2(long img_nativeObj, double center_x, double center_y, int radius, double color_val0, double color_val1, double color_val2, double color_val3) argument
[all...]
/external/skia/bench/
H A DPathBench.cpp599 SkScalar radius = rand.nextUScalar1() * 3; variable
602 r.fRight = r.fLeft + 2 * radius;
603 r.fBottom = r.fTop + 2 * radius;
627 // In its "zero radius" incarnation it creates degenerate round rects.
724 bool fZeroRad; // should 0 radius rounds rects be tested?
/external/deqp/modules/gles2/functional/
H A Des2fPolygonOffsetTests.cpp86 * Kernel radius defines maximum allowed distance. If radius is 0, only
93 int compareImages (tcu::TestLog& log, glu::RenderContext& renderCtx, const tcu::ConstPixelBufferAccess& test, const tcu::ConstPixelBufferAccess& ref, const tcu::PixelBufferAccess& diffMask, int radius) argument
121 // If not, search within kernel radius
123 const int kYmin = deMax32(y - radius, 0);
124 const int kYmax = deMin32(y + radius, height-1);
125 const int kXmin = deMax32(x - radius, 0);
126 const int kXmax = deMin32(x + radius, width-1);
/external/deqp/modules/gles3/functional/
H A Des3fPolygonOffsetTests.cpp89 * Kernel radius defines maximum allowed distance. If radius is 0, only
96 int compareImages (tcu::TestLog& log, glu::RenderContext& renderCtx, const tcu::ConstPixelBufferAccess& test, const tcu::ConstPixelBufferAccess& ref, const tcu::PixelBufferAccess& diffMask, int radius) argument
124 // If not, search within kernel radius
126 const int kYmin = deMax32(y - radius, 0);
127 const int kYmax = deMin32(y + radius, height-1);
128 const int kXmin = deMax32(x - radius, 0);
129 const int kXmax = deMin32(x + radius, width-1);
/external/opencv3/modules/python/test/
H A Dtransformations.py1409 def place(self, center, radius):
1414 radius : float
1418 self._radius = float(radius)
1474 def arcball_map_to_sphere(point, center, radius):
1476 v = numpy.array(((point[0] - center[0]) / radius,
1477 (center[1] - point[1]) / radius,
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-docs.css690 border-radius:5px;
691 -moz-border-radius:5px;
692 -webkit-border-radius:5px;
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dplanar_functions.h378 // radius is number of pixels around the center. e.g. 1 = 3x3. 2=5x5.
379 // Blur is optimized for radius of 5 (11x11) or less.
384 int width, int height, int radius);
/external/dng_sdk/source/
H A Ddng_negative.h643 // Chroma blur radius (or 0/0 for auto). Set to 0/1 to disable
1431 void SetChromaBlurRadius (const dng_urational &radius) argument
1433 fChromaBlurRadius = radius;
/external/icu/icu4c/
H A Dicu4c.css491 border-radius: 12px;
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
H A Dimgproc_c.h559 CvPoint2D32f* center, float* radius );
1016 /** @brief Draws a circle with specified center and radius.
1021 CVAPI(void) cvCircle( CvArr* img, CvPoint center, int radius,
/external/wpa_supplicant_8/wpa_supplicant/
H A Dnmake.mak135 $(OBJDIR)\radius.obj \
/external/opencv3/modules/imgproc/test/
H A Dtest_imgwarp.cpp1521 const int radius = 3; local
1522 int rmin = MAX(dy - radius, 0), rmax = MIN(dy + radius, dsize.height);
1523 int cmin = MAX(dx - radius, 0), cmax = MIN(dx + radius, dsize.width);

Completed in 1400 milliseconds

1234567891011>>