Home
last modified time | relevance | path

Searched refs:ipow (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/
Doperator.py385 def ipow(a, b): function
460 __ipow__ = ipow
/external/one-true-awk/
Dproto.h170 extern double ipow(double, int);
Drun.c1038 i = ipow(i, (int) j); in arith()
1049 double ipow(double x, int n) /* x**n. ought to be done by pow, but isn't always */ in ipow() function
1055 v = ipow(x, n/2); in ipow()
1132 xf = ipow(xf, (int) yf); in assign()
/external/python/cpython3/Doc/library/
Doperator.rst526 .. function:: ipow(a, b)
529 ``a = ipow(a, b)`` is equivalent to ``a **= b``.
/external/python/cpython2/Doc/library/
Doperator.rst391 .. function:: ipow(a, b)
394 ``a = ipow(a, b)`` is equivalent to ``a **= b``.
/external/python/cpython2/Modules/
Doperator.c433 spam2(ipow,__ipow__, "a = ipow(a, b) -- Same as a **= b.")
/external/python/cpython2/Lib/test/
Dtest_operator.py499 self.assertEqual(operator.ipow (c, 5), "ipow")
/external/python/cpython3/Lib/test/
Dtest_operator.py457 self.assertEqual(operator.ipow (c, 5), "ipow")
/external/python/cpython3/Modules/
D_operator.c386 spam2(ipow, "a = ipow(a, b) -- Same as a **= b.")