Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Doperator.py381 def ipow(a, b): function
456 __ipow__ = ipow
/external/one-true-awk/
Dproto.h179 extern double ipow(double, int);
Drun.c1076 i = ipow(i, (int) j); in arith()
1089 double ipow(double x, int n) /* x**n. ought to be done by pow, but isn't always */ in ipow() function
1095 v = ipow(x, n/2); in ipow()
1172 xf = ipow(xf, (int) yf); in assign()
/external/python/cpython3/Doc/library/
Doperator.rst532 .. function:: ipow(a, b)
535 ``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.py477 self.assertEqual(operator.ipow (c, 5), "ipow")