HomeSort by relevance Sort by last modified time
    Searched refs:PI (Results 226 - 250 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 168 mSelectionRadians = selectionDegrees * Math.PI / 180;
254 int degrees = (int) (radians * 180 / Math.PI);
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 44 * The double value closest to pi, the ratio of a circle's circumference to
47 public static final double PI = Math.PI;
107 * argument within the range {@code [0..pi]}.
124 * within the range {@code [-pi/2..pi/2]}.
141 * argument within the range {@code [-pi/2..pi/2]}.
147 * <li>{@code atan(+infinity) = +pi/2}</li>
148 * <li>{@code atan(-infinity) = -pi/2}</li
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/
background.js 219 return (1-Math.sin(Math.PI/2+x*Math.PI))/2;
240 canvasContext.rotate(2*Math.PI*ease(rotation));
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
popup.js 76 var hourAngle = Math.PI * hh / 6;
79 var minAngle = Math.PI * mm / 30;
82 var secAngle = Math.PI * ss / 30;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 146 a *= Math.PI / 180;
160 a *= Math.PI / 180;
174 a *= Math.PI / 180;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 146 a *= Math.PI / 180;
160 a *= Math.PI / 180;
174 a *= Math.PI / 180;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
3d-cube.js 146 a *= Math.PI / 180;
160 a *= Math.PI / 180;
174 a *= Math.PI / 180;
  /external/libpng/contrib/gregbook/
rpng2-win.c 128 #ifndef PI
129 # define PI 3.141592653589793238
131 #define PI_2 (PI*0.5)
132 #define INV_PI_360 (360.0 / PI)
    [all...]
  /external/llvm/include/llvm/IR/
PassManager.h 658 typename AnalysisPassMapT::iterator PI = AnalysisPasses.find(PassID);
659 assert(PI != AnalysisPasses.end() &&
661 return *PI->second;
666 typename AnalysisPassMapT::const_iterator PI = AnalysisPasses.find(PassID);
667 assert(PI != AnalysisPasses.end() &&
669 return *PI->second;
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 753 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
754 if (PI == PE) // No predecessor
756 Pred1 = *PI++;
757 if (PI == PE) // Only one predecessor
759 Pred2 = *PI++;
760 if (PI != PE) // More than two predecessors
    [all...]
  /frameworks/rs/api/
rs_core_math.spec 127 Return the inverse sine divided by PI.
172 Return the inverse tangent divided by PI.
184 Return the inverse tangent of y / x, divided by PI.
251 Return the cosine of the value * PI.
819 Return the sin(v * PI).
852 Return tan(v * PI)
1565 Return the inverse sine divided by PI.
1618 Return the inverse tangent divided by PI.
1632 Return the inverse tangent of y / x, divided by PI.
1678 Return the cosine of the value * PI
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
PieRenderer.java 73 private static final float PIE_SWEEP = (float)(Math.PI * 2 / 3);
284 layoutItems(mItems, (float) (Math.PI / 2), inner, outer, gap);
343 * @param angle from 0..PI to Android degrees (clockwise starting at 3 o'clock)
347 return (float) (360 - 180 * angle / Math.PI);
554 res.x = (float) Math.PI / 2;
561 res.x = (float) (2 * Math.PI + res.x);
681 double a = 2 * Math.PI * (angle % 360) / 360;
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 714 PI = SchedModel.getWriteProcResBegin(SC),
715 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
716 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
GlowPadView.java     [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 737 pred_iterator PI = pred_begin(DestBB);
738 BasicBlock *P = *PI;
744 if (++PI == pred_end(DestBB))
747 P = *PI;
753 if (++PI != pred_end(DestBB))
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 382 float f = 1.0f / (float) Math.tan(fovy * (Math.PI / 360.0));
589 a *= (float) (Math.PI / 180.0f);
648 x *= (float) (Math.PI / 180.0f);
649 y *= (float) (Math.PI / 180.0f);
650 z *= (float) (Math.PI / 180.0f);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 447 float direction = mRandom.nextFloat() * (float) Math.PI * 2;
590 private static final float CORNER_ANGLE = (float) Math.PI * 2 / 3;
591 private static final float TO_DEGREES = (float) (180.0 / Math.PI);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 161 this.canvasContext_.rotate(2 * Math.PI * this.getSector(this.rotation_));
176 return (1 - Math.sin(Math.PI / 2 + sector * Math.PI)) / 2;
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
dct16x16_test.cc 43 const double PI = 3.1415926535898;
51 x = cos(PI * j * (l + 0.5) / 16.0) *
52 cos(PI * i * (k + 0.5) / 16.0) *
  /external/clang/lib/Analysis/
ReachableCode.cpp 609 CFGBlock::const_pred_iterator PI = B->pred_begin();
610 if (PI != B->pred_end()) {
611 if (const CFGBlock *PredBlock = PI->getPossiblyUnreachableBlock()) {
  /external/libvpx/libvpx/test/
dct16x16_test.cc 43 const double PI = 3.1415926535898;
51 x = cos(PI * j * (l + 0.5) / 16.0) *
52 cos(PI * i * (k + 0.5) / 16.0) *
  /frameworks/base/core/java/android/util/
PathParser.java 567 sweep -= 2 * Math.PI;
569 sweep += 2 * Math.PI;
610 int numSegments = Math.abs((int) Math.ceil(sweep * 4 / Math.PI));
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct16x16_test.cc 43 const double PI = 3.1415926535898;
51 x = cos(PI * j * (l + 0.5) / 16.0) *
52 cos(PI * i * (k + 0.5) / 16.0) *
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 433 MachineBasicBlock::pred_iterator PI = TopMBB->pred_begin();
434 assert(PI != TopMBB->pred_end() &&
436 MachineBasicBlock *Backedge = *PI++;
437 if (PI == TopMBB->pred_end()) // dead loop?
439 MachineBasicBlock *Incoming = *PI++;
440 if (PI != TopMBB->pred_end()) // multiple backedges?
    [all...]

Completed in 1575 milliseconds

1 2 3 4 5 6 7 8 91011>>