/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::__anon23795
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/ |
mat4-spec.js | 346 var rad = Math.PI * 0.5; 350 beforeEach(function() { result = mat4.rotate(out, matA, rad, axis); }); 355 0, Math.cos(rad), Math.sin(rad), 0, 356 0, -Math.sin(rad), Math.cos(rad), 0, 372 beforeEach(function() { result = mat4.rotate(matA, matA, rad, axis); }); 377 0, Math.cos(rad), Math.sin(rad), 0, 378 0, -Math.sin(rad), Math.cos(rad), 0 [all...] |
/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/skia/bench/ |
BlurRectBench.cpp | 29 BlurRectBench(SkScalar rad) { 30 fRadius = rad; 79 BlurRectDirectBench(SkScalar rad) : INHERITED(rad) { 82 if (SkScalarFraction(rad) != 0) { 83 name.printf("blurrect_direct_%.2f", SkScalarToFloat(rad)); 85 name.printf("blurrect_direct_%d", SkScalarRoundToInt(rad)); 104 BlurRectSeparableBench(SkScalar rad) : INHERITED(rad) { 131 BlurRectBoxFilterBench(SkScalar rad) : INHERITED(rad) [all...] |
MorphologyBench.cpp | 36 MorphologyBench(SkScalar rad, MorphologyType style) 38 fRadius = rad; 40 const char* name = rad > 0 ? gStyleName[style] : "none"; 41 if (SkScalarFraction(rad) != 0) { 42 fName.printf("morph_%.2f_%s", SkScalarToFloat(rad), name); 44 fName.printf("morph_%d_%s", SkScalarRound(rad), name);
|
BlurBench.cpp | 36 BlurBench(SkScalar rad, SkBlurMaskFilter::BlurStyle bs, uint32_t flags = 0) { 37 fRadius = rad; 40 const char* name = rad > 0 ? gStyleName[bs] : "none"; 43 if (SkScalarFraction(rad) != 0) { 44 fName.printf("blur_%.2f_%s_%s", SkScalarToFloat(rad), name, quality); 46 fName.printf("blur_%d_%s_%s", SkScalarRound(rad), name, quality);
|
StrokeBench.cpp | 72 SkScalar rad = 4; local 73 fRec.fRRect.setRectXY(r, rad, rad);
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/ |
quat.js | 107 * @param {Number} rad the angle in radians 110 quat.setAxisAngle = function(out, axis, rad) { 111 rad = rad * 0.5; 112 var s = Math.sin(rad); 116 out[3] = Math.cos(rad); 172 * @param {number} rad angle (in radians) to rotate 175 quat.rotateX = function (out, a, rad) { 176 rad *= 0.5; 179 bx = Math.sin(rad), bw = Math.cos(rad) [all...] |
mat2.js | 193 * @param {Number} rad the angle to rotate the matrix by 196 mat2.rotate = function (out, a, rad) { 198 s = Math.sin(rad), 199 c = Math.cos(rad);
|
mat2d.js | 181 * @param {Number} rad the angle to rotate the matrix by 184 mat2d.rotate = function (out, a, rad) { 191 st = Math.sin(rad), 192 ct = Math.cos(rad);
|
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
AKFS_Math.h | 27 #define RAD2DEG(rad) ((rad)*180.0f/AKFS_PI)
|
/external/skia/gm/ |
techtalk1.cpp | 164 SkScalar rad = paint.getStrokeWidth() / 2; local 166 r.outset(rad, rad); 168 r.inset(rad*2, rad*2); 219 SkScalar rad = paint.getStrokeWidth() / 2; local 220 r.outset(rad, rad); 222 r.inset(rad*2, rad*2) 228 SkScalar rad = paint.getStrokeWidth() \/ 2; local 239 SkScalar rad = paint.getStrokeWidth() \/ 2; local 244 SkScalar rad = paint.getStrokeWidth() \/ 2; local [all...] |
/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);
|
/external/chromium_org/third_party/skia/src/effects/ |
SkGpuBlurUtils.cpp | 78 SkScalar rad = SkIntToScalar(radius); local 83 lowerSrcRect.fRight = srcRect.left() + rad; 84 lowerDstRect.fRight = dstRect.left() + rad; 85 upperSrcRect.fLeft = srcRect.right() - rad; 86 upperDstRect.fLeft = dstRect.right() - rad; 87 middleSrcRect.inset(rad, 0); 88 middleDstRect.inset(rad, 0); 93 lowerSrcRect.fBottom = srcRect.top() + rad; 94 lowerDstRect.fBottom = dstRect.top() + rad; 95 upperSrcRect.fTop = srcRect.bottom() - rad; [all...] |
/external/skia/src/effects/ |
SkGpuBlurUtils.cpp | 78 SkScalar rad = SkIntToScalar(radius); local 83 lowerSrcRect.fRight = srcRect.left() + rad; 84 lowerDstRect.fRight = dstRect.left() + rad; 85 upperSrcRect.fLeft = srcRect.right() - rad; 86 upperDstRect.fLeft = dstRect.right() - rad; 87 middleSrcRect.inset(rad, 0); 88 middleDstRect.inset(rad, 0); 93 lowerSrcRect.fBottom = srcRect.top() + rad; 94 lowerDstRect.fBottom = dstRect.top() + rad; 95 upperSrcRect.fTop = srcRect.bottom() - rad; [all...] |
/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);
|
/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/chromium_org/chrome/browser/ui/views/ |
status_bubble_views.cc | 363 SkScalar rad[8]; local 371 rad[0] = 0; 372 rad[1] = 0; 375 rad[2] = 0; 376 rad[3] = 0; 382 rad[0] = SkIntToScalar(kBubbleCornerRadius); 383 rad[1] = SkIntToScalar(kBubbleCornerRadius); 386 rad[2] = 0; 387 rad[3] = 0; 390 rad[0] = 0 [all...] |
/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/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/arduino/hardware/arduino/cores/arduino/ |
wiring.h | 83 #define degrees(rad) ((rad)*RAD_TO_DEG)
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Geometry.js | 138 * @param {number} rad 141 WebInspector.Geometry.radToDeg = function(rad) 143 return rad * 180 / Math.PI;
|
/external/chromium_org/cc/base/ |
math_util.h | 78 static double Rad2Deg(double rad) { return rad * 180.0 / kPiDouble; } 81 static float Rad2Deg(float rad) { return rad * 180.0f / kPiFloat; }
|