HomeSort by relevance Sort by last modified time
    Searched refs:radius (Results 1 - 25 of 722) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
CornerPathEffect.java 24 * the specified radius.
25 * @param radius Amount to round sharp angles between line segments.
27 public CornerPathEffect(float radius) {
28 native_instance = nativeCreate(radius);
31 private static native long nativeCreate(float radius);
BlurMaskFilter.java 20 * This takes a mask, and blurs its edge by the specified radius. Whether or
57 * @param radius The radius to extend the blur from the original mask. Must be > 0.
61 public BlurMaskFilter(float radius, Blur style) {
62 native_instance = nativeConstructor(radius, style.native_int);
65 private static native long nativeConstructor(float radius, int style);
  /external/chromium_org/third_party/WebKit/public/platform/
WebCircularGeofencingRegion.h 16 double radius; member in struct:blink::WebCircularGeofencingRegion
21 , radius(0)
  /external/chromium_org/third_party/skia/src/gpu/effects/
Gr1DKernelEffect.h 16 * has a pixel radius. The kernel is specified in the src texture's space
17 * and the kernel center is pinned to a texel's center. The radius specifies
20 * two times the radius.
33 int radius)
36 , fRadius(radius) {}
40 static int WidthFromRadius(int radius) { return 2 * radius + 1; }
42 int radius() const { return fRadius; } function in class:Gr1DKernelEffect
  /external/skia/src/gpu/effects/
Gr1DKernelEffect.h 16 * has a pixel radius. The kernel is specified in the src texture's space
17 * and the kernel center is pinned to a texel's center. The radius specifies
20 * two times the radius.
33 int radius)
36 , fRadius(radius) {}
40 static int WidthFromRadius(int radius) { return 2 * radius + 1; }
42 int radius() const { return fRadius; } function in class:Gr1DKernelEffect
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
geometry_utils.cpp 12 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result)
30 result->positions[vertexIdx] = direction * radius;
52 void GenerateCubeGeometry(float radius, CubeGeometry *result)
55 result->positions[ 0] = Vector3(-radius, -radius, -radius);
56 result->positions[ 1] = Vector3(-radius, -radius, radius);
57 result->positions[ 2] = Vector3( radius, -radius, radius)
    [all...]
  /frameworks/base/libs/hwui/utils/
Blur.cpp 31 float Blur::convertRadiusToSigma(float radius) {
32 return radius > 0 ? BLUR_SIGMA_SCALE * radius + 0.5f : 0.0f;
39 // if the original radius was on an integer boundary and the resulting radius
42 uint32_t Blur::convertRadiusToInt(float radius) {
43 const float radiusCeil = ceilf(radius);
44 if (MathUtils::areEqual(radiusCeil, radius)) {
47 return radius;
54 * Based on some experimental radius and sigma values we approximate th
    [all...]
Blur.h 28 // If radius > 0, return the corresponding sigma, else return 0
29 ANDROID_API static float convertRadiusToSigma(float radius);
30 // If sigma > 0.5, return the corresponding radius, else return 0
32 // If the original radius was on an integer boundary then after the sigma to
33 // radius conversion a small rounding error may be introduced. This function
35 static uint32_t convertRadiusToInt(float radius);
37 static void generateGaussianWeights(float* weights, int32_t radius);
38 static void horizontal(float* weights, int32_t radius, const uint8_t* source,
40 static void vertical(float* weights, int32_t radius, const uint8_t* source,
  /external/chromium_org/third_party/skia/src/opts/
SkMorphology_opts_neon.h 8 void SkDilateX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
10 void SkDilateY_neon(const SkPMColor* src, SkPMColor* dst, int radius,
12 void SkErodeX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
14 void SkErodeY_neon(const SkPMColor* src, SkPMColor* dst, int radius,
SkMorphology_opts_SSE2.h 13 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
15 void SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
17 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
19 void SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
SkMorphology_opts_SSE2.cpp 25 static void SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
32 radius = SkMin32(radius, width - 1);
33 const SkPMColor* upperSrc = src + radius * srcStrideX;
49 if (x >= radius) {
52 if (x + radius < width - 1) {
59 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
62 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
65 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
68 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
SkMorphology_opts_neon.cpp 28 static void SkMorph_neon(const SkPMColor* src, SkPMColor* dst, int radius,
35 radius = SkMin32(radius, width - 1);
36 const SkPMColor* upperSrc = src + radius * srcStrideX;
52 if (x >= radius) src += srcStrideX;
53 if (x + radius < width - 1) upperSrc += srcStrideX;
58 void SkDilateX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
61 SkMorph_neon<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
64 void SkErodeX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
67 SkMorph_neon<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
  /external/skia/src/opts/
SkMorphology_opts_neon.h 8 void SkDilateX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
10 void SkDilateY_neon(const SkPMColor* src, SkPMColor* dst, int radius,
12 void SkErodeX_neon(const SkPMColor* src, SkPMColor* dst, int radius,
14 void SkErodeY_neon(const SkPMColor* src, SkPMColor* dst, int radius,
SkMorphology_opts_SSE2.h 13 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
15 void SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
17 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
19 void SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
SkMorphology_opts_SSE2.cpp 25 static void SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
32 radius = SkMin32(radius, width - 1);
33 const SkPMColor* upperSrc = src + radius * srcStrideX;
49 if (x >= radius) {
52 if (x + radius < width - 1) {
59 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
62 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
65 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
68 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
threshold.rs 22 static int radius;
34 radius = rad;
40 // x is of the form [-radius .. 0 .. radius]
41 // and sigma varies with radius.
42 // Based on some experimental radius values and sigma's
43 // we approximately fit sigma = f(radius) as
44 // sigma = radius * 0.4 + 0.6
45 // The larger the radius gets, the more our gaussian blur
48 float sigma = 0.4f * (float)radius + 0.6f
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
threshold.fs 22 static int radius;
34 radius = rad;
40 // x is of the form [-radius .. 0 .. radius]
41 // and sigma varies with radius.
42 // Based on some experimental radius values and sigma's
43 // we approximately fit sigma = f(radius) as
44 // sigma = radius * 0.4 + 0.6
45 // The larger the radius gets, the more our gaussian blur
48 float sigma = 0.4f * (float)radius + 0.6f
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
threshold.rs 22 static int radius;
34 radius = rad;
40 // x is of the form [-radius .. 0 .. radius]
41 // and sigma varies with radius.
42 // Based on some experimental radius values and sigma's
43 // we approximately fit sigma = f(radius) as
44 // sigma = radius * 0.4 + 0.6
45 // The larger the radius gets, the more our gaussian blur
48 float sigma = 0.4f * (float)radius + 0.6f
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 2 * RADIUS client
12 #include "radius.h"
16 /* Defaults for RADIUS retransmit values (exponential backoff) */
19 * RADIUS_CLIENT_FIRST_WAIT - RADIUS client timeout for first retry in seconds
24 * RADIUS_CLIENT_MAX_WAIT - RADIUS client maximum retry timeout in seconds
29 * RADIUS_CLIENT_MAX_RETRIES - RADIUS client maximum retries
37 * RADIUS_CLIENT_MAX_ENTRIES - RADIUS client maximum pending messages
45 * RADIUS_CLIENT_NUM_FAILOVER - RADIUS client failover point
47 * The number of failed retry attempts after which the RADIUS server will be
54 * struct radius_rx_handler - RADIUS client RX handle
385 struct radius_client_data *radius = eloop_ctx; local
710 struct radius_client_data *radius = eloop_ctx; local
1117 struct radius_client_data *radius = eloop_ctx; local
1325 struct radius_client_data *radius; local
    [all...]
radius_client.h 2 * RADIUS client
17 * struct hostapd_radius_server - RADIUS server information for RADIUS client
19 * This structure contains information about a RADIUS server. The values are
39 * shared_secret - Shared secret for authenticating RADIUS messages
118 * struct hostapd_radius_servers - RADIUS servers for RADIUS client
122 * auth_servers - RADIUS Authentication servers in priority order
137 * acct_servers - RADIUS Accounting servers in priority order
155 * the primary RADIUS server. RADIUS client code will automatically tr
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
PaintDrawable.java 40 * Specify radius for the corners of the rectangle. If this is > 0, then the
42 * @param radius the radius for the corners of the rectangle
44 public void setCornerRadius(float radius) {
46 if (radius > 0) {
49 radii[i] = radius;
78 int radius = a.getDimensionPixelSize( local
80 setCornerRadius(radius);
85 com.android.internal.R.styleable.DrawableCorners_topLeftRadius, radius);
87 com.android.internal.R.styleable.DrawableCorners_topRightRadius, radius);
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkCornerPathEffect.h 20 /** radius must be > 0 to have an effect. It specifies the distance from each corner
23 static SkCornerPathEffect* Create(SkScalar radius) {
24 return SkNEW_ARGS(SkCornerPathEffect, (radius));
34 explicit SkCornerPathEffect(SkScalar radius);
  /external/skia/include/effects/
SkCornerPathEffect.h 20 /** radius must be > 0 to have an effect. It specifies the distance from each corner
23 static SkCornerPathEffect* Create(SkScalar radius) {
24 return SkNEW_ARGS(SkCornerPathEffect, (radius));
34 explicit SkCornerPathEffect(SkScalar radius);
  /external/wpa_supplicant_8/hostapd/
wired.conf 20 ##### RADIUS configuration ####################################################
27 # Optional NAS-Identifier string for RADIUS messages. When used, this should be
28 # a unique to the NAS within the scope of the RADIUS server. For example, a
32 # RADIUS authentication server
35 auth_server_shared_secret=radius
37 # RADIUS accounting server
40 acct_server_shared_secret=radius
  /external/chromium_org/third_party/molokocacao/
NSBezierPath+MCAdditions.h 20 - (void)drawBlurWithColor:(NSColor*)color radius:(CGFloat)radius;

Completed in 578 milliseconds

1 2 3 4 5 6 7 8 91011>>