Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c341 integrate(double a, double b, double (*f)(double), long nstep) in integrate() argument
343 double x, sum=0.0, dx=(b-a)/(double)nstep; in integrate()
346 return sum/(double)nstep; in integrate()
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c348 integrate(double a, double b, double (*f)(double), long nstep) in integrate() argument
350 double x, sum=0.0, dx=(b-a)/(double)nstep; in integrate()
353 return sum/(double)nstep; in integrate()
/external/lua/src/
Dlvm.c1228 lua_Number ninit; lua_Number nlimit; lua_Number nstep; in luaV_execute() local
1232 if (!tonumber(pstep, &nstep)) in luaV_execute()
1234 setfltvalue(pstep, nstep); in luaV_execute()
1237 setfltvalue(init, luai_numsub(L, ninit, nstep)); in luaV_execute()