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

1 2

  /external/libppp/src/
radius.c 168 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
    [all...]
radius.h 44 struct rad_handle *rad; /* Using this to talk to our lib */ member in struct:radius::__anon9626
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 77 // 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; local
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 || max < -rad)
    [all...]
  /external/clang/test/Analysis/
array-struct-region.c 22 void nested_compound_literals(int rad) {
28 vec[a][0] *= rad; // no-warning
29 vec[a][1] *= rad; // no-warning
33 void nested_compound_literals_float(float rad) {
39 vec[a][0] *= rad; // no-warning
40 vec[a][1] *= rad; // no-warning
  /external/skia/bench/
BlurBench.cpp 33 BlurBench(void* param, SkScalar rad, SkBlurMaskFilter::BlurStyle bs) : INHERITED(param) {
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/
status_bubble_views.cc 349 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[0] = 0
    [all...]
theme_install_bubble_view.cc 116 SkScalar rad[8]; local
118 rad[i] = SkIntToScalar(kBubbleCornerRadius);
130 path.addRoundRect(rect, rad, SkPath::kCW_Direction);
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 87 for (double rad = step; rad <= twoPi - step; rad += step) {
88 int x = CENTER + (int)(Math.cos(rad) * RADIUS);
89 int y = CENTER + (int)(Math.sin(rad) * RADIUS);
91 float relPos = (float)(rad / twoPi);
130 System.out.println(rad);
  /external/quake/quake/src/WinQuake/
gl_rlight.cpp 80 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;
r_surf.cpp 66 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;
  /external/skia/samplecode/
SampleOvalTest.cpp 55 const SkScalar rad = SkScalarHalf(fSize.width()); local
66 if (dist <= rad && !*ptr) {
69 } else if (dist > rad && *ptr) {
SamplePathFill.cpp 79 SkScalar rad = -SK_ScalarPI / 2; local
84 rad += drad;
85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
ClockFaceView.cpp 134 SkScalar rad = 3 + SkIntToScalar(4) * (1 - interp); local
135 lattice.setScale(rad*2, rad*2, 0, 0);
137 return new Dot2DPathEffect(rad, lattice, pts);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 153 float rad = (wf < hf) ? wf/2 : hf/2; local
154 canvas.drawCircle(cx, cy, rad, mPaint);
168 canvas.drawCircle(cx, cy, rad, mGlow);
169 rad -= 0.5f;
170 canvas.drawCircle(cx, cy, rad, mGlow);
171 rad -= 0.5f;
  /external/tcpdump/
print-radius.c 896 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->auth[auth_idx] )
    [all...]
  /external/skia/gm/
pathfill.cpp 79 SkScalar rad = -SK_ScalarPI / 2; local
84 rad += drad;
85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 81 #define degrees(rad) ((rad)*RAD_TO_DEG)
  /external/quake/quake/src/QW/client/
gl_rlight.c 99 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;
r_surf.c 66 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;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /system/core/libpixelflinger/
trap.cpp 136 void pointx_validate(void *con, const GGLcoord* v, GGLcoord rad)
149 c->procs.pointx(con, v, rad);
152 void pointx(void *con, const GGLcoord* v, GGLcoord rad)
155 GGLcoord halfSize = TRI_ROUND(rad) >> 1;
207 GGLcoord rad = ((size + 1)>>1); local
208 GGLint l = (v[0] - rad) >> TRI_FRACTION_BITS;
209 GGLint t = (v[1] - rad) >> TRI_FRACTION_BITS;
210 GGLint r = (v[0] + rad + (TRI_ONE-1)) >> TRI_FRACTION_BITS;
211 GGLint b = (v[1] + rad + (TRI_ONE-1)) >> TRI_FRACTION_BITS;
236 GGLcoord rr = rad*rad
272 GGLcoord rad = ((size + 1)>>1); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 465 float rad = mStrokePaint.getStrokeWidth();
466 canvas.saveLayer(mRect.left - rad, mRect.top - rad,
467 mRect.right + rad, mRect.bottom + rad,
506 // to show it. If we did nothing, Skia would clamp the rad
509 float rad = st.mRadius;
511 if (rad > r) {
512 rad = r;
514 canvas.drawRoundRect(mRect, rad, rad, mFillPaint)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 438 double rad = Math.toRadians(degrees); local
439 float sin = (float)Math.sin(rad);
440 float cos = (float)Math.cos(rad);
1056 double rad = Math.toRadians(degrees); local
1057 float sin = (float)Math.sin(rad);
1058 float cos = (float)Math.cos(rad);
1068 double rad = Math.toRadians(degrees); local
1098 double rad = Math.toRadians(degrees); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 139 private int rotateColor(int color, float rad) {
140 float deg = rad * 180 / 3.1415927f;
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 156 private int rotateColor(int color, float rad) {
157 float deg = rad * 180 / 3.1415927f;

Completed in 545 milliseconds

1 2