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

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/hostapd/
hostapd.radius_clients 0 # RADIUS client configuration for the RADIUS server
4 0.0.0.0/0 radius
  /external/chromium_org/v8/tools/sodium/
styles.css 33 border-radius: 10px;
34 -o-border-radius: 10px;
35 -moz-border-radius: 10px;
36 -webkit-border-radius: 10px;
42 border-radius: 10px;
43 -o-border-radius: 10px;
44 -moz-border-radius: 10px;
45 -webkit-border-radius: 10px;
50 border-radius: 10px;
51 -o-border-radius: 10px
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
ConeCollisionShape.java 24 protected float radius; field in class:ConeCollisionShape
31 public ConeCollisionShape(float radius, float height, int axis) {
32 this.radius = radius;
33 this.height = radius;
38 public ConeCollisionShape(float radius, float height) {
39 this.radius = radius;
40 this.height = radius;
46 return radius;
    [all...]
  /external/ppp/pppd/plugins/radius/
pppd-radius.8 1 .\" manual page [] for RADIUS plugin for pppd 2.4
2 .\" $Id: pppd-radius.8,v 1.5 2004/03/26 13:27:17 kad Exp $
8 .TH PPPD-RADIUS 8
10 radius.so \- RADIUS authentication plugin for
17 plugin radius.so
20 The RADIUS plugin for pppd permits pppd to perform PAP, CHAP, MS-CHAP and
21 MS-CHAPv2 authentication against a RADIUS server instead of the usual
27 The RADIUS plugin is built on a library called
30 consult those files for more information on configuring the RADIUS
    [all...]
pppd-radattr.8 10 radattr.so \- RADIUS utility plugin for
17 plugin radius.so plugin radattr.so
20 The radattr plugin for pppd causes all radius attributes returned by
21 the RADIUS server at authentication time to be stored in the file
25 is the name of the PPP interface. The RADIUS attributes are stored
32 load the radius.so plugin before loading the radattr.so plugin;
33 radattr.so depends on symbols defined in radius.so.
37 .B plugin radius.so plugin radattr.so
41 .BR pppd (8) " pppd-radius" (8)
  /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
375 struct radius_client_data *radius = eloop_ctx; local
687 struct radius_client_data *radius = eloop_ctx; local
1088 struct radius_client_data *radius = eloop_ctx; local
1250 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...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
ConeCollisionShape.java 22 protected float radius; field in class:ConeCollisionShape
29 public ConeCollisionShape(float radius, float height, int axis) {
30 this.radius = radius;
31 this.height = radius;
36 public ConeCollisionShape(float radius, float height) {
37 this.radius = radius;
38 this.height = radius;
44 return radius;
    [all...]
CapsuleCollisionShape.java 47 protected float radius,height; field in class:CapsuleCollisionShape
54 * creates a new CapsuleCollisionShape with the given radius and height
55 * @param radius the radius of the capsule
58 public CapsuleCollisionShape(float radius, float height) {
59 this.radius=radius;
67 * @param radius
71 public CapsuleCollisionShape(float radius, float height, int axis) {
72 this.radius=radius
    [all...]
SphereCollisionShape.java 48 protected float radius; field in class:SphereCollisionShape
54 * creates a SphereCollisionShape with the given radius
55 * @param radius
57 public SphereCollisionShape(float radius) {
58 this.radius = radius;
63 return radius;
69 capsule.write(radius, "radius", 0.5f);
75 radius = capsule.readFloat("radius", 0.5f)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/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/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.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...]
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf-radius 26 auth_source radius;
27 conf_source radius;
28 accounting radius;
  /external/chromium_org/third_party/skia/src/opts/
SkMorphology_opts_SSE2.h 8 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
10 void SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
12 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
14 void SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
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.cpp 27 static void SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
34 radius = SkMin32(radius, width - 1);
35 const SkPMColor* upperSrc = src + radius * srcStrideX;
51 if (x >= radius) src += srcStrideX;
52 if (x + radius < width - 1) upperSrc += srcStrideX;
57 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
60 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
63 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
66 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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
SmoothFilter.java 36 private int radius; field in class:SmoothFilter
39 public void setRadius(int radius) {
40 this.radius = radius;
44 return this.radius;
57 return super.getMargin(size, margin) + this.radius;
65 for (int y = this.radius; y < size - this.radius; y++) {
66 for (int x = this.radius; x < size - this.radius; x++) {
    [all...]
  /external/skia/src/opts/
SkMorphology_opts_SSE2.h 8 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
10 void SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
12 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
14 void SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
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.cpp 27 static void SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
34 radius = SkMin32(radius, width - 1);
35 const SkPMColor* upperSrc = src + radius * srcStrideX;
51 if (x >= radius) src += srcStrideX;
52 if (x + radius < width - 1) upperSrc += srcStrideX;
57 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
60 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
63 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
66 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride)
    [all...]
  /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
  /frameworks/base/libs/hwui/utils/
Blur.cpp 26 void Blur::generateGaussianWeights(float* weights, int32_t radius) {
32 // x is of the form [-radius .. 0 .. radius]
33 // and sigma varies with radius.
34 // Based on some experimental radius values and sigma's
35 // we approximately fit sigma = f(radius) as
36 // sigma = radius * 0.3 + 0.6
37 // The larger the radius gets, the more our gaussian blur
40 float sigma = 0.3f * (float) radius + 0.6f;
50 for (int32_t r = -radius; r <= radius; r ++)
    [all...]

Completed in 1284 milliseconds

1 2 3 4 5 6 7 8 91011>>