/aosp_15_r20/external/wpa_supplicant_8/src/radius/ |
H A D | radius_client.c | 2 * RADIUS client 16 #include "radius.h" 19 /* Defaults for RADIUS retransmit values (exponential backoff) */ 22 * RADIUS_CLIENT_FIRST_WAIT - RADIUS client timeout for first retry in seconds 27 * RADIUS_CLIENT_MAX_WAIT - RADIUS client maximum retry timeout in seconds 32 * RADIUS_CLIENT_MAX_FAILOVER - RADIUS client maximum retries 40 * RADIUS_CLIENT_MAX_ENTRIES - RADIUS client maximum pending messages 48 * RADIUS_CLIENT_NUM_FAILOVER - RADIUS client failover point 50 * The number of failed retry attempts after which the RADIUS server will be 57 * struct radius_rx_handler - RADIUS client RX handler [all …]
|
H A D | 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 * tls - Whether to use RADIUS/TLS instead of RADIUS/UDP 44 * shared_secret - Shared secret for authenticating RADIUS messages 54 * ca_cert - Path to trusted CA certificate(s) for RADIUS/TLS 59 * client_cert - Path to client certificate for RADIUS/TLS 64 * private_key - Path to clienbt private key for RADIUS/TLS 69 * private_key_passwd - Password for the private key for RADIUS/TLS 143 * struct hostapd_radius_servers - RADIUS servers for RADIUS client [all …]
|
/aosp_15_r20/external/angle/util/ |
H A D | geometry_utils.cpp | 25 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result) in CreateSphereGeometry() argument 42 result->positions[vertexIdx] = direction * radius; in CreateSphereGeometry() 66 void GenerateCubeGeometry(float radius, CubeGeometry *result) in GenerateCubeGeometry() argument 69 result->positions[0] = Vector3(-radius, -radius, -radius); in GenerateCubeGeometry() 70 result->positions[1] = Vector3(-radius, -radius, radius); in GenerateCubeGeometry() 71 result->positions[2] = Vector3(radius, -radius, radius); in GenerateCubeGeometry() 72 result->positions[3] = Vector3(radius, -radius, -radius); in GenerateCubeGeometry() 73 result->positions[4] = Vector3(-radius, radius, -radius); in GenerateCubeGeometry() 74 result->positions[5] = Vector3(-radius, radius, radius); in GenerateCubeGeometry() 75 result->positions[6] = Vector3(radius, radius, radius); in GenerateCubeGeometry() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/view/ |
H A D | RoundedCorners.java | 108 * Creates the rounded corners from radius 164 * @return a Pair of radius. The first is the top rounded corner radius and second is the 165 * bottom corner radius. 183 * Gets the default rounded corner radius of a display which is determined by the 194 int radius; in getRoundedCornerRadius() local 196 radius = array.getDimensionPixelSize(index, 0); in getRoundedCornerRadius() 198 radius = res.getDimensionPixelSize(R.dimen.rounded_corner_radius); in getRoundedCornerRadius() 202 // corner radius via resource overlays, we can infer the corner radius directly from the in getRoundedCornerRadius() 204 if (radius == 0 && res.getConfiguration().isScreenRound()) { in getRoundedCornerRadius() 205 radius = res.getDisplayMetrics().widthPixels / 2; in getRoundedCornerRadius() [all …]
|
/aosp_15_r20/external/ktfmt/website/lib/ |
H A D | bootstrap-cosmo.css | 245 -webkit-border-radius: 6px; 246 -moz-border-radius: 6px; 247 border-radius: 6px; 261 -webkit-border-radius: 500px; 262 -moz-border-radius: 500px; 263 border-radius: 500px; 978 -webkit-border-radius: 3px; 979 -moz-border-radius: 3px; 980 border-radius: 3px; 1004 -webkit-border-radius: 0; [all …]
|
/aosp_15_r20/external/zxing/docs/css/ |
H A D | apache-maven-fluido-1.5.min.css | 9 …radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#ff…
|
H A D | apache-maven-fluido-1.8.min.css | 9 …radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#ff… 17 …radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-w…
|
H A D | apache-maven-fluido-1.6.min.css | 9 …radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#ff… 17 …radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-w…
|
H A D | apache-maven-fluido-1.7.min.css | 9 …radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#ff… 17 …radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-w…
|
/aosp_15_r20/external/okhttp/website/static/ |
H A D | bootstrap-combined.min.css | 9 …radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#ff… 18 …radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-w…
|
/aosp_15_r20/frameworks/base/libs/hwui/utils/ |
H A D | Blur.cpp | 29 float Blur::convertRadiusToSigma(float radius) { in convertRadiusToSigma() argument 30 return radius > 0 ? BLUR_SIGMA_SCALE * radius + 0.5f : 0.0f; in convertRadiusToSigma() 37 // if the original radius was on an integer boundary and the resulting radius 40 uint32_t Blur::convertRadiusToInt(float radius) { in convertRadiusToInt() argument 41 const float radiusCeil = ceilf(radius); in convertRadiusToInt() 42 if (MathUtils::areEqual(radiusCeil, radius)) { in convertRadiusToInt() 45 return radius; in convertRadiusToInt() 52 * Based on some experimental radius and sigma values we approximate the 53 * equation sigma = f(radius) as sigma = radius * 0.3 + 0.6. The larger the 54 * radius gets, the more our gaussian blur will resemble a box blur since with [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/plotters-backend/src/rasterizer/ |
D | circle.rs | 8 radius: u32, in draw_part_a() 11 let half_width = (radius as f64 * radius as f64 in draw_part_a() 12 - (radius as f64 - height) * (radius as f64 - height)) in draw_part_a() 18 let y0 = (radius as f64 - height).ceil(); in draw_part_a() 21 let y1 = (radius as f64 * radius as f64 - x as f64 * x as f64).sqrt(); in draw_part_a() 127 radius: (u32, u32), in draw_annulus() 130 let a0 = ((radius.0 - radius.1) as f64).min(radius.0 as f64 * (1.0 - 1.0 / (2f64).sqrt())); in draw_annulus() 131 let a1 = (radius.0 as f64 - a0 - radius.1 as f64).max(0.0); in draw_annulus() 133 check_result!(draw_part_a::<B, _>(a0, radius.0, |p, r| draw_sweep_line( in draw_annulus() 141 check_result!(draw_part_a::<B, _>(a0, radius.0, |p, r| draw_sweep_line( in draw_annulus() [all …]
|
/aosp_15_r20/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/out/ |
H A D | dataurl-realdata-doublequotes.out.b | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url("data:image/png;b…
|
H A D | dataurl-realdata-noquotes.out | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url(data:image/png;ba…
|
H A D | dataurl-realdata-singlequotes.out.b | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url('data:image/png;b…
|
H A D | dataurl-realdata-singlequotes.out | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url('data:image/png;b…
|
H A D | dataurl-realdata-noquotes.out.b | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url(data:image/png;ba…
|
H A D | dataurl-realdata-doublequotes.out | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url("data:image/png;b…
|
/aosp_15_r20/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/ |
H A D | dataurl-realdata-singlequotes.css | 9 border-radius:3px; 10 -webkit-border-radius: 3px; 11 -moz-border-radius: 3px; 17 border-bottom-right-radius:0; 18 border-bottom-left-radius:0; 20 -webkit-border-bottom-right-radius:0; 21 -webkit-border-bottom-left-radius:0; 23 -moz-border-radius-bottomright:0; 24 -moz-border-radius-bottomleft:0; 28 border-radius:0; [all …]
|
H A D | dataurl-realdata-doublequotes.css.min | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url("data:image/png;b…
|
H A D | dataurl-realdata-noquotes.css.min | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url(data:image/png;ba…
|
H A D | dataurl-realdata-doublequotes.css | 9 border-radius:3px; 10 -webkit-border-radius: 3px; 11 -moz-border-radius: 3px; 17 border-bottom-right-radius:0; 18 border-bottom-left-radius:0; 20 -webkit-border-bottom-right-radius:0; 21 -webkit-border-bottom-left-radius:0; 23 -moz-border-radius-bottomright:0; 24 -moz-border-radius-bottomleft:0; 28 border-radius:0; [all …]
|
H A D | dataurl-realdata-singlequotes.css.min | 1 …radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;background-image:url('data:image/png;b…
|
H A D | dataurl-realdata-noquotes.css | 9 border-radius:3px; 10 -webkit-border-radius: 3px; 11 -moz-border-radius: 3px; 17 border-bottom-right-radius:0; 18 border-bottom-left-radius:0; 20 -webkit-border-bottom-right-radius:0; 21 -webkit-border-bottom-left-radius:0; 23 -moz-border-radius-bottomright:0; 24 -moz-border-radius-bottomleft:0; 28 border-radius:0; [all …]
|
/aosp_15_r20/external/tcpdump/ |
H A D | print-radius.c | 23 /* \summary: Radius protocol printer */ 26 * Radius printer routines as specified on: 29 * "Remote Authentication Dial In User Service (RADIUS)" 32 * "RADIUS Accounting" 35 * "RADIUS Accounting Modifications for Tunnel Protocol Support" 38 * "RADIUS Attributes for Tunnel Protocol Support" 41 * "RADIUS Extensions" 44 * "RADIUS and IPv6" 47 * "IEEE 802.1X Remote Authentication Dial In User Service (RADIUS)" 54 * "RADIUS Attributes for Virtual LAN and Priority Support" [all …]
|