Home
last modified time | relevance | path

Searched refs:half_pi (Results 1 – 4 of 4) sorted by relevance

/external/crcalc/tests/src/com/hp/creals/
DCRTest.java106 CR half_pi = CR.PI.divide(two); in testCR() local
115 check_eq(half_pi.sin(), one, "sin(pi/2) failed"); in testCR()
116 check_eq(asin.execute(one),half_pi, "asin(1) failed"); in testCR() local
118 half_pi.negate(), "asin(-1) failed"); in testCR()
/external/vulkan-validation-layers/libs/glm/gtc/
Dconstants.hpp83 GLM_FUNC_DECL genType half_pi();
Dconstants.inl64 GLM_FUNC_QUALIFIER genType half_pi() function
/external/crcalc/src/com/hp/creals/
DCR.java872 static CR half_pi = PI.shiftRight(1); field in CR
902 return half_pi.subtract(this).cos(); in sin()
924 return half_pi.subtract(asin()); in acos()