OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ipow
(Results
1 - 4
of
4
) sorted by null
/ndk/sources/host-tools/nawk-20071023/
proto.h
175
extern double
ipow
(double, int);
run.c
1037
i =
ipow
(i, (int) j);
1048
double
ipow
(double x, int n) /* x**n. ought to be done by pow, but isn't always */
function
1054
v =
ipow
(x, n/2);
1131
xf =
ipow
(xf, (int) yf);
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_operator.py
475
def __ipow__ (self, other): return "
ipow
"
490
self.assertEqual(operator.
ipow
(c, 5), "
ipow
")
505
self.assertEqual(operator.__ipow__ (c, 5), "
ipow
")
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_operator.py
475
def __ipow__ (self, other): return "
ipow
"
490
self.assertEqual(operator.
ipow
(c, 5), "
ipow
")
505
self.assertEqual(operator.__ipow__ (c, 5), "
ipow
")
Completed in 778 milliseconds