Home
last modified time | relevance | path

Searched refs:_acos (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Drandom.py46 from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin unknown
484 theta = (mu + _acos(f)) % TWOPI
486 theta = (mu - _acos(f)) % TWOPI
/external/python/cpython3/Lib/
Drandom.py50 from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin unknown
692 theta = (mu + _acos(f)) % TWOPI
694 theta = (mu - _acos(f)) % TWOPI
/external/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp5109 builtin_builder::_acos(const glsl_type *type) in _acos() function in builtin_builder