Searched refs:rad (Results 1 - 25 of 30) sorted by relevance

12

/external/libppp/src/
H A Dradius.c168 if (rad_request_authenticator(r->cx.rad, R, sizeof R) != AUTH_LEN) {
178 S = rad_server_secret(r->cx.rad); /* We need the RADIUS secret */
273 rad_close(r->cx.rad);
282 rad_close(r->cx.rad);
293 rad_close(r->cx.rad);
309 rad_close(r->cx.rad);
314 "radius(%s): %s\n", stype, rad_strerror(r->cx.rad));
317 rad_close(r->cx.rad);
322 got, rad_strerror(r->cx.rad));
325 rad_close(r->cx.rad);
717 struct radius *rad = descriptor2radius(d); local
829 radius_put_physical_details(struct radius *rad, struct physical *p) argument
[all...]
H A Dradius.h44 struct rad_handle *rad; /* Using this to talk to our lib */ member in struct:radius::__anon8081
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DIntersection.java77 // float rad = fa * boxhalfsize.y + fb * boxhalfsize.z;
78 // if(min > rad || max < -rad)
104 // float min,max,p0,p1,p2,rad,fex,fey,fez;
121 float p0, p1, p2, rad;
133 rad = fez * extent.y + fey * extent.z;
134 if (min > rad || max < -rad) {
144 rad = fez * extent.x + fex * extent.z;
145 if (min > rad || ma
[all...]
/external/clang/test/Analysis/
H A Darray-struct-region.c22 void nested_compound_literals(int rad) { argument
28 vec[a][0] *= rad; // no-warning
29 vec[a][1] *= rad; // no-warning
33 void nested_compound_literals_float(float rad) { argument
39 vec[a][0] *= rad; // no-warning
40 vec[a][1] *= rad; // no-warning
/external/skia/bench/
H A DBlurBench.cpp33 BlurBench(void* param, SkScalar rad, SkBlurMaskFilter::BlurStyle bs) : INHERITED(param) { argument
34 fRadius = rad;
36 const char* name = rad > 0 ? gStyleName[bs] : "none";
37 if (SkScalarFraction(rad) != 0) {
38 fName.printf("blur_%.2f_%s", SkScalarToFloat(rad), name);
40 fName.printf("blur_%d_%s", SkScalarRound(rad), name);
/external/chromium/chrome/browser/ui/views/
H A Dstatus_bubble_views.cc349 SkScalar rad[8]; local
357 rad[0] = 0;
358 rad[1] = 0;
361 rad[2] = 0;
362 rad[3] = 0;
368 rad[0] = SkIntToScalar(kBubbleCornerRadius);
369 rad[1] = SkIntToScalar(kBubbleCornerRadius);
372 rad[2] = 0;
373 rad[3] = 0;
376 rad[
[all...]
H A Dtheme_install_bubble_view.cc116 SkScalar rad[8]; local
118 rad[i] = SkIntToScalar(kBubbleCornerRadius);
130 path.addRoundRect(rect, rad, SkPath::kCW_Direction);
H A Dfullscreen_exit_bubble.cc95 SkScalar rad[8] = { 0, 0, 0, 0, padding, padding, padding, padding }; local
97 path.addRoundRect(rect, rad, SkPath::kCW_Direction);
/external/quake/quake/src/WinQuake/
H A Dgl_rlight.cpp80 float rad; local
82 rad = light->radius * 0.35;
85 if (Length (v) < rad)
105 *pPos++ = light->origin[i] - vpn[i]*rad;
114 *pPos++ = light->origin[j] + vright[j]*cos(a)*rad
115 + vup[j]*sin(a)*rad;
127 v[i] = light->origin[i] - vpn[i]*rad;
134 v[j] = light->origin[j] + vright[j]*cos(a)*rad
135 + vup[j]*sin(a)*rad;
H A Dr_surf.cpp66 float dist, rad, minlight; local
83 rad = cl_dlights[lnum].radius;
86 rad -= fabs(dist);
88 if (rad < minlight)
90 minlight = rad - minlight;
122 temp = (rad - dist)*256;
135 blocklights[t*smax + s] += (rad - dist)*256;
H A Dgl_rsurf.cpp72 float dist, rad, minlight; local
88 rad = cl_dlights[lnum].radius;
91 rad -= fabs(dist);
93 if (rad < minlight)
95 minlight = rad - minlight;
124 blocklights[t*smax + s] += (int)((rad - dist)*256);
/external/skia/samplecode/
H A DSampleOvalTest.cpp55 const SkScalar rad = SkScalarHalf(fSize.width()); local
66 if (dist <= rad && !*ptr) {
69 } else if (dist > rad && *ptr) {
H A DSamplePathFill.cpp79 SkScalar rad = -SK_ScalarPI / 2; local
84 rad += drad;
85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
H A DClockFaceView.cpp134 SkScalar rad = 3 + SkIntToScalar(4) * (1 - interp); local
135 lattice.setScale(rad*2, rad*2, 0, 0);
137 return new Dot2DPathEffect(rad, lattice, pts);
H A DSampleArc.cpp140 const SkScalar rad[] = { d, d, d, d, d, d, d, d }; local
142 path.addRoundRect(r, rad);
/external/tcpdump/
H A Dprint-radius.c896 register const struct radius_hdr *rad; local
900 rad = (struct radius_hdr *)dat;
901 len = EXTRACT_16BITS(&rad->len);
914 tok2str(radius_command_values,"Unknown Command",rad->code),
915 rad->code,
916 rad->id,
923 tok2str(radius_command_values,"Unknown Command",rad->code),
924 rad->code,
925 rad->id);
928 printf("%02x", rad
[all...]
/external/skia/gm/
H A Dpathfill.cpp79 SkScalar rad = -SK_ScalarPI / 2; local
84 rad += drad;
85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h81 #define degrees(rad) ((rad)*RAD_TO_DEG)
/external/quake/quake/src/QW/client/
H A Dgl_rlight.c99 float rad; local
104 rad = light->radius * 0.35;
107 if (Length (v) < rad)
122 v[i] = light->origin[i] - vpn[i]*rad;
130 + vup[j]*(*bub_sin)) * rad;
H A Dr_surf.c66 float dist, rad, minlight; local
83 rad = cl_dlights[lnum].radius;
86 rad -= fabs(dist);
88 if (rad < minlight)
90 minlight = rad - minlight;
119 blocklights[t*smax + s] += (rad - dist)*256;
H A Dgl_rsurf.c72 float dist, rad, minlight; local
88 rad = cl_dlights[lnum].radius;
91 rad -= fabs(dist);
93 if (rad < minlight)
95 minlight = rad - minlight;
124 blocklights[t*smax + s] += (rad - dist)*256;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jar ... final org.osgi.util.measurement.Unit rad private static final org.osgi.util.measurement ...
/external/skia/src/core/
H A DSkPath.cpp709 void SkPath::addRoundRect(const SkRect& rect, const SkScalar rad[], argument
719 add_corner_arc(this, rect, rad[0], rad[1], 180, dir, true);
720 add_corner_arc(this, rect, rad[2], rad[3], 270, dir, false);
721 add_corner_arc(this, rect, rad[4], rad[5], 0, dir, false);
722 add_corner_arc(this, rect, rad[6], rad[7], 90, dir, false);
724 add_corner_arc(this, rect, rad[
[all...]
H A DSkMath.cpp427 double rad = i * 3.141592653589793 / (2*kTableSize); local
428 double val = sin(rad);
/external/skia/src/gpu/
H A DGrContext.cpp651 const GrScalar rad = GrScalarHalf(width); local
654 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
655 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
656 verts[2].set(rect.fRight - rad, rect.fTop + rad);
657 verts[3].set(rect.fRight + rad, rect.fTop - rad);
658 verts[4].set(rect.fRight - rad, rec
[all...]

Completed in 426 milliseconds

12