theta             442 lib/lua/lfmathlib.c     double theta = arg(L, 2);
theta             444 lib/lua/lfmathlib.c     sincosCordic(theta, &_sin, &_cos);
theta              92 lib/lua/limathlib.c     fixed r, theta;
theta              94 lib/lua/limathlib.c         INT2FIXED(luaL_checknumber(L, 2)), &r, &theta);
theta              96 lib/lua/limathlib.c     lua_pushnumber(L, FIXED2INTR(theta));
theta             141 lib/lua/limathlib.c     fixed r, theta;
theta             143 lib/lua/limathlib.c         INT2FIXED(luaL_checknumber(L, 2)), &r, &theta);
theta             145 lib/lua/limathlib.c     lua_pushnumber(L, FIXED2INTR(theta));
theta             164 modules/cordic_math.c static void recCordic(tangle t, fixed r, fixed theta, fixed *px, fixed *py) {
theta             166 modules/cordic_math.c     sincosCordic(t, theta, &_sin, &_cos);
theta             192 modules/cordic_math.c static void polCordic(tangle t, fixed px, fixed py, fixed *r, fixed *theta) {
theta             195 modules/cordic_math.c     *theta = phi;
theta             213 modules/cordic_math.c LUALIB_API void recd(fixed r, fixed theta, fixed *px, fixed *py) {
theta             214 modules/cordic_math.c     recCordic(DEG, r, theta, px, py);
theta             229 modules/cordic_math.c LUALIB_API void pold(fixed px, fixed py, fixed *r, fixed *theta) {
theta             230 modules/cordic_math.c     polCordic(DEG, px, py, r, theta);
theta             246 modules/cordic_math.c LUALIB_API void recr(fixed r, fixed theta, fixed *px, fixed *py) {
theta             247 modules/cordic_math.c     recCordic(RAD, r, theta, px, py);
theta             262 modules/cordic_math.c LUALIB_API void polr(fixed px, fixed py, fixed *r, fixed *theta) {
theta             263 modules/cordic_math.c     polCordic(RAD, px, py, r, theta);
theta              78 modules/cordic_math.h LUALIB_API void recd(fixed r, fixed theta, fixed *px, fixed *py);
theta              82 modules/cordic_math.h LUALIB_API void pold(fixed px, fixed py, fixed *r, fixed *theta);
theta              87 modules/cordic_math.h LUALIB_API void recr(fixed r, fixed theta, fixed *px, fixed *py);
theta              91 modules/cordic_math.h LUALIB_API void polr(fixed px, fixed py, fixed *r, fixed *theta);